body {
    font-family: 'Poppins', sans-serif;
    background-color: #0c0a09;
    color: #e2e8f0;
}

/* Custom styles for sections */
.expired-codes {
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.3);
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(45, 55, 72, 0.4) 100%);
}

.expired-codes h2 {
    color: #ef4444;
    text-shadow: 0 0 8px rgba(239, 68, 68, 0.5);
}

.how-to-redeem {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(45, 55, 72, 0.4) 100%);
}

.how-to-redeem h2 {
    color: #10b981;
    text-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

.how-to-redeem ol li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 1rem;
}

.how-to-redeem ol li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: rgba(16, 185, 129, 0.3);
    border: 2px solid #10b981;
}

.where-to-find {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(45, 55, 72, 0.4) 100%);
}

.where-to-find h2 {
    color: #3b82f6;
    text-shadow: 0 0 8px rgba(59, 130, 246, 0.5);
}

.where-to-find ul li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 1rem;
}

.where-to-find ul li:before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #3b82f6;
    text-shadow: 0 0 5px rgba(59, 130, 246, 0.7);
}

.game-guide {
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(45, 55, 72, 0.4) 100%);
}

.game-guide h2 {
    color: #8b5cf6;
    text-shadow: 0 0 8px rgba(139, 92, 246, 0.5);
}

/* Animation for section entrance */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.expired-codes, .how-to-redeem, .where-to-find, .game-guide {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.expired-codes { animation-delay: 0.1s; }
.how-to-redeem { animation-delay: 0.2s; }
.where-to-find { animation-delay: 0.3s; }
.game-guide { animation-delay: 0.4s; }

.hero-section {
    background-image: linear-gradient(rgba(12, 10, 9, 0.8), rgba(12, 10, 9, 1)), url('https://r2.flowith.net/files/o/1751193365143-epic_anime_crossover_battle_digital_painting_index_0@1536x1024.png');
    background-size: cover;
    background-position: center;
}

.neon-text {
    text-shadow: 0 0 5px rgba(34, 211, 238, 0.8), 0 0 10px rgba(34, 211, 238, 0.6);
}

.section-card {
    background-color: rgba(17, 24, 39, 0.5);
    border: 1px solid rgba(55, 65, 81, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.section-card:hover {
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.1);
}

.feature-card {
    background-color: rgba(30, 41, 59, 0.5);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgb(55 65 81 / 0.7);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.2);
}


.code-item {
    background-color: #1f2937;
    padding: 1.25rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(217, 70, 239, 0.3);
    box-shadow: 0 4px 6px -1px rgba(217, 70, 239, 0.1), 0 2px 4px -2px rgba(217, 70, 239, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.code-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(217, 70, 239, 0.2), 0 4px 6px -4px rgba(217, 70, 239, 0.2);
}

.copy-code-btn {
    margin-top: 1rem;
    width: 100%;
    background-color: #a21caf;
    color: white;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.copy-code-btn:hover {
    background-color: #be185d;
}

.faq-item {
    background-color: rgba(30, 41, 59, 0.5);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgb(55 65 81 / 0.7);
}

.community-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: bold;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    line-height: 1.75rem;
    transition: all 0.3s ease;
    transform: scale(1);
    box-shadow: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    width: 100%;
}

@media (min-width: 640px) {
    .community-link {
        width: auto;
    }
}

.community-link:hover {
    transform: scale(1.05);
}

.article-card {
    background-color: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(55, 65, 81, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-8px);
    border-color: rgba(56, 189, 248, 0.5);
    box-shadow: 0 0 25px rgba(34, 211, 238, 0.15);
}

.category-tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: #67e8f9;
    transition: all 0.2s ease;
}

.read-more-link:hover {
    color: #a5f3fc;
    gap: 0.5rem;
}
