:root {
    --main-color: #E5BD63;
    --main-bg: #1a1a1a;
    --lighter-bg: #242424;
    --darker-main: #D4A843;
    --text-light: #ffffff;
    --text-gray: #c5c5c5;
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
}

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

html {
    scroll-behavior: smooth;
}

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

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--main-bg);
    border-left: 1px solid var(--lighter-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 6px;
    border: 2px solid var(--main-bg);
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--darker-main);
}

::-webkit-scrollbar-thumb:active {
    background: var(--darker-main);
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--main-color) var(--main-bg);
}

*::-webkit-scrollbar-thumb {
    min-height: 50px;
}

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

.update-banner {
    background: linear-gradient(135deg, rgba(229, 189, 99, 0.95) 0%, rgba(229, 189, 99, 0.9) 100%);
    color: var(--main-bg);
    padding: 1rem 0;
    position: sticky;
    bottom: 0;
    z-index: 1003;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease-out;
}


@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.update-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.update-banner-icon {
    font-size: 1.5rem;
}

.update-banner-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.update-banner-text strong {
    font-size: 1.1rem;
    font-weight: 700;
}

.update-countdown {
    font-size: 0.95rem;
    opacity: 0.95;
    font-weight: 600;
}

.update-banner-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.update-banner-more-btn {
    background: rgba(0, 0, 0, 0.15);
    color: var(--main-bg);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.update-banner-more-btn:hover {
    background: rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.update-banner-close {
    background: transparent;
    border: none;
    color: var(--main-bg);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.update-banner-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .update-banner {
        padding: 0.75rem 0;
    }

    .update-banner-icon {
        font-size: 1.25rem;
    }

    .update-banner-text strong {
        font-size: 1rem;
    }

    .update-countdown {
        font-size: 0.85rem;
    }

    .update-banner-content {
        gap: 0.75rem;
    }
}

.header {
    background-color: var(--lighter-bg);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1001;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
}


.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.header .container {
    max-width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
    width: 100%;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.75rem;
    margin-left: 0;
}

.logo {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--main-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.logo-link:hover .logo-text {
    color: var(--darker-main);
}

.nav {
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--main-color);
    transition: all 0.3s ease;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1.25rem;
    align-items: center;
    margin-left: auto;
    padding: 0;
    flex: 1;
    justify-content: flex-end;
    margin-right: 0;
}

.nav-list li:nth-child(4)::before {
    content: '|';
    color: var(--main-color);
    opacity: 0.4;
    margin-right: 1.25rem;
    margin-left: 0.75rem;
    font-size: 1.5rem;
    font-weight: 300;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.92rem;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    border-radius: 5px;
    border: 1px solid transparent;
    background-color: transparent;
    transition: all 0.2s ease;
}

.nav-link i {
    font-size: 1rem;
    width: 18px;
    text-align: center;
}

.nav-link::after {
    display: none;
}

.nav-link:hover {
    color: var(--main-color);
    background-color: rgba(229, 189, 99, 0.08);
}

.nav-link:focus-visible,
.nav-link-btn:focus-visible,
.nav-link-btn-primary:focus-visible {
    outline: 2px solid rgba(229, 189, 99, 0.8);
    outline-offset: 3px;
}

.nav-link-btn {
    padding: 0.6rem 1.2rem;
    background-color: transparent;
    border: 2px solid rgba(229, 189, 99, 0.3);
    border-radius: 5px;
    transition: all 0.2s ease;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
}

.nav-link-btn::after {
    display: none;
}

.nav-link-btn:hover {
    background-color: rgba(229, 189, 99, 0.08);
    border-color: var(--main-color);
    color: var(--main-color);
}

.nav-link-btn-primary {
    padding: 0.6rem 1.2rem;
    background-color: var(--main-color);
    border: 2px solid var(--main-color);
    border-radius: 5px;
    color: #0a0a0a;
    font-weight: 700;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    letter-spacing: 0.05rem;
    box-shadow: 0 2px 6px rgba(229, 189, 99, 0.2);
    text-transform: uppercase;
}

.nav-link-btn-primary::after {
    display: none;
}

.nav-link-btn-primary:hover {
    background-color: var(--darker-main);
    border-color: var(--darker-main);
    color: #0a0a0a;
    box-shadow: 0 3px 8px rgba(229, 189, 99, 0.3);
}

.nav-link-btn i,
.nav-link-btn-primary i {
    font-size: 1rem;
    width: 18px;
    text-align: center;
}


.hero {
    min-height: 90vh;
    max-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d0d0d 0%, var(--main-bg) 50%, var(--lighter-bg) 100%);
    padding: 3rem 0;
    text-align: center;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(90deg, var(--main-color) 0%, var(--darker-main) 25%, var(--main-color) 50%, var(--darker-main) 75%, var(--main-color) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }

    100% {
        background-position: 0% center;
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2.2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    font-family: 'Oswald', sans-serif;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn i {
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--main-color);
    color: #0a0a0a;
    border-color: var(--main-color);
    box-shadow: 0 2px 8px rgba(229, 189, 99, 0.15);
}

.btn-primary:hover {
    background-color: var(--darker-main);
    border-color: var(--darker-main);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(229, 189, 99, 0.25);
}

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

.btn-secondary:hover {
    background-color: rgba(229, 189, 99, 0.1);
    color: var(--main-color);
    border-color: var(--darker-main);
    transform: translateY(-1px);
}

.section {
    padding: 5rem 0;
    position: relative;
    z-index: 2;
    min-height: 90vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
}

.section:not(:first-child)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--main-color) 20%,
            var(--main-color) 50%,
            var(--main-color) 80%,
            transparent 100%);
    opacity: 0.4;
}

.hero::before {
    display: none;
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
        min-height: unset;
        max-height: unset;
        display: block;
    }
}

.section-title {
    font-size: 2.5rem;
    color: var(--main-color);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.beta-badge {
    display: inline-block;
    background-color: var(--main-color);
    color: var(--main-bg);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    margin-left: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    vertical-align: middle;
}

.about-section {
    background-color: var(--main-bg);
}

.questions-section {
    background-color: var(--lighter-bg);
}

.questions-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-container {
    width: 100%;
    margin-bottom: 3rem;
}

.faq-item {
    background-color: var(--lighter-bg);
    border: 1px solid rgba(229, 189, 99, 0.15);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(229, 189, 99, 0.4);
    box-shadow: 0 2px 8px rgba(229, 189, 99, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--main-color);
}

.faq-question i {
    color: var(--main-color);
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.faq-answer a {
    color: var(--main-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    color: var(--darker-main);
    text-decoration: underline;
}

.faq-answer code {
    background-color: var(--lighter-bg);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: var(--main-color);
    font-size: 0.9rem;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.8;
}

.about-button {
    text-align: center;
    margin-top: 2rem;
}

.community-section {
    background-color: var(--main-bg);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.community-button {
    text-align: center;
    margin-top: 3rem;
}

.community-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background-color: var(--lighter-bg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    border: 1px solid rgba(229, 189, 99, 0.1);
}

.community-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(229, 189, 99, 0.2);
}

.community-item img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.community-caption {
    padding: 1rem;
    background-color: var(--lighter-bg);
    color: var(--text-light);
    font-size: 0.95rem;
    text-align: center;
    border-top: 1px solid rgba(229, 189, 99, 0.1);
    transition: color 0.3s ease;
}

.community-item:hover .community-caption {
    color: var(--main-color);
}

.community-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-gray);
    font-size: 1.2rem;
    padding: 3rem;
    background-color: var(--main-bg);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--main-color);
}

.statistics-section {
    background-color: var(--main-bg);
    min-height: 90vh;
    max-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
}

.statistics-content {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.statistics-info {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.statistics-card {
    background-color: var(--lighter-bg);
    border-radius: var(--radius-lg);
    padding: 2rem 3rem;
    text-align: center;
    border: 2px solid rgba(229, 189, 99, 0.3);
    box-shadow: 0 3px 12px rgba(229, 189, 99, 0.1);
}

.statistics-card-title {
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.statistics-number {
    color: var(--main-color);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.statistics-record {
    color: #FFD56F;
    font-size: 1rem;
    margin-top: 0.1rem;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.players-list-container {
    background-color: var(--lighter-bg);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 2px solid rgba(229, 189, 99, 0.3);
}

.players-list-title {
    color: var(--main-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.players-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.players-list::-webkit-scrollbar {
    width: 8px;
}

.players-list::-webkit-scrollbar-track {
    background: var(--main-bg);
    border-radius: 4px;
}

.players-list::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 4px;
}

.players-list::-webkit-scrollbar-thumb:hover {
    background: var(--darker-main);
}

.player-item {
    background-color: var(--main-bg);
    border-radius: var(--radius-lg);
    padding: 1rem;
    border: 1px solid rgba(229, 189, 99, 0.15);
    transition: all 0.3s ease;
}

.player-item:hover {
    border-color: rgba(229, 189, 99, 0.4);
    box-shadow: 0 3px 10px rgba(229, 189, 99, 0.15);
}

.player-name {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.player-id {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.loading-message,
.error-message {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-gray);
    font-size: 1.2rem;
    padding: 2rem;
}

.error-message {
    color: #ff6b6b;
}

.no-players-message {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    padding: 2rem;
    font-style: italic;
}

.footer {
    background-color: var(--main-bg);
    padding: 3rem 0;
    border-top: 1px solid var(--lighter-bg);
    position: relative;
    z-index: 1;
}

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

.footer-logo {
    height: 100px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-text {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-title {
    color: var(--main-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem 1.5rem;
    max-width: 600px;
}

.footer-links li {
    margin-bottom: 0;
}

.footer-link {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--main-color);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-list {
        position: absolute;
        top: 100%;
        right: 0;
        flex-direction: column;
        background-color: var(--lighter-bg);
        width: 250px;
        padding: 1rem;
        box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.3);
        border-radius: 5px;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        gap: 0;
    }

    .nav-list.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-list li:nth-child(4)::before {
        display: none;
    }

    .nav-link {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 1.2rem 1rem;
        border-bottom: 1px solid var(--main-bg);
        width: 100%;
        font-size: 1.1rem;
    }

    .nav-link-btn,
    .nav-link-btn-primary {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
        padding: 0.8rem 1.5rem;
    }


    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

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

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

    .logo {
        height: 50px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 15px;
    }

    .header .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .logo-text {
        font-size: 1rem;
    }

    .logo-link {
        gap: 0.5rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.theme-animations {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999;
    overflow: hidden;
}

/* Halloween - Pumpkins */
.theme-animations .pumpkin {
    position: absolute;
    font-size: 3.5rem;
    top: -50px;
    animation: fallPumpkin linear infinite;
    color: #FF8C00;
    text-shadow: 0 0 20px rgba(255, 140, 0, 0.8), 0 0 40px rgba(255, 140, 0, 0.4);
}

@keyframes fallPumpkin {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0.6;
    }
}

.theme-animations .pumpkin::before {
    content: '🎃';
    display: block;
}

/* Christmas - Snowflakes */
.theme-animations .snowflake {
    position: absolute;
    font-size: 2.5rem;
    top: -50px;
    animation: fallSnowflake linear infinite;
    color: #FFFFFF;
    opacity: 0.8;
}

@keyframes fallSnowflake {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.8;
    }

    100% {
        transform: translateY(100vh) translateX(50px) rotate(360deg);
        opacity: 0.5;
    }
}

.theme-animations .snowflake::before {
    content: '❄';
    display: block;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

/* Valentine - Flowers */
.theme-animations .flower {
    position: absolute;
    font-size: 3rem;
    top: -50px;
    animation: fallFlower linear infinite;
    color: #FF69B4;
    text-shadow: 0 0 15px rgba(255, 105, 180, 0.8), 0 0 30px rgba(255, 105, 180, 0.4);
}

@keyframes fallFlower {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translateY(50vh) translateX(20px) rotate(180deg) scale(1.1);
        opacity: 0.6;
    }

    100% {
        transform: translateY(100vh) translateX(-20px) rotate(360deg) scale(0.9);
        opacity: 0.5;
    }
}

.theme-animations .flower::before {
    content: '🌸';
    display: block;
}

.theme-halloween,
[data-theme="halloween"] {
    --main-color: #FF8C00;
    --darker-main: #FF6600;
    --main-bg: #1A0D0D;
    --lighter-bg: #2D1818;
}

.theme-animations .pumpkin {
    position: absolute;
    font-size: 2rem;
    top: -50px;
    animation: fallPumpkin linear infinite;
    color: #FF8C00;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
}

@keyframes fallPumpkin {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0.3;
    }
}

.theme-animations .pumpkin::before {
    content: '🎃';
    display: block;
}

.theme-halloween .hero,
[data-theme="halloween"] .hero {
    background: linear-gradient(135deg, var(--main-bg) 0%, var(--lighter-bg) 50%, #1A0D0D 100%);
    position: relative;
}

.theme-halloween .hero::before,
[data-theme="halloween"] .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 140, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 102, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.theme-christmas,
[data-theme="christmas"] {
    --main-color: #FFD700;
    --darker-main: #FFA500;
    --main-bg: #0D1B0D;
    --lighter-bg: #1A2E1A;
}

.theme-animations .snowflake {
    position: absolute;
    font-size: 1.5rem;
    top: -50px;
    animation: fallSnowflake linear infinite;
    color: #FFFFFF;
    opacity: 0.8;
}

@keyframes fallSnowflake {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.8;
    }

    100% {
        transform: translateY(100vh) translateX(50px) rotate(360deg);
        opacity: 0.2;
    }
}

.theme-animations .snowflake::before {
    content: '❄';
    display: block;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.theme-christmas .hero,
[data-theme="christmas"] .hero {
    background: linear-gradient(135deg, var(--main-bg) 0%, var(--lighter-bg) 50%, #0D1B0D 100%);
    position: relative;
}

.theme-christmas .hero::before,
[data-theme="christmas"] .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 165, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.theme-valentine,
[data-theme="valentine"] {
    --main-color: #FF69B4;
    --darker-main: #FF1493;
    --main-bg: #1E0D1E;
    --lighter-bg: #2D182D;
}

.theme-animations .heart {
    position: absolute;
    font-size: 1.8rem;
    top: -50px;
    animation: fallHeart linear infinite;
    color: #FF69B4;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}

@keyframes fallHeart {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.9;
    }

    50% {
        transform: translateY(50vh) translateX(30px) scale(1.2);
        opacity: 0.7;
    }

    100% {
        transform: translateY(100vh) translateX(-30px) scale(0.8);
        opacity: 0.3;
    }
}

.theme-animations .heart::before {
    content: '❤️';
    display: block;
}

.theme-valentine .hero,
[data-theme="valentine"] .hero {
    background: linear-gradient(135deg, var(--main-bg) 0%, var(--lighter-bg) 50%, #1E0D1E 100%);
    position: relative;
}

.theme-valentine .hero::before,
[data-theme="valentine"] .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 30% 40%, rgba(255, 105, 180, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 20, 147, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.credits {
    background-color: var(--main-bg);
    padding: 1.5rem 0;
    border-top: 1px solid var(--lighter-bg);
    text-align: center;
    position: relative;
    z-index: 2;
}

.credits-text {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin: 0;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: auto;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 1rem;
    text-align: center;
    padding: 0.5rem 1rem;
    background-color: rgba(30, 30, 30, 0.8);
    border-radius: 5px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: var(--text-light);
    font-size: 3rem;
    font-weight: 300;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    z-index: 10000;
    line-height: 1;
    padding: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    color: var(--main-color);
    transform: scale(1.2);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 3rem;
    font-weight: 300;
    background: rgba(30, 30, 30, 0.7);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    padding: 1rem 1.5rem;
    border-radius: 5px;
    user-select: none;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--main-color);
    background: rgba(30, 30, 30, 0.9);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 2.5rem;
        width: 40px;
        height: 40px;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 2rem;
        padding: 0.8rem 1rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-content {
        max-width: 95%;
    }

    .lightbox-caption {
        font-size: 1rem;
    }
}

.hero-logo {
    display: block;
    height: 300px;
    width: auto;
    margin: 0 auto 0.5rem auto;
}

@media (max-width: 480px) {
    .hero-logo {
        height: 80px;
    }
}

.welcome-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(30, 30, 30, 0.98);
    z-index: 15000;
    align-items: center;
    justify-content: center;
}

.welcome-modal.active {
    display: flex;
}

.welcome-modal-content {
    background: var(--lighter-bg);
    padding: 3rem 2rem 2rem 2rem;
    border-radius: calc(var(--radius-lg) + 4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
    text-align: center;
    border: 2px solid rgba(229, 189, 99, 0.4);
    max-width: 90vw;
    min-width: 320px;
    animation: fadeIn 0.3s;
}

.welcome-modal-content h2 {
    font-size: 2rem;
    color: var(--main-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.welcome-modal-content p {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.welcome-modal-btn {
    display: inline-block;
    padding: 0.85rem 2.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0a0a0a;
    background: var(--main-color);
    border: 2px solid var(--main-color);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(229, 189, 99, 0.15);
    letter-spacing: 0.5px;
    cursor: pointer;
}

.welcome-modal-btn:hover {
    background: var(--darker-main);
    border-color: var(--darker-main);
    color: #0a0a0a;
    box-shadow: 0 4px 12px rgba(229, 189, 99, 0.25);
    transform: translateY(-1px);
}

@media (max-width: 500px) {
    .welcome-modal-content {
        padding: 2rem 0.8rem;
        min-width: unset;
    }

    .welcome-modal-content h2 {
        font-size: 1.3rem;
    }

    .welcome-modal-content p {
        font-size: 1.05rem;
    }
}

#lightbox-image {
    width: auto;
    max-width: 80vw;
    height: auto;
    max-height: 80vh;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: #111;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

@media (max-width: 600px) {
    #lightbox-image {
        max-width: 96vw;
        max-height: 54vw;
    }
}

.stats-btn-wrapper {
    text-align: center;
    margin-top: 2rem;
}

.stats-error {
    text-align: center;
    margin: 2rem auto 1.5rem auto;
    color: #fff;
    background: #c0392b;
    border-radius: 6px;
    padding: 1rem 1rem .85rem 1rem;
    font-size: 1.09rem;
    max-width: 460px;
    box-shadow: 0 2px 8px #0d0d0d44;
}

@media (max-width: 600px) {
    .stats-error {
        font-size: 0.98rem;
        padding: .8rem .5rem .7rem .5rem;
    }
}

.stats-btn i {
    animation: none !important;
    transition: none !important;
    color: inherit !important;
}

/* Development Message */
.development-message {
    text-align: center;
    padding: 4rem 2rem;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.development-icon {
    font-size: 5rem;
    color: var(--main-color);
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.development-text {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 1.5rem 0 2.5rem 0;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .development-icon {
        font-size: 3.5rem;
    }

    .development-text {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* 404 Page */
.error-404 {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.error-404-number {
    font-size: 8rem;
    font-weight: 700;
    color: var(--main-color);
    margin: 0;
    line-height: 1;
    text-shadow: 0 0 30px rgba(229, 189, 99, 0.3);
}

.error-404-title {
    font-size: 2.5rem;
    color: var(--text-light);
    margin: 1rem 0;
    font-weight: 700;
}

.error-404-text {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 1.5rem auto 2.5rem auto;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .error-404-number {
        font-size: 5rem;
    }

    .error-404-title {
        font-size: 2rem;
    }

    .error-404-text {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* Update Details Page */
.update-details-section {
    min-height: 90vh;
    max-height: 100vh;
    padding: 5rem 0;
}

.update-details-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--lighter-bg);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.update-details-title {
    font-size: 2.5rem;
    color: var(--main-color);
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.update-details-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--main-bg);
}

.update-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.update-info-item i {
    color: var(--main-color);
    font-size: 1.2rem;
    width: 24px;
}

.update-details-description {
    margin-bottom: 2.5rem;
}

.update-details-description h2 {
    color: var(--main-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.update-details-description p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.update-details-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .update-details-content {
        padding: 2rem 1.5rem;
    }

    .update-details-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .update-info-item {
        font-size: 1rem;
    }

    .update-details-actions {
        flex-direction: column;
    }

    .update-details-actions .btn {
        width: 100%;
        justify-content: center;
    }
}