* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: #0a0a0a;
	color: #ffffff;
	overflow-x: hidden;
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.content-wrapper,
.mobile-ad {
	flex-shrink: 0;
}

footer {
	margin-top: auto;
}

body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 46, 0.7) 50%, rgba(22, 33, 62, 0.7) 100%),
		url('/src/images/backgrounds/desktop-1080p.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	z-index: -1;
}

/* 2K screens (1440p and above) */
@media (min-width: 2560px) {
	body::before {
		background-image: 
			linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 46, 0.7) 50%, rgba(22, 33, 62, 0.7) 100%),
			url('/src/images/backgrounds/desktop-4K.jpg');
	}
}

/* 2K screens (1440p) */
@media (min-width: 1920px) and (max-width: 2559px) {
	body::before {
		background-image: 
			linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 46, 0.7) 50%, rgba(22, 33, 62, 0.7) 100%),
			url('/src/images/backgrounds/desktop-2K.jpg');
	}
}

/* Mobile screens */
@media (max-width: 768px) {
	body::before {
		background-image: 
			linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 46, 0.7) 50%, rgba(22, 33, 62, 0.7) 100%),
			url('/src/images/backgrounds/mobile.png');
	}
}

/* Base container and grid styles */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 350px));
    gap: 30px;
    justify-content: center;
    width: 100%;
    margin: 0 auto 60px;
}

/* Header */
header {
	background: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(10px);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	border-bottom: 2px solid #ff6b35;
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 25px 0;
	min-height: 40px;
}

nav.container {
    justify-content: flex-end;
    position: relative;
    padding: 0 20px;
}

.brand {
    position: absolute;
    left: 20%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    height: 30px;
    width: auto;
}

.nav-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6b35;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.logo {
	font-size: 2rem;
	font-weight: bold;
	color: #ff6b35;
	text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 30px;
	justify-content: center;
	flex: 1;
}

.nav-links li {
	position: relative;
}

.nav-links a {
	color: #ffffff;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
}

.nav-links a:hover {
	color: #ff6b35;
	text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.nav-links a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -5px;
	left: 0;
	background: linear-gradient(90deg, #ff6b35, #f7931e);
	transition: width 0.3s ease;
}

.nav-links a:hover::after {
	width: 100%;
}

/* Dropdown Menu */
.dropdown-menu {
	display: none;
	position: absolute;
	top: 120%;
	left: 0;
	list-style: none;
	background: #222;
	padding: 0;
	margin: 0;
	min-width: 150px;
	border-radius: 4px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.3);
	transition: all 0.4s ease;
}

.dropdown-menu li a {
	padding: 10px;
	color: #fff;
	display: block;
}

.dropdown-menu li a:hover {
	background: #444;
}

.dropdown:hover .dropdown-menu {
	display: block;
}

.hamburger {
	display: none;
}

/* Ad Banners */
.content-wrapper {
    width: 100%;
    max-width: 90vw;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.main-content {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
}

.services-grid,
.contact-cards-grid,
.tournaments-acgl-style .services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    width: 100%;
    margin: 0 auto 60px;
}

/* Responsive breakpoint */
@media (max-width: 768px) {
    .services-grid,
    .contact-cards-grid,
    .tournaments-acgl-style .services-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
        margin: 0 auto;
        width: calc(100% - 40px); /* Account for padding */
    }

    .service-card,
    .contact-card,
    .game-card {
        width: 100%;
        margin: 0;
    }
}

.ad-banner {
	width: 160px;
	height: 600px;
	position: sticky;
	top: 110px; /* Stick below the navbar */
	align-self: flex-start;
	flex-shrink: 0;
}

.ad-content {
	width: 100%;
	height: 100%;
	background-color: purple;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	border-radius: 8px;
	gap: 10px;
	position: relative;
}

.ad-size-label {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 0.7rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: normal;
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
}

.mobile-ad {
	display: none;
}

/* Hero Section */
.hero {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	background: radial-gradient(circle at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
}

.hero.expanded {
	height: auto;
	min-height: 100vh;
	padding: 120px 0 40px 0;
	overflow: visible;
}

.main-content .hero {
	width: 100%;
	margin: 0;
}

.hero-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content p {
	font-size: 1.5rem;
	margin-bottom: 30px;
	color: #cccccc;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* CTA Buttons */
.cta-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 60px;
}

.cta-button {
	display: inline-block;
	padding: 15px 30px;
	background: linear-gradient(45deg, #ff6b35, #f7931e);
	color: white;
	text-decoration: none;
	border-radius: 50px;
	font-weight: bold;
	text-transform: uppercase;
	transition: all 0.3s ease;
	box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.cta-button.secondary {
	background: transparent;
	border: 2px solid #ff6b35;
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

/* Collaborations Section */
.collaborations-section {
	width: 100%;
	padding: 60px 0;
	margin-top: 40px;
	box-sizing: border-box;
}

.collaborations-title {
	text-align: center;
	font-size: 3rem;
	margin-bottom: 20px;
	color: #ff6b35;
	text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.collaborations-subtitle {
	text-align: center;
	font-size: 1.2rem;
	margin-bottom: 50px;
	color: #cccccc;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.collaborations-grid-container {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.collaborations-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	justify-content: center;
	align-items: stretch;
}

.collaboration-card.static-card {
	width: 100%;
	max-width: 320px;
	min-height: 320px;
	margin: 0 auto;
	position: relative;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	padding: 30px;
	border: 1px solid rgba(255, 107, 53, 0.2);
	backdrop-filter: blur(10px);
	text-align: center;
	display: flex;
	flex-direction: column;
	transition: all 0.3s ease;
	animation: cardFadeIn 0.6s ease-out forwards;
}

@keyframes cardFadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.collaboration-card.static-card:hover {
	transform: translateY(-5px);
	border-color: #ff6b35;
	box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.card-size-label {
	position: absolute;
	top: 5px;
	left: 5px;
	font-size: 0.65rem;
	background: rgba(0, 0, 0, 0.7);
	color: #ff6b35;
	padding: 3px 6px;
	border-radius: 4px;
	font-weight: bold;
	z-index: 10;
}

.collaboration-card .collaboration-logo {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	border-radius: 12px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	position: relative;
	border: 2px solid rgba(255, 107, 53, 0.3);
	flex-shrink: 0;
}

.image-size-label {
	position: absolute;
	bottom: 2px;
	right: 2px;
	font-size: 0.6rem;
	background: rgba(0, 0, 0, 0.7);
	color: #ff6b35;
	padding: 2px 4px;
	border-radius: 3px;
	font-weight: bold;
	z-index: 10;
}

.collaboration-card .collaboration-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.collaboration-card .logo-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, #ff6b35, #f7931e);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: bold;
	color: white;
	border-radius: 12px;
}

.collaboration-card .collaboration-name {
	font-size: 1.3rem;
	font-weight: bold;
	color: #ffffff;
	margin-bottom: 8px;
}

.collaboration-card .collaboration-type {
	display: inline-block;
	background: rgba(255, 107, 53, 0.2);
	color: #ff6b35;
	padding: 4px 12px;
	border-radius: 12px;
	font-size: 0.85rem;
	font-weight: 500;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.collaboration-card .collaboration-description {
	color: #cccccc;
	line-height: 1.5;
	margin-bottom: 20px;
	font-size: 0.95rem;
	flex: 1;
	white-space: pre-line;
	word-wrap: break-word;
}

.collaboration-card .collaboration-link {
	color: #ff6b35;
	text-decoration: none;
	font-weight: bold;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	border-bottom: 2px solid transparent;
	margin-top: auto;
	display: inline-block;
	padding: 5px 0;
}

.collaboration-card .collaboration-link:hover {
	color: #f7931e;
	border-bottom-color: #f7931e;
	text-shadow: 0 0 8px rgba(255, 107, 53, 0.4);
}

/* Sections */
section {
	padding: 80px 0;
	position: relative;
}

.section-title {
	text-align: center;
	font-size: 3rem;
	margin-bottom: 20px;
	color: #ff6b35;
	text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.section-subtitle {
	text-align: center;
	font-size: 1.2rem;
	margin-bottom: 50px;
	color: #cccccc;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* About Text */
.about-text {
	max-width: 900px;
	margin: 0 auto;
	line-height: 1.8;
	font-size: 1.05rem;
}

.about-text p {
	text-align: center;
	font-size: 1.2rem;
	margin-bottom: 20px;
	color: #cccccc;
	margin-left: auto;
	margin-right: auto;
}

/* Team Section */
.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.team-member {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	padding: 30px;
	border: 1px solid rgba(255, 107, 53, 0.2);
	backdrop-filter: blur(10px);
	text-align: center;
	transition: all 0.3s ease;
}

.team-member:hover {
	transform: translateY(-5px);
	border-color: #ff6b35;
	box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.team-portrait {
	width: 150px;
	height: 150px;
	margin: 0 auto 20px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid #ff6b35;
	background: rgba(255, 107, 53, 0.1);
}

.team-portrait img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.team-name {
	font-size: 1.4rem;
	font-weight: bold;
	color: #ffffff;
	margin-bottom: 8px;
}

.team-title {
	font-size: 1rem;
	color: #ff6b35;
	font-weight: 500;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.team-bio {
	color: #cccccc;
	line-height: 1.6;
	font-size: 0.95rem;
}

/* Card Components */
.card-base {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	padding: 30px;
	border: 1px solid rgba(255, 107, 53, 0.2);
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.card-base:hover {
	transform: translateY(-5px);
	border-color: #ff6b35;
	box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.game-card {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 300px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	padding: 30px;
	border: 1px solid rgba(255, 107, 53, 0.2);
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	text-align: center;
	overflow: hidden;
	background-size: cover;
	background-position: center;
}

.tournaments-acgl-style .services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 20px;
}

.tournaments-acgl-style .game-card {
    width: 100%;
    min-width: 300px;
    aspect-ratio: 16/9;
}

@media (max-width: 1024px) {
    .tournaments-acgl-style .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Services Page Grid */
.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 20px;
}

/* Contact Page Grid */
.contact-cards-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 20px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .services-grid,
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Card sizing */
.service-card,
.contact-card {
    width: 100%;
    min-width: 300px;
}

.service-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	padding: 30px;
	border: 1px solid rgba(255, 107, 53, 0.2);
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #ff6b35, #f7931e);
	transform: translateX(-100%);
	transition: transform 0.3s ease;
}

.service-card:hover::before {
	transform: translateX(0);
}

.service-card:hover {
	transform: translateY(-10px);
	border-color: #ff6b35;
	box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.service-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: linear-gradient(45deg, #ff6b35, #f7931e);
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	font-weight: bold;
	color: white;
}

.service-title {
	font-size: 1.5rem;
	font-weight: bold;
	margin-bottom: 15px;
	color: #ff6b35;
}

.service-desc {
	color: #cccccc;
	line-height: 1.6;
	margin-bottom: 20px;
}

.service-features {
	list-style: none;
	text-align: left;
}

.service-features li {
	color: #cccccc;
	margin-bottom: 8px;
	padding-left: 20px;
	position: relative;
}

.service-features li::before {
	content: '▶';
	color: #ff6b35;
	position: absolute;
	left: 0;
	font-size: 0.8rem;
}

/* Stats Section */
.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.stat-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	border: 1px solid rgba(255, 107, 53, 0.2);
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	text-align: center;
	padding: 40px;
}

.stat-number {
	font-size: 3rem;
	font-weight: bold;
	color: #ff6b35;
	margin-bottom: 10px;
}

.stat-label {
	color: #cccccc;
	text-transform: uppercase;
	font-size: 0.9rem;
	letter-spacing: 1px;
}

/* Tournaments Section */
.tournaments-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.tournament-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	padding: 30px;
	border: 1px solid rgba(255, 107, 53, 0.2);
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	border-left: 5px solid #ff6b35;
}

.tournament-card:hover {
	transform: translateX(10px);
	box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.tournament-status {
	display: inline-block;
	padding: 5px 15px;
	background: linear-gradient(45deg, #ff6b35, #f7931e);
	color: white;
	border-radius: 20px;
	font-size: 0.8rem;
	text-transform: uppercase;
	margin-bottom: 15px;
}

.tournament-title {
	font-size: 1.5rem;
	font-weight: bold;
	margin-bottom: 10px;
	color: #ffffff;
}

.tournament-details {
	color: #cccccc;
	line-height: 1.6;
	margin-bottom: 20px;
}

.tournament-prize {
	color: #ff6b35;
	font-weight: bold;
	font-size: 1.1rem;
}

/* Tournament Styles */
.tournaments-acgl-style {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.tournaments-hero-section {
	text-align: center;
	margin-bottom: 60px;
}

.tournaments-main-title {
	font-size: 4rem;
	font-weight: bold;
	background: linear-gradient(45deg, #ff6b35, #f7931e, #ffcd3c);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 20px;
}

.tournaments-tagline {
	font-size: 1.2rem;
	color: #cccccc;
	max-width: 600px;
	margin: 0 auto;
}

.tournament-stats {
	margin-bottom: 80px;
}

.section-heading {
	font-size: 2.5rem;
	font-weight: bold;
	text-align: center;
	margin-bottom: 40px;
	color: #ffffff;
}

.section-heading span {
	color: #ff6b35;
}

/* Featured Tournament */
.featured-tournament-section {
	margin-bottom: 80px;
}

.featured-tournament-card {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 40px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	backdrop-filter: blur(10px);
	padding: 40px;
	border: 1px solid rgba(255, 107, 53, 0.3);
	transition: all 0.3s ease;
}

.game-poster {
	height: 200px;
	border-radius: 15px;
	display: flex;
	align-items: end;
	padding: 20px;
	position: relative;
	overflow: hidden;
}

.valorant-poster {
	background: linear-gradient(135deg, #ff4655, #ff6b35);
}

.cs2-poster {
	background: linear-gradient(135deg, #1e3c72, #2a5298);
}

.lol-poster {
	background: linear-gradient(135deg, #c89b3c, #0f2027);
}

.multi-poster {
	background: linear-gradient(135deg, #667eea, #764ba2);
}

.game-title {
	color: white;
	font-weight: bold;
	font-size: 1.2rem;
	z-index: 2;
}

.tournament-status-live {
	display: inline-block;
	background: linear-gradient(45deg, #ff6b35, #f7931e);
	color: white;
	padding: 8px 15px;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: bold;
	margin-bottom: 15px;
}

.featured-tournament-card h3 {
	font-size: 2rem;
	color: #ffffff;
	margin-bottom: 20px;
}

.tournament-meta {
	margin: 20px 0;
}

.meta-item {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
	padding-bottom: 8px;
	border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.meta-label {
	color: #ff6b35;
	font-weight: bold;
	font-size: 0.9rem;
}

.meta-item span:last-child {
	color: #cccccc;
}

.button-container {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.tournament-prize-main {
	font-size: 1.8rem;
	color: #ff6b35;
	font-weight: bold;
	margin: 20px 0;
}

.tournament-cta-btn, .tournament-card-btn {
	display: inline-block;
	background: linear-gradient(45deg, #ff6b35, #f7931e);
	color: white;
	padding: 15px 30px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: bold;
	text-transform: uppercase;
	transition: all 0.3s ease;
}

.tournament-card-btn {
	display: block;
	text-align: center;
	padding: 12px 20px;
}

.tournament-cta-btn:hover, .tournament-card-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

/* Tournament Grid */
.tournaments-acgl-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
}

.tournament-acgl-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	padding: 0;
	border: 1px solid rgba(255, 107, 53, 0.2);
	backdrop-filter: blur(10px);
	overflow: hidden;
	transition: all 0.3s ease;
}

.tournament-acgl-card:hover {
	transform: translateY(-5px);
	border-color: #ff6b35;
	box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.tournament-acgl-card .game-poster {
	height: 120px;
	margin: 0;
}

.tournament-card-content {
	padding: 25px;
}

.tournament-status.ongoing {
	background: #28a745;
	color: white;
}

.tournament-status.upcoming {
	background: #ffc107;
	color: #000;
}

.tournament-status.planning {
	background: #6c757d;
	color: white;
}

.tournament-card-content h4 {
	font-size: 1.4rem;
	color: #ffffff;
	margin-bottom: 15px;
}

.tournament-info-list {
	margin-bottom: 20px;
}

.info-item {
	color: #cccccc;
	margin-bottom: 8px;
	font-size: 0.95rem;
}

/* Partners Section */
.partners-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
	align-items: center;
}

.partner-slot {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	padding: 30px;
	backdrop-filter: blur(10px);
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px dashed rgba(255, 107, 53, 0.3);
	color: #666;
	font-style: italic;
	transition: all 0.3s ease;
}

.partner-slot:hover {
	border-color: #ff6b35;
	color: #ff6b35;
}

/* Contact Section */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
}

.contact-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.contact-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	padding: 40px 30px;
	border: 1px solid rgba(255, 107, 53, 0.2);
	backdrop-filter: blur(10px);
	text-align: center;
	transition: all 0.3s ease;
}

.contact-card:hover {
	transform: translateY(-5px);
	border-color: #ff6b35;
	box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.contact-card-icon {
	font-size: 3rem;
	margin-bottom: 20px;
}

.contact-card h3 {
	color: #ff6b35;
	margin-bottom: 25px;
	font-size: 1.5rem;
}

.contact-detail {
	margin-bottom: 15px;
	color: #cccccc;
	line-height: 1.6;
}

.contact-detail strong {
	display: block;
	color: #ffffff;
	margin-bottom: 5px;
	font-size: 0.9rem;
}

.contact-detail a {
	color: #ff6b35;
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-detail a:hover {
	color: #f7931e;
	text-shadow: 0 0 8px rgba(255, 107, 53, 0.4);
}

.social-links-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.social-link {
	display: block;
	padding: 12px 20px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 107, 53, 0.3);
	border-radius: 8px;
	color: #ff6b35;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
}

.social-link:hover {
	background: rgba(255, 107, 53, 0.1);
	border-color: #ff6b35;
	transform: translateX(5px);
}

.contact-info h3 {
	color: #ff6b35;
	margin-bottom: 20px;
	font-size: 1.5rem;
}

.contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	color: #cccccc;
}

.contact-item::before {
	content: '▶';
	color: #ff6b35;
	margin-right: 10px;
}

.contact-form {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	padding: 30px;
	border: 1px solid rgba(255, 107, 53, 0.2);
	backdrop-filter: blur(10px);
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 5px;
	color: #ff6b35;
	font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 107, 53, 0.3);
	border-radius: 8px;
	color: #ffffff;
	font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #ff6b35;
	box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.submit-btn {
	width: 100%;
	padding: 15px;
	background: linear-gradient(45deg, #ff6b35, #f7931e);
	color: white;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	text-decoration: none;
	display: inline-block;
}

.submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

/* Footer */
footer {
	background: rgba(0, 0, 0, 0.9);
	text-align: center;
	padding: 40px 0;
	border-top: 1px solid rgba(255, 107, 53, 0.3);
}

.footer-links {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.footer-links a {
	color: #cccccc;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: #ff6b35;
}

/* All Tournaments CTA Section */
.all-tournaments-cta {
	padding: 80px 0;
	background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.05) 100%);
	border-radius: 20px;
	margin: 40px 0;
	position: relative;
	overflow: hidden;
}

.all-tournaments-cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #ff6b35, #f7931e, #ffcd3c);
}

.cta-content {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
}

.cta-icon {
	margin-bottom: 30px;
}

.icon-trophy {
	font-size: 4rem;
	background: linear-gradient(45deg, #ff6b35, #f7931e);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
	display: inline-block;
}

.cta-content h3 {
	font-size: 2.5rem;
	font-weight: bold;
	color: #ffffff;
	margin-bottom: 20px;
	background: linear-gradient(45deg, #ffffff, #cccccc);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.cta-content p {
	font-size: 1.2rem;
	color: #cccccc;
	line-height: 1.6;
	margin-bottom: 40px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.cta-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 30px;
	margin: 40px 0 50px 0;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.cta-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	border: 1px solid rgba(255, 107, 53, 0.2);
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.cta-stat:hover {
	transform: translateY(-3px);
	border-color: #ff6b35;
	box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

.cta-stat .stat-number {
	font-size: 1.8rem;
	font-weight: bold;
	color: #ff6b35;
	margin-bottom: 5px;
}

.cta-stat .stat-text {
	font-size: 0.9rem;
	color: #cccccc;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.tournament-cta-btn.primary-cta {
	font-size: 1.1rem;
	padding: 18px 40px;
	position: relative;
	overflow: hidden;
}

.tournament-cta-btn.primary-cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s ease;
}

.tournament-cta-btn.primary-cta:hover::before {
	left: 100%;
}

.tournament-cta-btn.secondary {
	background: transparent;
	border: 2px solid #ff6b35;
	margin-right: 15px;
}

.tournament-cta-btn.secondary:hover {
	background: linear-gradient(45deg, #ff6b35, #f7931e);
	border-color: #ff6b35;
}

.tournament-actions {
	display: flex;
	gap: 15px;
	justify-content: flex-start;
	flex-wrap: wrap;
	margin-top: 25px;
}

/* All Tournaments Page Styles */
.all-tournaments-style {
	max-width: 1400px;
	margin: 0 auto;
	padding: 40px 20px;
}

.all-tournaments-header {
	margin-bottom: 50px;
}

.back-navigation {
	margin-bottom: 30px;
}

.back-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 107, 53, 0.3);
	color: #ff6b35;
	padding: 12px 20px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.back-btn:hover {
	background: rgba(255, 107, 53, 0.1);
	border-color: #ff6b35;
	transform: translateX(-3px);
	box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
}

.back-arrow {
	font-size: 1.2rem;
	font-weight: bold;
	transition: transform 0.3s ease;
}

.back-btn:hover .back-arrow {
	transform: translateX(-3px);
}

.page-title {
	font-size: 3.5rem;
	font-weight: bold;
	background: linear-gradient(45deg, #ff6b35, #f7931e, #ffcd3c);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 15px;
	text-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

.page-subtitle {
	font-size: 1.2rem;
	color: #cccccc;
	max-width: 600px;
}

.tournament-status-section {
	margin-bottom: 60px;
}

.section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 2px solid rgba(255, 107, 53, 0.2);
}

.status-title {
	font-size: 2rem;
	font-weight: bold;
	color: #ffffff;
}

.tournament-count {
	background: linear-gradient(45deg, #ff6b35, #f7931e);
	color: white;
	padding: 6px 15px;
	border-radius: 15px;
	font-size: 0.9rem;
	font-weight: bold;
}

/* Tournament Table */
.tournament-table-container {
	background: rgba(255, 255, 255, 0.03);
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(255, 107, 53, 0.2);
	backdrop-filter: blur(10px);
}

.tournament-table {
	width: 100%;
	border-collapse: collapse;
}

.tournament-table thead {
	background: rgba(255, 107, 53, 0.1);
}

.tournament-table th {
	padding: 20px 15px;
	text-align: left;
	font-weight: bold;
	color: #ff6b35;
	text-transform: uppercase;
	font-size: 0.9rem;
	letter-spacing: 0.5px;
	border-bottom: 2px solid rgba(255, 107, 53, 0.3);
}

.tournament-table td {
	padding: 20px 15px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	vertical-align: middle;
}

.tournament-row {
	transition: all 0.3s ease;
}

.tournament-row:hover {
	background: rgba(255, 107, 53, 0.05);
	transform: scale(1.01);
}

.tournament-row:last-child td {
	border-bottom: none;
}

.col-game {
	width: 120px;
}

.col-tournament {
	width: 300px;
}

.col-dates {
	width: 200px;
}

.col-prize {
	width: 130px;
}

.col-teams {
	width: 100px;
}

.col-actions {
	width: 150px;
}

.game-badge {
	display: inline-block;
	padding: 8px 12px;
	border-radius: 6px;
	font-size: 0.85rem;
	font-weight: bold;
	color: white;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.game-badge.valorant-poster {
	background: linear-gradient(135deg, #ff4655, #ff6b35);
}

.game-badge.cs2-poster {
	background: linear-gradient(135deg, #1e3c72, #2a5298);
}

.game-badge.lol-poster {
	background: linear-gradient(135deg, #c89b3c, #0f2027);
}

.game-badge.multi-poster {
	background: linear-gradient(135deg, #667eea, #764ba2);
}

.tournament-info .tournament-name {
	font-weight: bold;
	color: #ffffff;
	margin-bottom: 4px;
	font-size: 1rem;
}

.tournament-info .tournament-format {
	color: #cccccc;
	font-size: 0.85rem;
}

.date-info .tournament-dates {
	color: #ffffff;
	font-weight: 500;
	margin-bottom: 4px;
}

.date-info .registration-deadline {
	color: #ff6b35;
	font-size: 0.85rem;
}

.prize-amount {
	font-size: 1.1rem;
	font-weight: bold;
	color: #f7931e;
}

.team-count {
	display: flex;
	align-items: center;
	gap: 4px;
}

.team-count .registered {
	color: #ff6b35;
	font-weight: bold;
}

.team-count .separator {
	color: #666;
}

.team-count .max {
	color: #cccccc;
}

.action-buttons {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.action-btn {
	padding: 8px 15px;
	border-radius: 5px;
	font-size: 0.85rem;
	font-weight: bold;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	display: inline-block;
	text-align: center;
}

.action-btn.details {
	background: rgba(255, 255, 255, 0.1);
	color: #cccccc;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.action-btn.details:hover {
	background: rgba(255, 255, 255, 0.2);
	color: #ffffff;
}

.action-btn.register {
	background: linear-gradient(45deg, #ff6b35, #f7931e);
	color: white;
}

.action-btn.register:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.action-btn.live {
	background: #28a745;
	color: white;
	cursor: default;
}

.action-btn.upcoming {
	background: #6c757d;
	color: white;
	cursor: default;
}

.tournament-footer-cta {
	margin-top: 80px;
	padding: 60px 0;
}

.cta-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	padding: 50px;
	text-align: center;
	border: 1px solid rgba(255, 107, 53, 0.2);
	backdrop-filter: blur(10px);
}

.cta-card h3 {
	font-size: 2rem;
	color: #ffffff;
	margin-bottom: 15px;
}

.cta-card p {
	color: #cccccc;
	font-size: 1.1rem;
	margin-bottom: 30px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.footer-actions {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.cta-btn {
	padding: 15px 30px;
	border-radius: 8px;
	font-weight: bold;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 1rem;
}

.cta-btn.primary {
	background: linear-gradient(45deg, #ff6b35, #f7931e);
	color: white;
}

.cta-btn.primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.cta-btn.secondary {
	background: transparent;
	border: 2px solid #ff6b35;
	color: #ff6b35;
}

.cta-btn.secondary:hover {
	background: rgba(255, 107, 53, 0.1);
	transform: translateY(-3px);
}

/* Tournament Details Page */
.tournament-details-style {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
}

.breadcrumb-nav {
	margin-bottom: 30px;
	padding: 15px 0;
	border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.breadcrumb-nav a {
	color: #ff6b35;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
	color: #f7931e;
	text-shadow: 0 0 8px rgba(255, 107, 53, 0.3);
}

.breadcrumb-nav span {
	color: #666;
	margin: 0 10px;
}

.breadcrumb-nav span:last-child {
	color: #cccccc;
}

.tournament-header {
	margin-bottom: 50px;
}

.tournament-hero-card {
	display: grid;
	grid-template-columns: 350px 1fr;
	gap: 40px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 20px;
	padding: 40px;
	border: 1px solid rgba(255, 107, 53, 0.2);
	backdrop-filter: blur(10px);
	position: relative;
	overflow: hidden;
}

.tournament-hero-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #ff6b35, #f7931e, #ffcd3c);
}

.tournament-hero-poster {
	height: 250px;
	border-radius: 15px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 25px;
	position: relative;
	overflow: hidden;
}

.tournament-hero-poster.valorant-poster {
	background: linear-gradient(135deg, #ff4655, #ff6b35);
}

.tournament-hero-poster.cs2-poster {
	background: linear-gradient(135deg, #1e3c72, #2a5298);
}

.tournament-hero-poster.lol-poster {
	background: linear-gradient(135deg, #c89b3c, #0f2027);
}

.tournament-hero-poster.multi-poster {
	background: linear-gradient(135deg, #667eea, #764ba2);
}

.game-title-large {
	font-size: 2rem;
	font-weight: bold;
	color: white;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	z-index: 2;
}

.tournament-status-badge {
	align-self: flex-start;
	padding: 8px 15px;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.tournament-status-badge.ongoing {
	background: #28a745;
	color: white;
}

.tournament-status-badge.upcoming {
	background: #ffc107;
	color: #000;
}

.tournament-status-badge.planning {
	background: #6c757d;
	color: white;
}

.tournament-hero-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.tournament-main-title {
	font-size: 3rem;
	font-weight: bold;
	background: linear-gradient(45deg, #ff6b35, #f7931e, #ffcd3c);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 20px;
	line-height: 1.2;
}

.tournament-main-description {
	color: #cccccc;
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 30px;
}

.tournament-key-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 20px;
}

.key-stat {
	text-align: center;
	padding: 20px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	border: 1px solid rgba(255, 107, 53, 0.2);
}

.key-stat .stat-value {
	display: block;
	font-size: 1.5rem;
	font-weight: bold;
	color: #ff6b35;
	margin-bottom: 5px;
}

.key-stat .stat-label {
	color: #cccccc;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.tournament-main-content {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 40px;
}

.tournament-info-column {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.info-section {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	padding: 30px;
	border: 1px solid rgba(255, 107, 53, 0.2);
	backdrop-filter: blur(10px);
}

.info-section h3 {
	font-size: 1.5rem;
	font-weight: bold;
	color: #ff6b35;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid rgba(255, 107, 53, 0.3);
}

.info-grid {
	display: grid;
	gap: 15px;
}

.info-item-detailed {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	border-left: 4px solid #ff6b35;
}

.info-item-detailed strong {
	color: #ffffff;
	font-weight: 600;
	min-width: 150px;
}

.info-item-detailed span {
	color: #cccccc;
	text-align: right;
}

.prize-breakdown {
	display: grid;
	gap: 12px;
}

.prize-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	border: 1px solid rgba(255, 107, 53, 0.2);
	transition: all 0.3s ease;
}

.prize-item:hover {
	background: rgba(255, 107, 53, 0.1);
	transform: translateX(5px);
}

.prize-place {
	font-weight: bold;
	color: #ffffff;
	background: linear-gradient(45deg, #ff6b35, #f7931e);
	padding: 6px 12px;
	border-radius: 15px;
	font-size: 0.9rem;
}

.requirements-list {
	list-style: none;
	padding: 0;
	display: grid;
	gap: 10px;
}

.requirements-list li {
	padding: 15px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	border-left: 4px solid #ff6b35;
	color: #cccccc;
	position: relative;
	padding-left: 45px;
}

.requirements-list li::before {
	content: '✓';
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: #ff6b35;
	font-weight: bold;
	font-size: 1.2rem;
}

.tournament-action-column {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.registration-card {
	background: rgba(255, 255, 255, 0.08);
	border-radius: 15px;
	padding: 30px;
	border: 2px solid rgba(255, 107, 53, 0.3);
	backdrop-filter: blur(10px);
	text-align: center;
}

.registration-card h3 {
	font-size: 1.4rem;
	font-weight: bold;
	color: #ff6b35;
	margin-bottom: 20px;
}

.registration-progress {
	margin-bottom: 25px;
}

.progress-bar {
	width: 100%;
	height: 12px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 6px;
	overflow: hidden;
	margin-bottom: 10px;
}

.progress-fill {
	height: 100%;
	background: linear-gradient(90deg, #ff6b35, #f7931e);
	border-radius: 6px;
	transition: width 0.5s ease;
}

.progress-text {
	color: #cccccc;
	font-size: 0.9rem;
	font-weight: 500;
}

.register-btn {
	display: block;
	width: 100%;
	padding: 15px;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: bold;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	transition: all 0.3s ease;
	margin-bottom: 15px;
	cursor: pointer;
}

.register-btn.primary {
	background: linear-gradient(45deg, #ff6b35, #f7931e);
	color: white;
}

.register-btn.primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.register-btn.secondary {
	background: transparent;
	border: 2px solid #ff6b35;
	color: #ff6b35;
}

.register-btn.secondary:hover {
	background: rgba(255, 107, 53, 0.1);
	transform: translateY(-2px);
}

.register-btn.disabled {
	background: #666;
	color: #999;
	cursor: not-allowed;
}

.registration-note {
	color: #cccccc;
	font-size: 0.9rem;
	line-height: 1.4;
}

.quick-actions-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	padding: 25px;
	border: 1px solid rgba(255, 107, 53, 0.2);
	backdrop-filter: blur(10px);
}

.quick-actions-card h3 {
	font-size: 1.3rem;
	font-weight: bold;
	color: #ff6b35;
	margin-bottom: 20px;
	text-align: center;
}

.quick-actions-card .action-btn {
	display: block;
	width: 100%;
	padding: 12px 20px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 107, 53, 0.3);
	color: #cccccc;
	text-decoration: none;
	border-radius: 8px;
	margin-bottom: 10px;
	font-weight: 500;
	text-align: center;
	transition: all 0.3s ease;
}

.quick-actions-card .action-btn:hover {
	background: rgba(255, 107, 53, 0.1);
	border-color: #ff6b35;
	color: #ffffff;
	transform: translateX(3px);
}

/* Animations */
@keyframes glow {
	0%, 100% { text-shadow: 0 0 20px rgba(255, 107, 53, 0.3); }
	50% { text-shadow: 0 0 30px rgba(255, 107, 53, 0.6), 0 0 40px rgba(255, 107, 53, 0.3); }
}

/* Hero Animations */
.animate-hero {
    opacity: 0;
    transform: translateY(-20px);
    animation: heroFadeIn 0.8s ease-out forwards;
}

.animate-hero-delay {
    opacity: 0;
    transform: translateY(-15px);
    animation: heroFadeIn 0.8s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 1400px) {
	.ad-banner {
		display: none;
	}
	
	.content-wrapper {
		justify-content: center;
	}
	
	.mobile-ad {
		display: block;
		width: 100%;
		margin: 0;
		padding: 0;
	}
	
	.mobile-ad-top {
		position: static;
		margin-top: 90px;
		margin-bottom: 20px;
	}
	
	.mobile-ad-bottom {
		margin-top: 20px;
		margin-bottom: 20px;
	}
	
	.mobile-ad .ad-content {
		width: 100%;
		height: 90px;
		background-color: purple;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		color: white;
		font-weight: bold;
		border-radius: 0;
		gap: 5px;
		position: relative;
	}
	
	.hero-content {
		padding: 0;
		max-width: 100%;
	}
	
	.collaborations-section {
		padding: 60px 20px;
	}
	
	.collaborations-grid-container {
		max-width: 100%;
		padding: 0 10px;
	}
	
	.collaborations-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 20px;
	}
	
	.collaboration-card.static-card {
		max-width: 100%;
		height: auto;
		min-height: 300px;
		padding: 25px;
	}
}

@media (max-width: 1200px) {
	.tournament-table-container {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
	}
	
	.tournament-table {
		min-width: 900px;
	}
	
	/* Ensure parent containers don't restrict width */
	.all-tournaments-style {
		max-width: 100vw;
		overflow-x: hidden;
	}
}

@media (max-width: 768px) {
	* {
		box-sizing: border-box;
	}
	
	body {
		overflow-x: hidden;
		width: 100%;
	}
	
	nav.container {
		justify-content: flex-end;
		padding: 0 20px;
	}

	.container {
		padding: 0;
		max-width: 100%;
		margin: 0;
		width: 100%;
	}
	
	section .container {
		padding: 0 20px;
	}
	
	.hero-content {
		padding: 0 20px;
		max-width: 100%;
		width: 100%;
	}
	
	.collaborations-section {
		width: 100%;
		padding: 60px 0;
		margin-left: 0;
		margin-right: 0;
	}
	
	.collaborations-section .container {
		padding: 0 20px;
		max-width: 100%;
		width: 100%;
	}

	.nav-links {
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		height: 100vh;
		background: rgba(0, 0, 0, 0.95);
		flex-direction: column;
		justify-content: center;
		align-items: center;
		transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
		z-index: 999;
		backdrop-filter: blur(10px);
	}
	
	.nav-links, .nav-links.active {
		will-change: transform;
		transform: translateZ(0);
	}

	.nav-links.active {
		right: 0;
	}

	.hamburger {
		display: flex;
		flex-direction: column;
		cursor: pointer;
		z-index: 1001;
	}

	.hamburger span {
		width: 25px;
		height: 3px;
		background: #ff6b35;
		margin: 3px 0;
		transition: 0.3s;
	}

	.hero-content h1 {
		font-size: 2.5rem;
	}

	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}

	.collaborations-title {
		font-size: 2rem;
	}
	
	.collaborations-carousel-container {
		width: 100%;
		margin: 0;
		border-radius: 0;
	}
	
	.collaborations-carousel-track {
		padding: 0 20px;
	}
	
	.collaboration-card.carousel-card {
		opacity: 1;
		flex: 0 0 280px;
	}

	.contact-grid {
		grid-template-columns: 1fr;
	}

	.section-title {
		font-size: 2rem;
	}

	.services-grid,
	.contact-cards-grid,
	.tournaments-acgl-style .services-grid {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 0;
		width: 100%;
		max-width: 100%;
		margin: 0;
		place-items: center;
	}
	
	.service-card,
	.contact-card,
	.game-card {
		width: calc(100% - 40px);
		max-width: 500px;
		margin: 0;
	}

	.tournaments-main-title {
		font-size: 2.5rem;
	}
	
	.featured-tournament-card {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.tournaments-acgl-grid {
		grid-template-columns: 1fr;
	}
	
	.tournament-acgl-card .game-poster {
		height: 100px;
	}

	.all-tournaments-cta {
		padding: 60px 0;
		margin: 30px 0;
	}
	
	.cta-content h3 {
		font-size: 2rem;
	}
	
	.cta-content p {
		font-size: 1.1rem;
	}
	
	.cta-stats {
		grid-template-columns: 1fr;
		gap: 20px;
		margin: 30px 0 40px 0;
	}
	
	.icon-trophy {
		font-size: 3rem;
	}
	
	.tournament-actions {
		flex-direction: column;
		align-items: center;
	}
	
	.tournament-cta-btn {
		width: 100%;
		text-align: center;
		margin: 0 0 10px 0;
	}
	
	.tournament-cta-btn.secondary {
		margin-right: 0;
	}

	.all-tournaments-style {
		padding: 20px 10px;
		max-width: 100vw;
		overflow-x: hidden;
	}
	
	.page-title {
		font-size: 2.5rem;
	}
	
	.section-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
	
	.tournament-table-container {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		margin: 0 -10px;
		padding: 0 10px;
	}
	
	.tournament-table {
		min-width: 700px;
		display: table;
	}
	
	.tournament-table th,
	.tournament-table td {
		padding: 15px 10px;
		white-space: nowrap;
	}
	
	.col-tournament {
		min-width: 180px;
	}
	
	.col-dates {
		min-width: 140px;
	}
	
	.tournament-info .tournament-name,
	.tournament-info .tournament-format,
	.date-info .tournament-dates,
	.date-info .registration-deadline {
		white-space: normal;
		word-break: break-word;
	}
	
	.action-buttons {
		flex-direction: column;
		gap: 5px;
	}
	
	.action-btn {
		width: 100%;
		padding: 6px 10px;
		font-size: 0.75rem;
	}
	
	.footer-actions {
		flex-direction: column;
		align-items: center;
	}
	
	.cta-btn {
		width: 200px;
	}
	
	.cta-card {
		padding: 30px 20px;
	}

	.tournament-details-style {
		padding: 20px 10px;
	}
	
	.tournament-hero-card {
		grid-template-columns: 1fr;
		gap: 25px;
		padding: 25px;
	}
	
	.tournament-hero-poster {
		height: 180px;
	}
	
	.tournament-main-title {
		font-size: 2.2rem;
	}
	
	.tournament-key-stats {
		grid-template-columns: 1fr;
	}
	
	.tournament-main-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.info-item-detailed {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
	
	.info-item-detailed span {
		text-align: left;
	}
	
	.prize-item {
		padding: 15px;
	}
	
	.registration-card,
	.quick-actions-card {
		padding: 20px;
	}
}

/* Stretched Ad Layout */
.content-wrapper.stretched-ads {
    max-width: 100%;
    padding: 20px;
    gap: 0;
    position: relative;
}

.stretched-ad {
    position: fixed;
    top: 90px; /* Account for header */
    bottom: 20px;
    width: min(calc((100% - 1400px) / 2), 300px); /* Dynamic width with max limit */
    min-width: 160px;
    margin: 0;
    z-index: 10;
}

.stretched-ad.ad-left {
    left: 20px;
}

.stretched-ad.ad-right {
    right: 20px;
}

.stretched-ad .ad-content {
    height: 100%;
    width: 100%;
    border-radius: 0;
}

.content-wrapper.stretched-ads .main-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 calc(min(calc((100% - 1400px) / 2), 300px) + 40px); /* Match ad width plus some spacing */
}

/* Media query to handle smaller desktop screens */
@media (max-width: 1400px) {
    .stretched-ad {
        display: none;
    }
    
    .content-wrapper.stretched-ads .main-content {
        padding: 0 20px;
    }
}

/* Package Card Styles */
.package-card {
    display: flex;
    flex-direction: column;
}

.package-pricing {
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
}

.package-price {
    font-size: 1.2rem;
    color: #ff6b35;
    font-weight: bold;
    margin-bottom: 10px;
}

.package-tiers {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tier {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 0.9rem;
}

.tier-name {
    color: #ffffff;
    font-weight: 500;
}

.tier-price {
    color: #ff6b35;
    font-weight: bold;
}

.tier-duration {
    color: #cccccc;
    font-size: 0.8rem;
}

.package-cta {
    display: inline-block;
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    margin-top: auto;
    transition: all 0.3s ease;
}

.package-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}
