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

:root {
    --primary-gold: #FFD700;
    --aztec-bronze: #CD7F32;
    --deep-purple: #4A148C;
    --royal-blue: #1565C0;
    --dark-bg: #0A0A0A;
    --card-bg: #1A1A1A;
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --accent-glow: #00FFFF;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--deep-purple) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
}

.aztec-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    position: relative;
}

.octavius-symbol {
    width: 100%;
    height: 100%;
    background: conic-gradient(from 0deg, var(--primary-gold), var(--aztec-bronze), var(--primary-gold));
    border-radius: 50%;
    animation: rotate 3s linear infinite;
    position: relative;
}

.octavius-symbol::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--dark-bg);
    border-radius: 50%;
}

.loading-text {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-gold), var(--aztec-bronze));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-gold), var(--aztec-bronze));
    border-radius: 2px;
    width: 0%;
    animation: loadProgress 3s ease-in-out;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes loadProgress {
    to { width: 100%; }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.aztec-emblem {
    width: 40px;
    height: 40px;
    background: conic-gradient(from 0deg, var(--primary-gold), var(--aztec-bronze), var(--primary-gold));
    border-radius: 50%;
    position: relative;
}

.aztec-emblem::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    background: var(--dark-bg);
    border-radius: 50%;
}

.brand-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-gold), var(--aztec-bronze));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .brand-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .brand-text {
        font-size: 0.9rem;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.social-link:hover {
    color: var(--primary-gold);
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.aztec-patterns {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(205, 127, 50, 0.1) 0%, transparent 50%);
    animation: patternShift 20s ease-in-out infinite;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-particles::before,
.floating-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-gold);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-particles::after {
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.title-line {
    display: block;
    color: var(--text-secondary);
    font-size: 1.5rem;
    font-weight: 400;
}

.title-main {
    display: block;
    background: linear-gradient(45deg, var(--primary-gold), var(--aztec-bronze));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.title-sub {
    display: block;
    color: var(--accent-glow);
    font-size: 1.2rem;
    font-weight: 400;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-gold), var(--aztec-bronze));
    color: var(--dark-bg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-showcase {
    position: relative;
}

.showcase-card {
    width: 400px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.3s ease;
}

.showcase-card:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
}

.showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.live-indicator {
    background: #ff0000;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--dark-bg) 100%);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(45deg, var(--primary-gold), var(--aztec-bronze));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.player-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.player-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.player-card:hover::before {
    left: 100%;
}

.player-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.player-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-gold);
}

.player-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.player-status {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
}

.player-status.online {
    background: #00ff00;
    animation: pulse 2s infinite;
}

.twitch-link {
    color: #9146ff;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.twitch-link:hover {
    transform: scale(1.2);
}

.player-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.player-role {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.player-stats {
    display: flex;
    justify-content: space-around;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes patternShift {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(20px) translateY(-10px); }
    50% { transform: translateX(-10px) translateY(20px); }
    75% { transform: translateX(10px) translateY(10px); }
}

/* Join Community Section */
.join-community {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--deep-purple) 50%, var(--dark-bg) 100%);
    position: relative;
}

.join-community::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="paw-pattern" patternUnits="userSpaceOnUse" width="25" height="25"><path d="M0 0h25v25H0z" fill="none"/><circle cx="12.5" cy="8" r="2" fill="rgba(255,215,0,0.02)"/><circle cx="8" cy="12" r="1.5" fill="rgba(255,215,0,0.02)"/><circle cx="17" cy="12" r="1.5" fill="rgba(255,215,0,0.02)"/><circle cx="10" cy="16" r="1.5" fill="rgba(255,215,0,0.02)"/><circle cx="15" cy="16" r="1.5" fill="rgba(255,215,0,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23paw-pattern)"/></svg>') repeat;
    opacity: 0.1;
}

.community-content {
    position: relative;
    z-index: 2;
}

.community-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.community-intro h3 {
    color: var(--primary-gold);
    font-size: 2rem;
    margin-bottom: 20px;
}

.community-intro p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.6;
}

.membership-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.tier-card {
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.tier-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.tier-card.featured {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(205, 127, 50, 0.1));
    border-color: var(--primary-gold);
    transform: scale(1.02);
}

.tier-header {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.tier-header i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
    display: block;
}

.tier-header h4 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.tier-badge {
    background: var(--primary-gold);
    color: var(--dark-bg);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.tier-benefits {
    list-style: none;
    margin-bottom: 25px;
}

.tier-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.tier-benefits i {
    color: var(--primary-gold);
    font-size: 0.9rem;
}

.tier-requirements {
    background: rgba(255, 215, 0, 0.05);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-gold);
}

.tier-requirements h5 {
    color: var(--primary-gold);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.tier-requirements p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.application-process {
    background: rgba(26, 26, 26, 0.8);
    padding: 50px;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    text-align: center;
}

.application-process h3 {
    color: var(--primary-gold);
    font-size: 2rem;
    margin-bottom: 40px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-content h4 {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--dark-bg);
}

.btn-primary:hover {
    background: var(--aztec-bronze);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-gold);
    border-color: var(--primary-gold);
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .membership-tiers {
        grid-template-columns: 1fr;
    }
    
    .application-process {
        padding: 30px 20px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Partners Section */
.partners {
    padding: 100px 0;
    background: var(--dark-bg);
    position: relative;
}

.partners-content {
    margin-top: 60px;
}

.partner-card.main-partner {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(74, 20, 140, 0.1));
    border: 2px solid var(--primary-gold);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: center;
}

.partner-logo {
    width: 150px;
    height: 150px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-gold);
}

.partner-logo img {
    max-width: 120px;
    max-height: 120px;
    object-fit: contain;
}

.partner-info h3 {
    color: var(--primary-gold);
    font-size: 2rem;
    margin-bottom: 15px;
}

.partner-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.partnership-details {
    margin-bottom: 30px;
}

.partnership-type {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 15px;
}

.partnership-benefits {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.benefit {
    background: rgba(255, 215, 0, 0.1);
    color: var(--text-primary);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.partner-links {
    display: flex;
    gap: 20px;
}

.partner-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-gold);
    text-decoration: none;
    padding: 12px 20px;
    border: 2px solid var(--primary-gold);
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.partner-link:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.partner-item {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.partner-item:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.partner-logo-small {
    width: 80px;
    height: 80px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.partner-logo-small img {
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
}

.partner-name {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.partner-type {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Contact & Social Section */
.contact-social {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--royal-blue) 100%);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    color: var(--primary-gold);
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-primary);
    font-weight: 500;
}

.contact-method i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    width: 20px;
}

.social-section h4 {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.social-links-enhanced {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    border-color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.social-link i {
    font-size: 2rem;
    width: 40px;
    text-align: center;
}

.social-link.twitch i { color: #9146FF; }
.social-link.discord i { color: #5865F2; }
.social-link.youtube i { color: #FF0000; }
.social-link.twitter i { color: #1DA1F2; }

.social-info {
    display: flex;
    flex-direction: column;
}

.platform {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.followers {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--deep-purple) 100%);
    padding: 80px 0 30px;
    border-top: 2px solid var(--primary-gold);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="aztec-footer" patternUnits="userSpaceOnUse" width="30" height="30"><path d="M0 0h30v30H0z" fill="none"/><path d="M15 0L30 15L15 30L0 15z" fill="rgba(255,215,0,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23aztec-footer)"/></svg>') repeat;
    opacity: 0.3;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-aztec-emblem {
    width: 50px;
    height: 50px;
    background: conic-gradient(from 0deg, var(--primary-gold), var(--aztec-bronze), var(--primary-gold));
    border-radius: 50%;
    position: relative;
}

.footer-aztec-emblem::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    background: var(--dark-bg);
    border-radius: 50%;
}

.footer-brand-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-gold), var(--aztec-bronze));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 300px;
}

.footer-achievements {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-weight: 500;
}

.achievement-item i {
    color: var(--primary-gold);
    font-size: 1.1rem;
    width: 20px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h4 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-gold);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
}

.footer-links li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links li a:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
}

.footer-links li a i {
    font-size: 0.9rem;
    width: 16px;
}

.social-section-footer {
    display: flex;
    flex-direction: column;
}

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

.social-link-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-link-footer:hover {
    color: var(--text-primary);
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
}

.social-link-footer i {
    font-size: 1.3rem;
    width: 20px;
    text-align: center;
}

.social-link-footer.twitch:hover i { color: #9146FF; }
.social-link-footer.discord:hover i { color: #5865F2; }
.social-link-footer.youtube:hover i { color: #FF0000; }
.social-link-footer.twitter:hover i { color: #1DA1F2; }

.footer-bottom {
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-gold);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .showcase-card {
        width: 300px;
        height: 400px;
        transform: none;
    }
    
    .nav-menu {
        display: none;
    }
}

@media (max-width: 768px) {
    .tournaments-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-card.main-partner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .social-links-enhanced {
        grid-template-columns: 1fr;
    }
    
    .partner-links {
        justify-content: center;
    }
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-brand {
        grid-column: 1;
        margin-bottom: 0;
    }
    
    .footer-tagline {
        max-width: none;
        margin: 0 auto 30px;
    }
    
    .footer-achievements {
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

/* Charity Section */
.charity-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    padding: 0 5px;
}

.charity-mission {
    margin-top: 60px;
    text-align: center;
    background: rgba(26, 26, 26, 0.6);
    padding: 50px;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.charity-mission h3 {
    color: var(--primary-gold);
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-family: 'Orbitron', monospace;
}

.charity-mission > p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 50px;
}

.mission-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: left;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.1);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold), var(--aztec-bronze));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 1.5rem;
    color: var(--dark-bg);
}

.highlight-content h4 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.highlight-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.total-impact {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(184, 134, 11, 0.1));
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--primary-gold);
}

.impact-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-gold);
    font-family: 'Orbitron', monospace;
    line-height: 1;
}

.impact-label {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 10px;
}

.impact-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-top: 5px;
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .charity-mission {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .mission-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .highlight-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-icon {
        margin: 0 auto;
    }
    
    .total-impact {
        padding: 30px 20px;
    }
    
    .impact-number {
        font-size: 2.5rem;
    }
}

.team-leader-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.leader-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.leader-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--aztec-bronze));
}

.leader-image {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid var(--primary-gold);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.leader-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.live-status {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #00ff00;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
}

.leader-badges {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge.owner {
    background: var(--primary-gold);
    color: black;
}

.badge.streamer {
    background: #9146ff;
    color: white;
}

.leader-info {
    text-align: center;
}

.leader-info h3 {
    font-size: 2.5rem;
    color: var(--primary-gold);
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    margin-bottom: 10px;
}

.leader-role {
    color: var(--aztec-bronze);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.leader-bio {
    text-align: left;
    margin-bottom: 30px;
}

.leader-bio p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

.specialties h4 {
    color: var(--primary-gold);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.specialty-tags .tag {
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-gold);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.leader-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
}

.leader-stats .stat {
    text-align: center;
}

.leader-stats .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold);
    font-family: 'Orbitron', monospace;
}

.leader-stats .stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 5px;
}

.leader-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-btn.twitch {
    background: #9146ff;
    color: white;
}

.social-btn.discord {
    background: #5865f2;
    color: white;
}

.social-btn.twitter {
    background: #1da1f2;
    color: white;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.team-expansion {
    background: rgba(26, 26, 26, 0.6);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    height: fit-content;
}

.expansion-content h3 {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-family: 'Orbitron', monospace;
}

.expansion-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
}

.recruitment-info {
    margin-bottom: 25px;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.requirement-item i {
    color: var(--primary-gold);
    width: 20px;
}

.join-team-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-gold), var(--aztec-bronze));
    color: var(--dark-bg);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.join-team-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .team-leader-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .leader-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .leader-card {
        padding: 25px;
    }
    
    .leader-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .leader-social {
        flex-direction: column;
    }
    
    .social-btn {
        justify-content: center;
    }
}

/* Loading state for stats */
.stat-number.loading {
    opacity: 0.6;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.social-link .followers {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.streamer-avatar, .streamer-avatar-large {
    transition: transform 0.3s ease;
}

.streamer-avatar:hover, .streamer-avatar-large:hover {
    transform: scale(1.1);
}

/* ZWUTE Profile Styling */
.zwute-profile {
    position: relative;
}

.zwute-profile .member-image {
    position: relative;
    border: 3px solid var(--primary-gold);
    border-radius: 50%;
    overflow: hidden;
    transition: all 0.3s ease;
}

.zwute-profile .member-image:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.member-badges {
    position: absolute;
    top: -10px;
    right: -10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.badge {
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge.owner {
    background: var(--primary-gold);
    color: black;
}

.badge.streamer {
    background: var(--twitch-purple);
    color: white;
}

/* Clickable icon styling */
.team-member img, .player-image img, .member-avatar img {
    transition: transform 0.3s ease;
}

.team-member:hover img, .player-image:hover img, .member-avatar:hover img {
    transform: scale(1.05);
}

/* Founder name styling */
.founder-name {
    color: var(--primary-gold);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Return Navigation */
.return-nav {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 9999;
}

.return-btn {
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 12px 18px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.return-btn:hover {
    background: rgba(0, 0, 0, 1);
    transform: translateX(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}



