* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-yellow: #eab308;
    --dark-yellow: #1a1505;
    --darker-bg: #0d0a02;
    --text-white: #ffffff;
    --text-gray: #9ca3af;
}


:root.light-mode {
    --primary-yellow: #ca8a04;
    --dark-yellow: #fef9c3;
    --darker-bg: #fefce8;
    --text-white: #422006;
    --text-gray: #374151;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--darker-bg);
    color: var(--text-white);
    min-height: 100vh;
    overflow-x: hidden;
    transition: background 0.3s ease, color 0.3s ease;
}

.background-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/background.png') center center / cover no-repeat;
    z-index: -2;
    transition: opacity 0.3s ease;
}

:root.light-mode .background-layer {
    opacity: 0.3;
}

.gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at top center, rgba(234, 179, 8, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(234, 179, 8, 0.05) 0%, transparent 40%),
        linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
    z-index: -1;
    transition: background 0.3s ease;
}

:root.light-mode .gradient-overlay {
    background: 
        radial-gradient(ellipse at top center, rgba(234, 179, 8, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(234, 179, 8, 0.1) 0%, transparent 40%),
        linear-gradient(to bottom, rgba(255,255,255,0.8), rgba(255,255,255,0.95));
}


nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 40px;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(5, 13, 5, 0.95) 0%, transparent 100%);
    transition: background 0.3s ease;
}

:root.light-mode nav {
    background: linear-gradient(to bottom, rgba(240, 253, 244, 0.98) 0%, transparent 100%);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1400px;
    width: 100%;
    justify-content: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-yellow);
}

.logo {
    height: 70px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}


.nav-options {
    position: absolute;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-select {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-gray);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 32px;
}

.nav-select:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(234, 179, 8, 0.4);
    color: var(--text-white);
}

.nav-select:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 2px rgba(234, 179, 8, 0.2);
}

.nav-select option {
    background: #1a1a1a;
    color: #ffffff;
    padding: 10px;
}

:root.light-mode .nav-select {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.15);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23374151' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

:root.light-mode .nav-select:hover {
    background: rgba(0, 0, 0, 0.08);
}

:root.light-mode .nav-select option {
    background: #ffffff;
    color: #422006;
}


.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 220px;
    overflow: hidden;
}


.server-status {
    position: absolute;
    left: 55%;
    top: 45%;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(234, 179, 8, 0.15);
    border: 1px solid rgba(234, 179, 8, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    animation: pulse-glow 2s infinite ease-in-out;
    z-index: 10;
}


.discord-status {
    position: absolute;
    left: 55%;
    top: 55%;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(88, 101, 242, 0.15);
    border: 1px solid rgba(88, 101, 242, 0.3);
    padding: 10px 55px;
    border-radius: 50px;
    animation: pulse-glow-discord 2s infinite ease-in-out;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}

.discord-status:hover {
    background: rgba(88, 101, 242, 0.25);
    transform: translateY(-2px);
}

@keyframes pulse-glow-discord {
    0%, 100% { box-shadow: 0 0 20px rgba(88, 101, 242, 0.2); }
    50% { box-shadow: 0 0 30px rgba(88, 101, 242, 0.4); }
}

.discord-icon {
    width: 28px;
    height: 28px;
    filter: brightness(0) saturate(100%) invert(45%) sepia(98%) saturate(2358%) hue-rotate(222deg) brightness(101%) contrast(91%);
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(234, 179, 8, 0.2); }
    50% { box-shadow: 0 0 30px rgba(234, 179, 8, 0.4); }
}

.player-heads {
    display: flex;
}

.player-head {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    border: 2px solid var(--primary-yellow);
    margin-left: -6px;
}

.player-head:first-child {
    margin-left: 0;
}

.status-text {
    display: flex;
    flex-direction: column;
}

.status-title {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-white);
}

.status-count {
    font-size: 12px;
    color: var(--text-gray);
}


.hero-text {
    text-align: center;
    z-index: 10;
    position: relative;
}

.hero-title {
    font-size: clamp(24px, 3.5vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 14px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--primary-yellow);
    font-size: 12px;
    font-weight: 500;
}


.left-content {
    position: absolute;
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    max-width: 500px;
}

.main-title {
    font-family: 'Press Start 2P', cursive;
    font-size: clamp(20px, 2.5vw, 32px);
    color: var(--text-white);
    line-height: 1.4;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.main-title:first-child {
    margin-bottom: 5px;
}

.description {
    margin-top: 25px;
    margin-bottom: 30px;
}

.description p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-discord {
    background: #5865F2;
    color: white;
    box-shadow: 0 4px 25px rgba(88, 101, 242, 0.4);
}

.btn-discord:hover {
    background: #4752c4;
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(88, 101, 242, 0.5);
}

.btn-discord .btn-icon {
    filter: brightness(0) invert(1);
}

.btn-copy {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

:root.light-mode .btn-copy {
    color: var(--text-white);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.btn-copy:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.5);
}

:root.light-mode .btn-copy:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.3);
}

.btn-copy .btn-icon {
    width: 20px;
    height: 20px;
}

.dashed-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6));
}

.dashed-line.right {
    background: linear-gradient(90deg, rgba(255,255,255,0.6), transparent);
}


.main-content {
    position: relative;
    width: 100%;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: -30px;
}


.character-wrapper {
    position: absolute;
    top: 50%;
    left: 80%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.character-render {
    width: 500px;
    max-width: 90vw;
    height: auto;
    filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.7));
    mask-image: linear-gradient(to bottom, black 0%, black 30%, transparent 70%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 30%, transparent 70%);
}


.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-yellow);
    color: var(--darker-bg);
    box-shadow: 0 4px 25px rgba(234, 179, 8, 0.4);
}

.btn-primary:hover {
    background: #ca8a04;
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(234, 179, 8, 0.5);
}

.btn-secondary {
    background: rgba(60, 60, 60, 0.7);
    color: var(--text-white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(80, 80, 80, 0.8);
    transform: translateY(-3px);
}

.btn-icon {
    width: 24px;
    height: 24px;
}


.left-buttons {
    position: absolute;
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
}


.right-buttons {
    position: absolute;
    right: 8%;
    top: 40%;
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

.discord-btn {
    display: flex;
    align-items: center;
    gap: 12px;
}

.discord-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.discord-label {
    font-size: 11px;
    opacity: 0.8;
}

.discord-count {
    font-size: 15px;
    font-weight: 700;
}


.arrow-line {
    position: absolute;
    z-index: 15;
    pointer-events: none;
}

.arrow-left {
    left: 18%;
    top: 52%;
    width: 120px;
}

.arrow-right-top {
    right: 22%;
    top: 42%;
    width: 100px;
}

.arrow-right-bottom {
    right: 18%;
    top: 58%;
    width: 80px;
}


.feature-icons {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 20;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(40, 40, 40, 0.6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.feature-icon:hover {
    background: rgba(234, 179, 8, 0.15);
    border-color: rgba(234, 179, 8, 0.4);
    transform: translateY(-5px);
}

.feature-icon img {
    width: 34px;
    height: 34px;
}


.game-modes-section {
    position: relative;
    padding: 20px 20px 100px;
    margin-top: -80px;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.minecraft-title {
    font-family: 'Press Start 2P', cursive;
    font-size: clamp(24px, 4vw, 48px);
    color: var(--primary-yellow);
    text-shadow: 
        0 4px 0 #854d0e,
        0 6px 20px rgba(234, 179, 8, 0.5),
        0 0 40px rgba(234, 179, 8, 0.3);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: var(--text-gray);
    font-weight: 400;
}

.banners-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.banner-wrapper {
    position: relative;
}

.banner-wrapper.revealed:hover {
    transform: translateY(-15px) scale(1.02);
    transition: transform 0.4s ease;
}

.banner-link {
    display: block;
    position: relative;
}

.banner-image {
    width: 320px;
    max-width: 90vw;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    transition: filter 0.3s ease;
}

.banner-wrapper.revealed:hover .banner-image {
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.7));
}


.banner-wrapper:nth-child(1).revealed:hover .banner-image {
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 30px rgba(59, 130, 246, 0.4));
}

.banner-wrapper:nth-child(2).revealed:hover .banner-image {
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 30px rgba(249, 115, 22, 0.4));
}

.banner-wrapper:nth-child(3).revealed:hover .banner-image {
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 30px rgba(239, 68, 68, 0.4));
}


.scroll-reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal.hidden {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.4s ease-in, transform 0.4s ease-in;
}


.banner-wrapper.scroll-reveal {
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.banner-wrapper.scroll-reveal.hidden {
    transition: opacity 0.3s ease-in, transform 0.3s ease-in;
}

.banner-wrapper:nth-child(1) {
    transition-delay: 0s;
}

.banner-wrapper:nth-child(2) {
    transition-delay: 0.1s;
}

.banner-wrapper:nth-child(3) {
    transition-delay: 0.2s;
}

.banner-wrapper.hidden:nth-child(1) {
    transition-delay: 0.2s;
}

.banner-wrapper.hidden:nth-child(2) {
    transition-delay: 0.1s;
}

.banner-wrapper.hidden:nth-child(3) {
    transition-delay: 0s;
}


.section-header .scroll-reveal:nth-child(1) {
    transition-delay: 0s;
}

.section-header .scroll-reveal:nth-child(2) {
    transition-delay: 0.1s;
}

.section-header .scroll-reveal.hidden:nth-child(1) {
    transition-delay: 0.1s;
}

.section-header .scroll-reveal.hidden:nth-child(2) {
    transition-delay: 0s;
}

@media (max-width: 1100px) {
    .banners-container {
        gap: 20px;
    }

    .banner-image {
        width: 280px;
    }
}

@media (max-width: 768px) {
    .game-modes-section {
        padding: 40px 15px 80px;
        margin-top: -40px;
    }

    .banner-image {
        width: 250px;
    }

    .section-subtitle {
        font-size: 14px;
        padding: 0 20px;
    }
}

@media (max-width: 500px) {
    .banners-container {
        flex-direction: column;
        align-items: center;
    }

    .banner-image {
        width: 280px;
    }

    .banner-wrapper:nth-child(1),
    .banner-wrapper:nth-child(2),
    .banner-wrapper:nth-child(3) {
        transition-delay: 0.1s;
    }
}


.leaderboard-section {
    position: relative;
    padding: 80px 20px 100px;
    z-index: 10;
}

.leaderboard-container {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: nowrap;
}

.leaderboard-column {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 25px 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 0;
}

:root.light-mode .leaderboard-column {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.leaderboard-column:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(234, 179, 8, 0.2);
    transform: translateY(-5px);
}

:root.light-mode .leaderboard-column:hover {
    background: rgba(0, 0, 0, 0.05);
}

.leaderboard-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 8px;
    color: var(--text-white);
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.5;
}

.leaderboard-entries {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.leaderboard-entry {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    flex-wrap: nowrap;
    overflow: hidden;
}

:root.light-mode .leaderboard-entry {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.leaderboard-entry:hover {
    transform: translateY(-3px);
}

.leaderboard-entry.gold {
    border-color: rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.leaderboard-entry.gold:hover {
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.2);
}

.leaderboard-entry.silver {
    border-color: rgba(192, 192, 192, 0.4);
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.leaderboard-entry.silver:hover {
    box-shadow: 0 5px 25px rgba(192, 192, 192, 0.2);
}

.leaderboard-entry.bronze {
    border-color: rgba(205, 127, 50, 0.4);
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.leaderboard-entry.bronze:hover {
    box-shadow: 0 5px 25px rgba(205, 127, 50, 0.2);
}

.player-avatar {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    flex-shrink: 0;
}

.leaderboard-entry.gold .player-avatar {
    border: 2px solid #FFD700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.leaderboard-entry.silver .player-avatar {
    border: 2px solid #C0C0C0;
    box-shadow: 0 0 10px rgba(192, 192, 192, 0.4);
}

.leaderboard-entry.bronze .player-avatar {
    border: 2px solid #CD7F32;
    box-shadow: 0 0 10px rgba(205, 127, 50, 0.4);
}

.leaderboard-entry .position {
    font-family: 'Press Start 2P', cursive;
    font-size: 6px;
    color: var(--text-gray);
    flex-shrink: 0;
    white-space: nowrap;
}

.leaderboard-entry.gold .position {
    color: #FFD700;
}

.leaderboard-entry.silver .position {
    color: #C0C0C0;
}

.leaderboard-entry.bronze .position {
    color: #CD7F32;
}

.leaderboard-entry .player-name {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
}

.leaderboard-entry .player-value {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: var(--primary-yellow);
    white-space: nowrap;
    flex-shrink: 0;
}


.leaderboard-column.scroll-reveal:nth-child(1) { transition-delay: 0s; }
.leaderboard-column.scroll-reveal:nth-child(2) { transition-delay: 0.1s; }
.leaderboard-column.scroll-reveal:nth-child(3) { transition-delay: 0.2s; }
.leaderboard-column.scroll-reveal:nth-child(4) { transition-delay: 0.3s; }
.leaderboard-column.scroll-reveal:nth-child(5) { transition-delay: 0.4s; }

.leaderboard-column.scroll-reveal.hidden:nth-child(1) { transition-delay: 0.4s; }
.leaderboard-column.scroll-reveal.hidden:nth-child(2) { transition-delay: 0.3s; }
.leaderboard-column.scroll-reveal.hidden:nth-child(3) { transition-delay: 0.2s; }
.leaderboard-column.scroll-reveal.hidden:nth-child(4) { transition-delay: 0.1s; }
.leaderboard-column.scroll-reveal.hidden:nth-child(5) { transition-delay: 0s; }

@media (max-width: 1400px) {
    .leaderboard-container {
        gap: 10px;
        padding: 0 10px;
    }

    .leaderboard-column {
        padding: 20px 10px;
    }

    .leaderboard-title {
        font-size: 7px;
    }

    .leaderboard-entry {
        padding: 8px;
        gap: 5px;
    }

    .leaderboard-entry .position {
        font-size: 6px;
    }

    .leaderboard-entry .player-name {
        font-size: 10px;
    }

    .leaderboard-entry .player-value {
        font-size: 9px;
    }

    .player-avatar {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 1100px) {
    .leaderboard-container {
        flex-wrap: wrap;
        gap: 15px;
    }

    .leaderboard-column {
        flex: 0 0 calc(33.333% - 10px);
        min-width: calc(33.333% - 10px);
    }
}

@media (max-width: 768px) {
    .leaderboard-section {
        padding: 60px 15px 80px;
    }

    .leaderboard-column {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
        padding: 20px 12px;
    }

    .leaderboard-title {
        font-size: 7px;
    }

    .leaderboard-entry {
        padding: 8px 10px;
        gap: 6px;
    }

    .leaderboard-entry .position {
        font-size: 6px;
    }

    .leaderboard-entry .player-name {
        font-size: 10px;
    }

    .leaderboard-entry .player-value {
        font-size: 9px;
    }
}

@media (max-width: 500px) {
    .leaderboard-column {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .player-avatar {
        width: 24px;
        height: 24px;
    }

    .leaderboard-entry .position {
        font-size: 7px;
    }

    .leaderboard-entry .player-name {
        font-size: 11px;
    }

    .leaderboard-entry .player-value {
        font-size: 10px;
    }
}


.team-section {
    position: relative;
    padding: 80px 20px 100px;
    z-index: 10;
}

.team-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

:root.light-mode .team-member {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.team-member:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(234, 179, 8, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

:root.light-mode .team-member:hover {
    background: rgba(0, 0, 0, 0.05);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    border: 3px solid var(--primary-yellow);
    box-shadow: 0 0 20px rgba(234, 179, 8, 0.4);
    transition: all 0.3s ease;
}

.team-member:hover .team-avatar {
    box-shadow: 0 0 30px rgba(234, 179, 8, 0.6);
    transform: scale(1.05);
}

.team-name {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
}

.team-rank {
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    letter-spacing: 1px;
}


.team-member.scroll-reveal:nth-child(1) { transition-delay: 0s; }
.team-member.scroll-reveal:nth-child(2) { transition-delay: 0.15s; }
.team-member.scroll-reveal:nth-child(3) { transition-delay: 0.3s; }

.team-member.scroll-reveal.hidden:nth-child(1) { transition-delay: 0.3s; }
.team-member.scroll-reveal.hidden:nth-child(2) { transition-delay: 0.15s; }
.team-member.scroll-reveal.hidden:nth-child(3) { transition-delay: 0s; }

@media (max-width: 768px) {
    .team-section {
        padding: 60px 15px 80px;
    }

    .team-container {
        gap: 30px;
    }

    .team-member {
        padding: 25px 35px;
    }

    .team-avatar {
        width: 70px;
        height: 70px;
    }

    .team-name {
        font-size: 14px;
    }

    .team-rank {
        font-size: 8px;
    }
}

@media (max-width: 500px) {
    .team-container {
        gap: 20px;
    }

    .team-member {
        padding: 20px 30px;
        width: 100%;
        max-width: 250px;
    }
}


.discord-section {
    position: relative;
    padding: 30px 20px 60px;
    z-index: 10;
}

.discord-banner {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #5865F2 0%, #4752c4 100%);
    border-radius: 18px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(88, 101, 242, 0.25);
}

.discord-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.discord-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.discord-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.discord-description {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    line-height: 1.5;
}

.discord-join-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #5865F2;
    padding: 10px 22px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.discord-join-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.discord-btn-icon {
    width: 18px;
    height: 18px;
}

.discord-mascot {
    position: relative;
    z-index: 2;
}

.wumpus-image {
    width: 130px;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.discord-banner:hover .wumpus-image {
    transform: translateY(-8px) rotate(5deg);
}

@media (max-width: 768px) {
    .discord-banner {
        flex-direction: column;
        text-align: center;
        padding: 25px 25px;
    }

    .discord-content-wrapper {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .wumpus-image {
        width: 100px;
    }
}

@media (max-width: 500px) {
    .discord-section {
        padding: 20px 15px 50px;
    }

    .discord-banner {
        padding: 20px 18px;
    }

    .discord-title {
        font-size: 16px;
    }

    .discord-description {
        font-size: 12px;
    }

    .discord-join-btn {
        padding: 8px 18px;
        font-size: 11px;
    }

    .wumpus-image {
        width: 80px;
    }
}


.site-footer {
    position: relative;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 30px;
    margin-top: 20px;
}

:root.light-mode .site-footer {
    background: rgba(0, 0, 0, 0.05);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer-left,
.footer-right {
    flex: 1;
}

.footer-left {
    text-align: left;
}

.footer-right {
    text-align: right;
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-logo {
    height: 50px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-tagline {
    font-family: 'Press Start 2P', cursive;
    font-size: 8px;
    color: var(--primary-yellow);
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(234, 179, 8, 0.4);
}

.footer-disclaimer {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    color: var(--text-gray);
    line-height: 1.5;
    max-width: 300px;
}

.footer-info {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        text-align: center;
    }

    .footer-disclaimer {
        max-width: 100%;
    }

    .footer-center {
        order: -1;
    }
}

@media (max-width: 500px) {
    .site-footer {
        padding: 30px 20px;
    }

    .footer-logo {
        height: 40px;
    }

    .footer-tagline {
        font-size: 7px;
    }

    .footer-disclaimer,
    .footer-info {
        font-size: 10px;
    }
}


.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--primary-yellow);
    color: var(--darker-bg);
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}


@media (max-width: 1400px) {
    .character-render {
        width: 600px;
    }
    .left-buttons { left: 5%; }
    .right-buttons { right: 5%; }
    .arrow-left { left: 14%; }
    .arrow-right-top { right: 18%; }
    .arrow-right-bottom { right: 14%; }
}

@media (max-width: 1100px) {
    .left-buttons, .right-buttons {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        transform: none;
    }

    .main-content {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .character-wrapper {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
    }

    .character-render {
        width: 500px;
    }

    .buttons-mobile {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
        margin-top: 20px;
    }

    .right-buttons {
        flex-direction: row;
        align-items: center;
    }

    .arrow-line {
        display: none;
    }

    .nav-options {
        right: 20px;
        gap: 8px;
    }

    .nav-select {
        padding: 6px 10px;
        font-size: 11px;
        padding-right: 28px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 10px 15px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 12px;
    }

    .logo {
        height: 50px;
    }

    .hero-section {
        padding-top: 100px;
    }

    .hero-title {
        font-size: 28px;
        padding: 0 15px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .character-render {
        width: 350px;
    }

    .feature-icons {
        position: relative;
        bottom: auto;
        margin-top: 20px;
    }

    .smoke-effect {
        width: 80px;
    }

    .nav-options {
        right: 15px;
    }
}

@media (max-width: 500px) {
    .nav-links {
        display: none;
    }

    .character-render {
        width: 280px;
    }

    .nav-options {
        gap: 6px;
    }

    .nav-select {
        padding: 5px 8px;
        font-size: 10px;
        padding-right: 24px;
    }
}

        .checkout.checkout-container {

            position: relative;
            z-index: 10;
            padding: 140px 40px 60px;
            max-width: 900px;
            margin: 0 auto;
        }
        .checkout.checkout-header {

            text-align: center;
            margin-bottom: 40px;
        }
        .checkout.checkout-main-title {

            font-family: 'Press Start 2P', cursive;
            font-size: clamp(20px, 4vw, 32px);
            color: var(--text-white);
            margin-bottom: 20px;
            text-shadow: 0 0 20px rgba(234, 179, 8, 0.3);
            line-height: 1.4;
        }
        .checkout.checkout-subtitle {

            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            color: var(--text-gray);
            margin-bottom: 10px;
        }
        .checkout.checkout-info {

            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            color: var(--primary-yellow);
            margin-bottom: 10px;
        }
        .checkout.transaction-id {

            font-family: 'Poppins', sans-serif;
            font-size: 12px;
            color: var(--text-gray);
            opacity: 0.6;
        }
        .checkout.checkout-form-container {

            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 30px;
        }
        .checkout.form-section {

            margin-bottom: 30px;
        }
        .checkout.form-section-title {

            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-white);
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .checkout.form-row {

            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }
        .checkout.form-group {

            margin-bottom: 20px;
        }
        .checkout.form-label {

            display: block;
            font-family: 'Poppins', sans-serif;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-gray);
            margin-bottom: 8px;
        }
        .checkout.form-input {

            width: 100%;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(234, 179, 8, 0.2);
            border-radius: 10px;
            padding: 14px 16px;
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            color: var(--text-white);
            transition: all 0.3s ease;
        }
        .checkout.form-input:focus {

            outline: none;
            border-color: var(--primary-yellow);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.1);
        }
        .checkout.form-input::placeholder {

            color: rgba(255, 255, 255, 0.3);
        }
        .checkout.form-input.checkout.with-icon {

            padding-left: 45px;
        }
        .checkout.input-wrapper {

            position: relative;
        }
        .checkout.input-icon {

            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            opacity: 0.5;
        }
        .checkout.checkbox-group {

            margin-bottom: 15px;
        }
        .checkout.checkbox-wrapper {

            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 15px;
            background: rgba(234, 179, 8, 0.05);
            border: 1px solid rgba(234, 179, 8, 0.15);
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .checkout.checkbox-wrapper:hover {

            background: rgba(234, 179, 8, 0.08);
            border-color: rgba(234, 179, 8, 0.3);
        }
        .checkout.checkbox-wrapper input[type="checkbox"] {

            width: 20px;
            height: 20px;
            cursor: pointer;
            margin-top: 2px;
            accent-color: var(--primary-yellow);
        }
        .checkout.checkbox-label {

            font-family: 'Poppins', sans-serif;
            font-size: 12px;
            color: var(--text-gray);
            line-height: 1.5;
            cursor: pointer;
            flex: 1;
        }
        .checkout.checkbox-label a {

            color: var(--primary-yellow);
            text-decoration: none;
            font-weight: 600;
        }
        .checkout.checkbox-label a:hover {

            text-decoration: underline;
        }
        .checkout.payment-methods {

            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 25px;
        }
        .checkout.payment-method {

            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(234, 179, 8, 0.2);
            border-radius: 12px;
            padding: 20px 15px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-white);
        }
        .checkout.payment-method:hover {

            border-color: rgba(234, 179, 8, 0.5);
            background: rgba(234, 179, 8, 0.08);
            transform: translateY(-2px);
        }
        .checkout.payment-method.checkout.selected {

            border-color: var(--primary-yellow);
            background: rgba(234, 179, 8, 0.15);
            box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.1);
        }
        .checkout.submit-btn {

            width: 100%;
            background: var(--primary-yellow);
            color: #000;
            border: none;
            padding: 18px;
            border-radius: 12px;
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .checkout.submit-btn:hover:not(:disabled) {

            transform: scale(1.02);
            box-shadow: 0 8px 25px rgba(234, 179, 8, 0.4);
        }
        .checkout.submit-btn:disabled {

            opacity: 0.5;
            cursor: not-allowed;
        }
        .checkout.checkout-footer {

            text-align: center;
            padding: 30px 0;
        }
        .checkout.checkout-footer-text {

            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            color: var(--text-gray);
        }
        @media (max-width: 768px) {

        .checkout.checkout-container {

                padding: 120px 20px 40px;
            }
        .checkout.checkout-form-container {

                padding: 25px;
            }
        .checkout.form-row {

                grid-template-columns: 1fr;
            }
        .checkout.payment-methods {

                grid-template-columns: 1fr;
            }
        }
        :root.light-mode .checkout-form-container {

            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(0, 0, 0, 0.08);
        }
        :root.light-mode .form-input {

            background: rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(234, 179, 8, 0.3);
            color: #000;
        }
        :root.light-mode .checkbox-wrapper {

            background: rgba(234, 179, 8, 0.08);
            border: 1px solid rgba(234, 179, 8, 0.2);
        }
        :root.light-mode .payment-method {

            background: rgba(0, 0, 0, 0.03);
            border: 2px solid rgba(234, 179, 8, 0.3);
        }
        
        .server-grid {

            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
            margin-top: 15px;
        }
        .checkout.server-option {

            background: rgba(255, 255, 255, 0.03);
            border: 2px solid rgba(234, 179, 8, 0.2);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .checkout.server-option:hover {

            background: rgba(234, 179, 8, 0.05);
            border-color: rgba(234, 179, 8, 0.5);
            transform: translateY(-2px);
        }
        .checkout.server-option.checkout.selected {

            background: rgba(234, 179, 8, 0.1);
            border-color: #eab308;
            box-shadow: 0 0 20px rgba(234, 179, 8, 0.3);
        }
        .checkout.server-icon {

            display: none;
        }
        .checkout.server-name {

            color: #fff;
            font-weight: 600;
            font-size: 24px;
            font-family: 'Press Start 2P', cursive;
            line-height: 1.6;
            text-align: center;
        }
        .checkout.server-option.checkout.selected .checkout.server-name {

            color: #eab308;
        }




.shopsystem.shop-section {

    position: relative;
    z-index: 10;
    padding: 140px 40px 60px;
    max-width: 1400px;
    margin: 0 auto;
}
.shopsystem.shop-header {

    text-align: center;
    margin-bottom: 50px;
}
.shopsystem.shop-title {

    font-family: 'Press Start 2P', cursive;
    font-size: clamp(18px, 3vw, 28px);
    color: var(--text-white);
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(234, 179, 8, 0.3);
}
.shopsystem.shop-subtitle {

    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--text-gray);
}


.shopsystem.products-grid {

    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}
.shopsystem.product-card {

    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.shopsystem.product-card::before {

    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-yellow), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.shopsystem.product-card:hover {

    transform: translateY(-5px);
    border-color: rgba(234, 179, 8, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}
.shopsystem.product-card:hover::before {

    opacity: 1;
}
.shopsystem.product-badge {

    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-yellow);
    color: #000;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.shopsystem.product-badge.shopsystem.bonus {

    background: #22c55e;
    color: #fff;
}
.shopsystem.product-icon {

    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(234, 179, 8, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(234, 179, 8, 0.2);
}
.shopsystem.product-icon img {

    width: 50px;
    height: 50px;
    object-fit: contain;
}
.shopsystem.product-name {

    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 10px;
}
.shopsystem.product-description {

    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: var(--text-gray);
    text-align: center;
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 80px;
}
.shopsystem.product-price-section {

    text-align: center;
    margin-bottom: 20px;
}
.shopsystem.product-price {

    font-family: 'Press Start 2P', cursive;
    font-size: 24px;
    color: var(--primary-yellow);
    margin-bottom: 5px;
}
.shopsystem.product-buy-btn {

    width: 100%;
    background: var(--primary-yellow);
    color: #000;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.shopsystem.product-buy-btn:hover {

    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(234, 179, 8, 0.4);
}


.scroll-reveal {

    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}
.shopsystem.scroll-reveal.shopsystem.revealed {

    opacity: 1;
    transform: translateY(0);
}


@media (max-width: 768px) {

.shopsystem.shop-section {

        padding: 120px 20px 40px;
    }
.shopsystem.products-grid {

        grid-template-columns: 1fr;
    }
}


:root.light-mode .product-card {

    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
}



        .successsystem.success-container {

            position: relative;
            z-index: 10;
            padding: 140px 40px 60px;
            max-width: 800px;
            margin: 0 auto;
            min-height: 70vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }
        .successsystem.success-icon {

            width: 120px;
            height: 120px;
            background: rgba(34, 197, 94, 0.15);
            border: 3px solid #22c55e;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            animation: successsystemSuccessPulse 2s ease-in-out infinite;
        }
        @keyframes successsystemSuccessPulse {

        0%, 100% {
 
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
        }
            50% {
 
                transform: scale(1.05);
                box-shadow: 0 0 0 20px rgba(34, 197, 94, 0);
            }
        }
        .successsystem.success-icon svg {

            width: 60px;
            height: 60px;
            stroke: #22c55e;
            stroke-width: 3;
            fill: none;
        }
        .successsystem.success-title {

            font-family: 'Press Start 2P', cursive;
            font-size: clamp(18px, 3vw, 28px);
            color: var(--text-white);
            margin-bottom: 20px;
            line-height: 1.4;
        }
        .successsystem.success-message {

            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            color: var(--text-gray);
            margin-bottom: 15px;
            line-height: 1.6;
        }
        .successsystem.success-highlight {

            font-family: 'Poppins', sans-serif;
            font-size: 18px;
            color: var(--primary-yellow);
            font-weight: 600;
            margin-bottom: 30px;
        }
        .successsystem.transaction-details {

            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 30px;
            margin-bottom: 30px;
            width: 100%;
            max-width: 500px;
        }
        .successsystem.transaction-row {

            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            font-family: 'Poppins', sans-serif;
        }
        .successsystem.transaction-row:last-child {

            border-bottom: none;
        }
        .successsystem.transaction-label {

            color: var(--text-gray);
            font-size: 14px;
        }
        .successsystem.transaction-value {

            color: var(--text-white);
            font-weight: 600;
            font-size: 14px;
        }
        .successsystem.transaction-value.successsystem.highlight {

            color: var(--primary-yellow);
            font-size: 16px;
        }
        .successsystem.timer-container {

            background: rgba(234, 179, 8, 0.1);
            border: 1px solid rgba(234, 179, 8, 0.2);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 30px;
            width: 100%;
            max-width: 500px;
        }
        .successsystem.timer-text {

            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            color: var(--text-gray);
            margin-bottom: 10px;
        }
        .successsystem.timer-countdown {

            font-family: 'Press Start 2P', cursive;
            font-size: 32px;
            color: var(--primary-yellow);
        }
        .successsystem.action-buttons {

            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .successsystem.btn-primary, .successsystem.btn-secondary {

            padding: 14px 32px;
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        .successsystem.btn-primary {

            background: var(--primary-yellow);
            color: #000;
            border: none;
        }
        .successsystem.btn-primary:hover {

            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(234, 179, 8, 0.4);
        }
        .successsystem.btn-secondary {

            background: rgba(255, 255, 255, 0.05);
            color: var(--text-white);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .successsystem.btn-secondary:hover {

            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
        }
        @media (max-width: 768px) {

        .successsystem.success-container {

                padding: 120px 20px 40px;
            }
        .successsystem.success-icon {

                width: 100px;
                height: 100px;
            }
        .successsystem.success-icon svg {

                width: 50px;
                height: 50px;
            }
        .successsystem.transaction-details, .successsystem.timer-container {

                padding: 20px;
            }
        }
        :root.light-mode .transaction-details {

            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(0, 0, 0, 0.08);
        }
        :root.light-mode .timer-container {

            background: rgba(234, 179, 8, 0.15);
            border: 1px solid rgba(234, 179, 8, 0.3);
        }