@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #FFD700;
    --white: #FFFFFF;
    --gold-gradient: linear-gradient(135deg, #FFD700, #FFFFFF);
    --gold-glow: rgba(255, 215, 0, 0.4);
    --white-glow: rgba(255, 255, 255, 0.3);
    --dark: #0a0a0a;
    --darker: #000000;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    cursor: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--white);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: all 0.1s ease;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5), 0 0 25px var(--gold-glow);
}

.custom-cursor::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--white);
}

.custom-cursor.hover {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold);
    border-radius: 50%;
    animation: float 15s infinite linear;
    box-shadow: 0 0 10px var(--gold-glow);
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px) scale(1);
        opacity: 0;
    }
}

.scan-line {
    position: fixed;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: scan 4s infinite linear;
    z-index: 2;
    pointer-events: none;
    box-shadow: 0 0 20px var(--gold-glow);
}

@keyframes scan {
    from { top: 0; }
    to { top: 100vh; }
}

.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 215, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    z-index: 0;
}

@keyframes gridMove {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(50px); }
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 5px 30px rgba(255, 215, 0, 0.2), 0 3px 20px rgba(255, 255, 255, 0.1);
}

nav {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 4px;
    position: relative;
    animation: logoGlow 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3)) drop-shadow(0 0 30px rgba(255, 255, 255, 0.2));
}

@keyframes logoGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.3)) drop-shadow(0 0 25px rgba(255, 255, 255, 0.2)) brightness(1);
    }
    50% { 
        filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.5)) drop-shadow(0 0 40px rgba(255, 255, 255, 0.3)) brightness(1.2);
    }
}

.nav-links {
    display: flex;
    gap: 50px;
    list-style: none;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    position: relative;
    padding: 10px 20px;
    transition: all 0.3s ease;
    letter-spacing: 2px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #FFFFFF);
    transition: width 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFFFFF, #FFD700);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    background: linear-gradient(135deg, #FFD700, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links a:hover::before,
.nav-links a:hover::after {
    width: 100%;
}

.hero {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-video-bg video,
.hero-video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    pointer-events: none;
}

/* Pour YouTube iframe spécifiquement */
.hero-video-bg iframe {
    width: 100vw;
    height: 56.25vw; /* Ratio 16:9 */
    min-height: 100vh;
    min-width: 177.77vh; /* Ratio 16:9 */
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.glitch-wrapper {
    position: relative;
    display: inline-block;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 120px;
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700 0%, #FFFFFF 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: 10px;
    animation: heroGlow 2s ease-in-out infinite;
    position: relative;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.3)) drop-shadow(0 0 50px rgba(255, 255, 255, 0.2));
}

@keyframes heroGlow {
    0%, 100% { 
        filter: brightness(1);
        transform: scale(1);
    }
    50% { 
        filter: brightness(1.4);
        transform: scale(1.02);
    }
}

.glitch {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.glitch:nth-child(2) {
    color: #ff00ff;
    animation: glitch1 3s infinite;
}

.glitch:nth-child(3) {
    color: #00ffff;
    animation: glitch2 3s infinite;
}

@keyframes glitch1 {
    0% { clip-path: inset(40% 0 61% 0); transform: translate(-2px, 2px); opacity: 0.8; }
    5% { clip-path: inset(92% 0 1% 0); transform: translate(2px, -2px); }
    10% { clip-path: inset(43% 0 1% 0); transform: translate(-2px, 2px); }
    15% { clip-path: inset(25% 0 58% 0); transform: translate(0); opacity: 0; }
    100% { opacity: 0; }
}

@keyframes glitch2 {
    0% { clip-path: inset(50% 0 30% 0); transform: translate(2px, -2px); opacity: 0.8; }
    5% { clip-path: inset(10% 0 85% 0); transform: translate(-2px, 2px); }
    10% { clip-path: inset(60% 0 20% 0); transform: translate(2px, -2px); }
    15% { clip-path: inset(30% 0 70% 0); transform: translate(0); opacity: 0; }
    100% { opacity: 0; }
}

.hero-subtitle {
    font-size: 32px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    letter-spacing: 4px;
    animation: fadeInUp 1s ease 0.5s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-buttons {
    display: flex;
    gap: 30px;
    animation: fadeInUp 1s ease 1s backwards;
}

.btn {
    padding: 20px 50px;
    font-size: 20px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #FFD700, #FFFFFF, #FFD700);
    background-size: 200% 200%;
    color: #000;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3), 0 5px 20px rgba(255, 255, 255, 0.2);
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.4), 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, #FFD700, #FFFFFF) 1;
    clip-path: polygon(0 0, 90% 0, 100% 100%, 10% 100%);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #FFD700, #FFFFFF);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3), 0 5px 20px rgba(255, 255, 255, 0.2);
}

.hologram {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid #FFD700;
    border-radius: 50%;
    animation: rotate 20s linear infinite, pulse 2s ease-in-out infinite;
    opacity: 0.2;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3), 0 0 30px rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.hologram:nth-child(1) {
    top: 10%;
    left: 10%;
}

.hologram:nth-child(2) {
    top: 60%;
    right: 10%;
    animation-duration: 15s;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.1); opacity: 0.35; }
}

.section {
    max-width: 1600px;
    margin: 150px auto;
    padding: 0 50px;
    position: relative;
    z-index: 10;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 72px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 100px;
    background: linear-gradient(135deg, #FFD700, #FFFFFF, #FFD700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    letter-spacing: 5px;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3)) drop-shadow(0 0 30px rgba(255, 255, 255, 0.2));
    animation: gradientShift 3s ease infinite;
}

.section-title::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #FFFFFF);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.3);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFD700, #FFFFFF, #FFD700, transparent);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.3);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(0, 0, 0, 0.8));
    padding: 50px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    transition: all 0.5s ease;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 215, 0, 0.05);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3), 0 10px 40px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.feature-icon {
    font-size: 72px;
    margin-bottom: 30px;
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    background: linear-gradient(135deg, #FFD700, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.8;
}

.feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Orbitron', sans-serif;
    font-size: 80px;
    font-weight: 900;
    color: rgba(255, 215, 0, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-card {
    background: rgba(0, 0, 0, 0.8);
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.4);
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3), 0 5px 20px rgba(255, 255, 255, 0.1);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    animation: statShine 3s infinite;
}

@keyframes statShine {
    to { left: 100%; }
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3)) drop-shadow(0 0 30px rgba(255, 255, 255, 0.2));
}

.stat-label {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
}

.rules-container {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(255, 215, 0, 0.03));
    padding: 60px;
    border-left: 5px solid #FFD700;
    position: relative;
    overflow: hidden;
    box-shadow: -5px 0 30px rgba(255, 215, 0, 0.2);
}

.rules-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 215, 0, 0.03) 2px,
        rgba(255, 215, 0, 0.03) 4px
    );
    pointer-events: none;
}

.rules-list {
    list-style: none;
}

.rules-list li {
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 50px;
    transition: all 0.3s ease;
}

.rules-list li:hover {
    background: linear-gradient(135deg, #FFD700, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-left: 60px;
}

.rules-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    background: linear-gradient(135deg, #FFD700, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 24px;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.team-card {
    text-align: center;
    position: relative;
    padding: 40px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 215, 0, 0.3);
    clip-path: polygon(30px 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px);
    transition: all 0.5s ease;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 215, 0, 0.03);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s;
}

.team-card:hover::before {
    opacity: 1;
}

.team-card:hover {
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.25), 0 10px 30px rgba(255, 255, 255, 0.15);
}

.team-avatar {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700, #FFFFFF, #FFD700);
    background-size: 200% 200%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    position: relative;
    overflow: hidden;
    border: 4px solid #FFD700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4), 0 0 40px rgba(255, 255, 255, 0.2);
    animation: gradientShift 3s ease infinite;
}

.team-avatar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: avatarShine 3s infinite;
}

@keyframes avatarShine {
    to { transform: rotate(360deg); }
}

.team-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    background: linear-gradient(135deg, #FFD700, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.team-role {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.team-nomrp {
    font-size: 15px;
    color: #fefefe;
}

.discord-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(0, 0, 0, 0.9));
    padding: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 215, 0, 0.5);
    clip-path: polygon(50px 0, 100% 0, 100% calc(100% - 50px), calc(100% - 50px) 100%, 0 100%, 0 50px);
    transition: all 0.3s ease;
}

.discord-section:hover {
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3), 0 10px 40px rgba(255, 255, 255, 0.2);
}

.discord-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255, 215, 0, 0.03) 20px,
        rgba(255, 215, 0, 0.03) 40px
    );
    animation: bgMove 20s linear infinite;
}

@keyframes bgMove {
    to { transform: translate(20px, 20px); }
}

.discord-section h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 56px;
    background: linear-gradient(135deg, #FFD700, #FFFFFF, #FFD700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.4)) drop-shadow(0 0 40px rgba(255, 255, 255, 0.3));
    position: relative;
    z-index: 1;
    animation: gradientShift 3s ease infinite;
}

.discord-section p {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

footer {
    background: rgba(0, 0, 0, 0.95);
    padding: 60px 0 30px;
    border-top: 2px solid rgba(255, 215, 0, 0.5);
    position: relative;
    margin-top: 150px;
    box-shadow: 0 -5px 30px rgba(255, 215, 0, 0.2), 0 -3px 20px rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 50px;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.social-links a {
    width: 70px;
    height: 70px;
    border: 2px solid #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    background: linear-gradient(135deg, #FFD700, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3), 0 0 25px rgba(255, 255, 255, 0.1);
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, #FFD700, #FFFFFF);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-links a:hover::before {
    width: 100%;
    height: 100%;
}

.social-links a:hover {
    color: #000;
    -webkit-text-fill-color: #000;
    transform: translateY(-10px) rotate(360deg);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4), 0 5px 20px rgba(255, 255, 255, 0.3);
    border-color: #FFFFFF;
}

.social-links a span {
    position: relative;
    z-index: 1;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    margin-top: 30px;
}

@media (max-width: 1200px) {
    .hero h1 { font-size: 80px; }
    .section-title { font-size: 56px; }
    .features { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 48px; letter-spacing: 5px; }
    .hero-subtitle { font-size: 20px; }
    .cta-buttons { flex-direction: column; }
    .nav-links { display: none; }
    .section-title { font-size: 36px; }
    .section { padding: 0 20px; }
    nav { padding: 0 20px; }
    .logo { font-size: 24px; }
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid #FFD700;
    border-radius: 20px;
    animation: scrollBounce 2s infinite;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #FFD700, #FFFFFF);
    border-radius: 50%;
    animation: scrollDot 2s infinite;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes scrollDot {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(30px); }
}