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

:root {
    --primary: #8b5cf6;
    --primary-dark: #7c3aed;
    --secondary: #f0abfc;
    --accent: #fbbf24;
    --cyan: #06b6d4;
    --pink: #ec4899;
    --orange: #f97316;
    --green: #10b981;
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --text-light: #f8fafc;
    --text-gray: #cbd5e1;
    --card-bg: rgba(30, 41, 59, 0.6);
    --glow: rgba(139, 92, 246, 0.6);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-darker);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* 8-bit font for main elements */
h1, h2, h3, h4,
.logo-text,
.cta-button,
.step-number {
    font-family: 'Press Start 2P', cursive;
}

/* Animated Background */
.stars, .twinkling {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: -1;
}

.stars {
    background: #000 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAEklEQVQImWP4////fwYGBgYABf8C/X/qrSUAAAAASUVORK5CYII=') repeat top center;
}

.twinkling {
    background: transparent url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAEklEQVQImWNgYGD4z8DAwMDAAAANAQEDYZhqWAAAAABJRU5ErkJggg==') repeat top center;
    animation: move-twink-back 200s linear infinite;
}

@keyframes move-twink-back {
    from { background-position: 0 0; }
    to { background-position: -10000px 5000px; }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--primary), var(--cyan), var(--pink), var(--accent), var(--primary));
    border-image-slice: 1;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.2);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 900;
}

.coin-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spin 3s linear infinite;
    position: relative;
}

.coin-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.6));
    transition: transform 0.3s ease;
}

.coin-icon:hover .coin-image {
    transform: scale(1.1);
}

@keyframes spin {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

.logo-text {
    background: linear-gradient(135deg, var(--primary), var(--pink), var(--accent));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    line-height: 1;
    display: flex;
    align-items: center;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--cyan), var(--pink));
    transition: width 0.3s;
}

nav a:hover {
    background: linear-gradient(135deg, var(--primary), var(--cyan), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
    background-image: url('memecoin.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.85);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.glitch {
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    background: linear-gradient(135deg, #8b5cf6, #06b6d4, #ec4899, #fbbf24, #10b981);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glitch-animation 5s infinite, gradient-flow 6s ease infinite;
}

@keyframes gradient-flow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes glitch-animation {
    0%, 100% { text-shadow: none; }
    10% { text-shadow: 2px 2px #ff00de, -2px -2px #00ffff; }
    20% { text-shadow: -2px 2px #00ffff, 2px -2px #ff00de; }
    30% { text-shadow: none; }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.winner-icon {
    width: 30px;
    height: 30px;
    animation: spin 2s linear infinite;
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.6));
}

.prize-box {
    margin: 3rem auto;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2), rgba(251, 191, 36, 0.1));
    border: 3px solid transparent;
    border-radius: 20px;
    max-width: 400px;
    box-shadow: 0 0 50px var(--glow), 0 0 100px rgba(236, 72, 153, 0.3);
    animation: pulse-glow 2s infinite;
    background-clip: padding-box;
    position: relative;
    cursor: pointer;
    display: block;
    width: 100%;
    transition: all 0.3s ease;
}

.prize-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 60px var(--glow), 0 0 120px rgba(236, 72, 153, 0.4);
}

.prize-box:active {
    transform: translateY(-2px);
}

.connect-wallet-btn {
    margin: 2rem auto;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(236, 72, 153, 0.3), rgba(251, 191, 36, 0.2));
    border: 2px solid transparent;
    border-radius: 15px;
    max-width: 300px;
    box-shadow: 0 0 30px var(--glow), 0 0 60px rgba(236, 72, 153, 0.2);
    animation: pulse-glow 2s infinite;
    background-clip: padding-box;
    position: relative;
    cursor: pointer;
    display: block;
    width: 100%;
    transition: all 0.3s ease;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.7rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.connect-wallet-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary), var(--cyan), var(--pink), var(--accent));
    background-size: 400% 400%;
    border-radius: 15px;
    z-index: -1;
    animation: border-flow 3s ease infinite;
}

.connect-wallet-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px var(--glow), 0 0 80px rgba(236, 72, 153, 0.3);
}

.connect-wallet-btn:active {
    transform: translateY(-1px);
}

.wallet-icon {
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
}

.pixel-wallet-icon {
    width: 16px;
    height: 16px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect x="2" y="3" width="12" height="8" fill="%23ffd700" stroke="%23ff8c00" stroke-width="1"/><rect x="3" y="4" width="10" height="6" fill="%23fff8dc"/><rect x="4" y="5" width="8" height="4" fill="%23ffd700"/><rect x="6" y="2" width="4" height="2" fill="%23ffd700"/><rect x="7" y="1" width="2" height="1" fill="%23ffd700"/><rect x="5" y="6" width="1" height="1" fill="%23ff8c00"/><rect x="10" y="6" width="1" height="1" fill="%23ff8c00"/></svg>') no-repeat center;
    background-size: contain;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.prize-box::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--primary), var(--cyan), var(--pink), var(--accent), var(--green));
    background-size: 400% 400%;
    border-radius: 20px;
    z-index: -1;
    animation: border-flow 3s ease infinite;
}

@keyframes border-flow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 0 40px var(--glow), 0 0 80px rgba(236, 72, 153, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 80px var(--glow), 0 0 120px rgba(236, 72, 153, 0.5), 0 0 160px rgba(6, 182, 212, 0.3);
        transform: scale(1.02);
    }
}

.prize-amount {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fbbf24, #f97316, #ec4899, #fbbf24);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
}

.prize-text {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

/* Timer */
.timer {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 3rem 0;
}

.timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 2px solid transparent;
    background-image: linear-gradient(var(--bg-darker), var(--bg-darker)), 
                      linear-gradient(135deg, var(--primary), var(--cyan), var(--pink));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    min-width: 100px;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    transition: all 0.3s;
}

.timer-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5), 0 5px 20px rgba(236, 72, 153, 0.3);
}

.timer-value {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--pink), var(--cyan));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
}

.timer-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    font-weight: 600;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--pink), var(--cyan));
    background-size: 200% auto;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.5), 0 5px 15px rgba(236, 72, 153, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(139, 92, 246, 0.8), 0 10px 30px rgba(236, 72, 153, 0.5);
    background-position: 100% 0;
}

.cta-button.secondary {
    background: linear-gradient(135deg, var(--accent), var(--orange), var(--pink));
    background-size: 200% auto;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.5), 0 5px 15px rgba(249, 115, 22, 0.3);
}

.cta-button.secondary:hover {
    box-shadow: 0 15px 50px rgba(251, 191, 36, 0.8), 0 10px 30px rgba(249, 115, 22, 0.6);
    background-position: 100% 0;
}

.arrow {
    transition: transform 0.3s;
}

.cta-button:hover .arrow {
    transform: translateX(5px);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-darker), var(--bg-dark));
}

.about h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--primary), var(--cyan), var(--pink));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
}

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

.about-card {
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.about-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
}

.about-card:hover::after {
    animation: card-shine 1.5s ease;
}

@keyframes card-shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.5), 0 10px 30px rgba(236, 72, 153, 0.3);
    border-color: rgba(139, 92, 246, 0.6);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.6));
    animation: icon-float 3s ease-in-out infinite;
}

/* 8-bit pixel icons */
.pixel-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.target-icon {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect x="2" y="2" width="12" height="12" fill="%23ff6b6b" stroke="%23ff0000" stroke-width="1"/><rect x="4" y="4" width="8" height="8" fill="%23ffffff" stroke="%23ff0000" stroke-width="1"/><rect x="6" y="6" width="4" height="4" fill="%23ff0000"/><circle cx="8" cy="8" r="1" fill="%23ffffff"/></svg>') no-repeat center;
    background-size: contain;
}

.trophy-icon {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect x="3" y="2" width="10" height="8" fill="%23ffd700" stroke="%23ff8c00" stroke-width="1"/><rect x="4" y="3" width="8" height="6" fill="%23ffed4e"/><rect x="5" y="4" width="6" height="4" fill="%23ffd700"/><rect x="7" y="1" width="2" height="2" fill="%23ffd700"/><rect x="2" y="8" width="2" height="4" fill="%23ffd700"/><rect x="12" y="8" width="2" height="4" fill="%23ffd700"/><rect x="1" y="10" width="14" height="2" fill="%23ffd700"/></svg>') no-repeat center;
    background-size: contain;
}

.rocket-icon {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect x="6" y="1" width="4" height="8" fill="%23ff6b6b" stroke="%23ff0000" stroke-width="1"/><rect x="7" y="2" width="2" height="6" fill="%23ffffff"/><rect x="5" y="7" width="6" height="2" fill="%23ff6b6b"/><rect x="4" y="8" width="2" height="2" fill="%23ff6b6b"/><rect x="10" y="8" width="2" height="2" fill="%23ff6b6b"/><rect x="3" y="9" width="2" height="2" fill="%23ff6b6b"/><rect x="11" y="9" width="2" height="2" fill="%23ff6b6b"/><rect x="2" y="10" width="2" height="2" fill="%23ff6b6b"/><rect x="12" y="10" width="2" height="2" fill="%23ff6b6b"/><rect x="1" y="11" width="2" height="2" fill="%23ff6b6b"/><rect x="13" y="11" width="2" height="2" fill="%23ff6b6b"/></svg>') no-repeat center;
    background-size: contain;
}

@keyframes icon-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.winner-prize {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
}

.twitter-link {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, #1DA1F2, #0d8bd9);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(29, 161, 242, 0.3);
}

.twitter-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 161, 242, 0.5);
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.winner-card h3 {
    font-size: 1.3rem;
    word-wrap: break-word;
    line-height: 1.6;
    text-align: center;
}

/* Nominees Section */
.nominees {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.nominees h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--pink), var(--primary), var(--accent));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

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

.nominee-card {
    position: relative;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 20px;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    overflow: hidden;
}

.nominee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), var(--cyan), var(--pink), var(--accent));
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
    animation: border-flow 3s ease infinite;
}

.nominee-card:hover::before {
    opacity: 1;
}

.nominee-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.6), 0 10px 30px rgba(236, 72, 153, 0.4);
}

.nominee-rank {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent), var(--orange), var(--pink));
    background-size: 200% auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.3rem;
    box-shadow: 0 5px 20px rgba(251, 191, 36, 0.5);
    animation: rank-pulse 2s ease infinite;
}

@keyframes rank-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 5px 20px rgba(251, 191, 36, 0.5); }
    50% { transform: scale(1.1); box-shadow: 0 8px 30px rgba(251, 191, 36, 0.8); }
}

.nominee-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.6)) drop-shadow(0 0 30px rgba(236, 72, 153, 0.4));
    animation: icon-bounce 2s ease-in-out infinite;
    transition: all 0.3s;
}

@keyframes icon-bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
}

.nominee-card:hover .nominee-icon {
    filter: drop-shadow(0 0 25px rgba(139, 92, 246, 0.9)) drop-shadow(0 0 40px rgba(236, 72, 153, 0.6));
    transform: scale(1.15) rotate(5deg);
}

.nominee-name {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--text-light), var(--primary), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s;
}

.nominee-card:hover .nominee-name {
    background: linear-gradient(135deg, var(--primary), var(--cyan), var(--pink), var(--accent));
    background-size: 200% auto;
}

.nominee-description {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 1rem;
    min-height: 60px;
}

.nominee-stats {
    display: flex;
    justify-content: space-around;
    margin: 1.5rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.15));
    border-radius: 10px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s;
}

.nominee-card:hover .nominee-stats {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(236, 72, 153, 0.25));
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.3);
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.3));
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
    font-weight: 600;
}

.vote-button {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--pink), var(--cyan));
    background-size: 200% auto;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.4);
    position: relative;
    overflow: hidden;
}

.vote-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.vote-button:hover::before {
    width: 300px;
    height: 300px;
}

.vote-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.7), 0 5px 20px rgba(236, 72, 153, 0.5);
    background-position: 100% 0;
}

/* How to Win Section */
.how-to-win {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-dark), var(--bg-darker));
}

.how-to-win h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--accent), var(--green), var(--cyan));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
}

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

.step {
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    text-align: center;
    transition: all 0.3s;
}

.step:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.3);
}

.step-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--pink), var(--cyan));
    background-size: 200% auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    box-shadow: 0 5px 25px rgba(139, 92, 246, 0.5);
    animation: step-pulse 3s ease infinite;
}

@keyframes step-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 5px 25px rgba(139, 92, 246, 0.5);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 8px 35px rgba(139, 92, 246, 0.8), 0 0 50px rgba(236, 72, 153, 0.4);
    }
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.how-to-win > .container > .cta-button {
    display: flex;
    margin: 0 auto;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--bg-dark);
    margin: 15% auto;
    padding: 3rem;
    border: 3px solid transparent;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 0 50px var(--glow), 0 0 100px rgba(236, 72, 153, 0.3);
    background-image: linear-gradient(var(--bg-dark), var(--bg-dark)), 
                      linear-gradient(135deg, var(--primary), var(--cyan), var(--pink), var(--accent));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: var(--text-gray);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: var(--primary);
}

.modal-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.modal-content p {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.modal-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-button.confirm {
    background: linear-gradient(135deg, var(--primary), var(--pink), var(--cyan));
    background-size: 200% auto;
    color: white;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.5);
}

.modal-button.confirm:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.8), 0 5px 20px rgba(236, 72, 153, 0.6);
    background-position: 100% 0;
}

.modal-button.cancel {
    background: transparent;
    color: var(--text-gray);
    border: 2px solid rgba(139, 92, 246, 0.5);
}

.modal-button.cancel:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
    color: var(--text-light);
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.3);
}

/* Footer */
footer {
    background: var(--bg-darker);
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--primary), var(--cyan), var(--pink), var(--accent));
    border-image-slice: 1;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 700;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    padding-left: 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: inherit;
    font-family: inherit;
    text-align: left;
    width: 100%;
}

.social-link::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s;
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-left: 25px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    color: var(--text-gray);
}

/* Responsive */
@media (max-width: 768px) {
    .glitch {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .timer {
        gap: 1rem;
    }
    
    .timer-item {
        padding: 1rem;
        min-width: 70px;
    }
    
    .timer-value {
        font-size: 2rem;
    }
    
    nav {
        display: none;
    }
    
    .about h2, .nominees h2, .how-to-win h2 {
        font-size: 2rem;
    }
    
    .nominees-grid {
        grid-template-columns: 1fr;
    }
}

