:root {
    --primary-color: #d32f2f;
    --primary-hover: #ff2e34;
    --red-color: #E51C2C;
    --red-hover: #ff2e40;
    --title-text: #ffffff;
    --bg-dark: #080808;
    --text-grey: #b0b0b0;
    --primary-glow: rgba(211, 47, 47, 0.4);
    --bg-color: #0b0b0b;
    --card-bg: #121212;
    --text-color: #e0e0e0;
    --white: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--white);
}

::-webkit-scrollbar {
    width: 12px;
    background-color: var(--bg-color);
}

::-webkit-scrollbar-track {
    background-color: #111111;
    border-left: 1px solid #222;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 6px;
    border: 3px solid #111111;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #ff4545;
    border-width: 2px;
}

::-webkit-scrollbar-thumb:active {
    background-color: var(--white);
}

::selection {
    background-color: var(--primary-color);
    color: var(--white);
    text-shadow: none;
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--white);
}

html {
    scrollbar-color: var(--primary-color) #111111;
    scrollbar-width: thin;
}

/******************/
/* PRELOADER */
/******************/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0b0b0b;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity 0.5s ease-out, visibility 0.5s;
}

.loader-container {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #ff3b3b;
    animation: spin 1.5s linear infinite;
    filter: drop-shadow(0 0 10px rgba(255, 59, 59, 0.5));
}

.ring::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-bottom-color: rgba(255, 59, 59, 0.5);
    animation: spin-reverse 2s linear infinite;
}

.loader-text {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: sans-serif;
    position: relative;
    z-index: 2;
}

.loader-percent {
    margin-top: 20px;
    color: var(--text-grey);
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
}

.loader-slogan {
    margin-top: 20px;
    color: var(--text-grey);
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

#preloader.done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin-reverse {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}


/******************/
/* NAVBAR */
/******************/
.navbar {
    background: rgba(11, 11, 11, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease-in-out;
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
}

.navbar.scrolled {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
    background: rgba(11, 11, 11, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-nav .nav-link {
    color: var(--text-grey) !important;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 1.5rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
    color: var(--white) !important;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.4em;
    vertical-align: 0.15em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    color: #555;
    transition: color 0.3s;
}

.nav-link:hover .dropdown-toggle::after,
.dropdown-toggle:hover::after {
    color: var(--white);
}

.dropdown-menu {
    background-color: #0f0f0f;
    border-radius: 0;
    padding: 0.5rem 0;
    margin-top: 25px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.dropdown-item {
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 10px 24px;
    transition: all 0.2s;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #1a1a1a;
    color: #fff;
}

.dropdown-divider {
    border-top-color: #2a2a2a;
}

.btn-lang {
    background-color: transparent !important;
    border: none !important;
    color: #ccc !important;
    box-shadow: none !important;
    text-transform: uppercase;
    font-weight: 700;
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.btn-lang::before {
    content: "🌐";
    font-size: 1rem;
    filter: grayscale(100%);
    margin-right: 6px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.btn-lang:hover,
.btn-lang:focus,
.btn-lang.show {
    color: var(--white) !important;
}

.btn-lang:hover::before {
    opacity: 1;
}


a.btn-outline-light {
    background-color: #1a1a1a;
    border: 1px solid #333;
    color: #ddd;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 50px;
    padding: 8px 24px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

a.btn-outline-light:hover {
    background-color: #333;
    color: var(--white);
    border-color: #555;
}

.btn-danger {
    background-color: transparent !important;
    border: 1px solid var(--primary-color);
    color: var(--white) !important;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 50px;
    padding: 8px 24px;
    font-size: 0.9rem;
    box-shadow: 0 0 15px rgba(211, 47, 47, 0.15);
    transition: all 0.3s ease;
}

.btn-danger:hover {
    background-color: var(--primary-color) !important;
    box-shadow: 0 0 20px rgba(211, 47, 47, 0.5);
    border-color: var(--primary-color);
}

.navbar-toggler {
    border: none !important;
    padding: 0.25rem 0.5rem;
    box-shadow: none !important;
}

.navbar-toggler-icon {
    width: 1.5em;
    height: 1.5em;
    opacity: 0.8;
}

.navbar-toggler:focus .navbar-toggler-icon {
    opacity: 1;
}
/******************/
/* NAVBAR  */
/* ACCOUNT */
/******************/
.account-pill {
    background-color: #1a1a1a;
    padding: 4px 16px 4px 4px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.account-pill:hover {
    background-color: #262626;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.account-pill:hover .account-name {
    color: var(--white);
}

.account-avatar {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--primary-color), var(--red-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    margin-right: 10px;
    flex-shrink: 0;
}

.account-name {
    font-size: 13px;
    max-width: 140px;
    display: block;
}

.account-balance {
    font-size: 11px;
    color: var(--text-grey);
    font-weight: 500;
    margin-top: 2px;
    letter-spacing: 0.3px;
}

/******************/
/* LOGO MAIN */
/******************/

.logo-link {
    text-decoration: none;
}

.logo-badge {
    font-family: 'Russo One', sans-serif;
    transform: skewX(-10deg);
}

.logo-badge .main-part {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    font-size: 1.4rem;
    border: 2px solid var(--primary-color);
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
    padding-right: 25px;
    z-index: 2;
    font-weight: 900;
}

.logo-badge .ext-part {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 9px 15px 9px 25px;
    font-size: 1rem;
    font-weight: bold;
    margin-left: -15px;
    z-index: 1;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    font-weight: 900;
}

.logo-badge .fa-bolt {
    font-size: 0.8em;
    color: var(--bg-color);
}

.logo-badge .main-part,
.logo-badge .ext-part,
.logo-badge .fa-bolt {
    transition: all 0.3s ease-in-out;
}

.logo-link:hover .fa-bolt {
    transform: rotate(180deg) scale(1.4);
    color: var(--white);
    transition: transform 0.4s ease-in-out, color 0.2s;
}

.logo-link:hover .logo-badge {
    filter: drop-shadow(0 0 5px rgba(211, 47, 47, 0.7));
}


/* LOGO img */
.logo-img img {
    width: 65px;
}

.logo-img {
    transition: all 0.3s ease-in-out;
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(255, 50, 50, 0.8));
}

/******************/
/* HERO MAIN */
/******************/
.hero {
    min-height: 100vh;
    background: linear-gradient(180deg, rgb(10 10 10 / 26%) 77.63%, #0A0A0A 104.23%), radial-gradient(61.13% 58.87% at 50% 52.84%, rgb(10 10 10 / 70%) 43.89%, #0A0A0A 100%), url(../images/samurai_bg.png) no-repeat center / cover;
    display: flex;
    align-items: center;
}

.hero-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding-top: 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(211, 47, 47, 0.15);
    border: 1px solid rgba(211, 47, 47, 0.4);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.pulse-ring {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 0 rgba(211, 47, 47, 0.7);
    animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(211, 47, 47, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(211, 47, 47, 0);
    }
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.text-stroke {
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3);
    color: transparent;
}

.text-gradient-red {
    background: linear-gradient(90deg, var(--primary-color) 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(211, 47, 47, 0.4));
}


.hero-date {
    display: flex;
    align-items: center;
    font-family: 'Roboto', 'Oswald', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-date i {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-right: 12px;
    filter: drop-shadow(0 0 8px rgba(255, 71, 87, 0.6));
}

.hero-date .divider {
    display: inline-block;
    width: 2px;
    height: 24px;
    margin: 0 20px;
    background: linear-gradient(to bottom,
            rgba(255, 71, 87, 0),
            rgba(255, 71, 87, 1) 40%,
            rgba(255, 71, 87, 1) 60%,
            rgba(255, 71, 87, 0));
    transform: skew(-20deg);
    opacity: 0.8;
    font-size: 0;
}

.header-actions {
    margin-left: auto;
}

.btn-header-primary {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
    white-space: nowrap;
}

.btn-header-primary:hover {
    background: #b71c1c;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.6);
}

.btn-header-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #e0e0e0;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-header-glass i {
    color: #ffd700;
    font-size: 1.1rem;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.btn-header-glass:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: #ffd700;
    color: #fff;
}

.btn-bonus-pulse {
    animation: gold-pulse 2s infinite;
}

@keyframes gold-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
        border-color: rgba(255, 215, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
        border-color: rgba(255, 215, 0, 0.8);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
        border-color: rgba(255, 215, 0, 0.4);
    }
}

@media (max-width: 576px) {

    .btn-header-primary,
    .btn-header-glass {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
}

/******************/
/* HERO TIMER */
/******************/
.countdown-timer {
    display: inline-flex;
    gap: 15px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 12px;
}

.timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.timer-item span {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
    font-family: monospace;
}

.timer-item small {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-grey);
    margin-top: 5px;
    letter-spacing: 1px;
}

.timer-separator {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 300;
    margin-top: -5px;
}


.hero-description {
    font-size: 1.1rem;
    color: var(--text-grey);
    max-width: 500px;
    line-height: 1.6;
}


.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpEffect 0.8s ease forwards;
}

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


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

    .countdown-timer {
        padding: 10px 15px;
        gap: 10px;
    }

    .timer-item span {
        font-size: 1.8rem;
    }
}

/******************/
/* SERVER STATUS */
/******************/

.server-status-card {
    background: rgba(18, 18, 18, 0.6);
    padding: 25px;
    border-radius: 16px;
    width: 100%;
    max-width: 400px;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.server-status-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(211, 47, 47, 0.1);
}


.server-status-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.7;
}

.server-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.server-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2c0b0b, #4a0f0f);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(211, 47, 47, 0.2);
}

.server-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.server-stage {
    font-size: 0.75rem;
    color: #777;
    font-weight: 600;
    letter-spacing: 1px;
}


.server-rates-badge {
    background: rgba(211, 47, 47, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(211, 47, 47, 0.4);
    padding: 5px 12px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(211, 47, 47, 0.4);
}


.server-meta {
    font-size: 0.9rem;
    color: var(--text-grey);
    font-weight: 500;
}


.online-bar-wrapper {
    background: rgba(0, 0, 0, 0.5);
    height: 12px;
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.online-bar-fill {
    background: linear-gradient(90deg, #9e1818, var(--primary-color));
    height: 100%;
    border-radius: 50px;
    position: relative;
    box-shadow: 0 0 15px rgba(211, 47, 47, 0.5);
    width: 0;
    transition: width 1.5s ease-out;
}

.online-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px 50px 0 0;
}

.server-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 15px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #a0a0a0;
}

.status-indicator.online span {
    color: #2ecc71;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #2ecc71;
    border-radius: 50%;
    box-shadow: 0 0 10px #2ecc71;
    animation: status-pulse 2s infinite;
}

.player-count {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.player-count i {
    color: #555;
    font-size: 0.9rem;
}

@keyframes status-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(46, 204, 113, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

@media (max-width: 992px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content {
        margin-bottom: 20px;
    }

    .server-status-card {
        margin: 0 auto;
    }

    .menu {
        display: none;
    }
}



/******************/
/* FOOTER */
/******************/
.gg-footer {
    background-color: #0b0b0b;
    border-top: 1px solid #1f1f1f;
}


.footer-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    background: #151515;
    padding: 5px;
    border-radius: 8px;
    border: 1px solid #222;
}


.footer-title {
    color: var(--text-color);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
}

/* Ссылки меню */
.footer-link {
    color: #adb5bd;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--text-color);
    transform: translateX(5px);
}


.footer-link:hover::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.social-btn {
    background-color: #161616;
    color: #adb5bd;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.social-btn:hover {
    background-color: #1f1f1f;
    color: var(--text-color);
    transform: translateY(-2px);
}


.social-btn i {
    transition: color 0.3s;
}

.social-btn:hover .fa-telegram-plane {
    color: #2AABEE;
}

.social-btn:hover .fa-discord {
    color: #7289DA;
}

.social-btn:hover .fa-youtube {
    color: #FF0000;
}


.footer-bottom {
    border-top: 1px solid #1f1f1f;
    font-size: 0.8rem;
}

.legal-link {
    color: #6c757d;
    transition: color 0.2s;
}

.legal-link:hover {
    color: #adb5bd;
    text-decoration: underline !important;
}

/******************/
/* SERVER SECTIONS */
/******************/

.server-info-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.server-info-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.section-title {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title span {
    color: var(--primary-color);
}

.rate-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.rate-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.rate-value span {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.rate-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    color: #888;
    letter-spacing: 1px;
    margin-top: 5px;
}

.info-content h3 {
    font-weight: 700;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.feature-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    color: var(--text-grey);
}

.feature-list li i {
    color: var(--primary-color);
    margin-right: 18px;
    font-size: 1.4rem;
    margin-top: 5px;
    filter: drop-shadow(0 0 5px var(--primary-glow));
}

.discord-cta-box {
    background: linear-gradient(45deg, #1a1a1a, #252525);
    border-left: 4px solid var(--primary-color);
    padding: 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.discord-text p {
    margin: 0;
    font-size: 0.9rem;
    color: #aaa;
}

.discord-text h5 {
    margin: 0;
    font-weight: 700;
    color: var(--white);
}

.btn-discord-custom {
    background-color: #5865F2;
    color: var(--white);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
}

.btn-red-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--white);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-red-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 0 20px var(--primary-glow);
}


/******************/
/* CTA SECTIONS */
/******************/
.cta-hero-section {
    min-height: 80vh;
    background: radial-gradient(circle at center, #1a0505 0%, var(--bg-color) 70%);
    position: relative;
    overflow: hidden;
    padding: 60px 20px;
}

/* Свечение */
.cta-glow-effect {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(211, 47, 47, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.badge-new-era {
    background: rgba(211, 47, 47, 0.1);
    border: 1px solid rgba(211, 47, 47, 0.3);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    text-transform: uppercase;
}

.text-gradient {
    background: linear-gradient(135deg, var(--white) 30%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(211, 47, 47, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-grey);
    max-width: 700px;
    line-height: 1.6;
}

/* BUTTONS  CTA */
.btn-cta-primary,
.btn-cta-secondary {
    display: flex;
    align-items: center;
    padding: 12px 30px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 240px;
    position: relative;
}

.btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
    font-weight: 700;
    font-size: 1.1rem;
}

.btn-text small {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.8;
    text-transform: uppercase;
}

.btn-icon-box {
    font-size: 1.8rem;
    margin-right: 15px;
}

.btn-cta-primary {
    background: var(--primary-color);
    color: var(--white);
    border: 1px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.4);
}

.btn-cta-primary:hover {
    background: #b71c1c;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(211, 47, 47, 0.6);
    color: var(--white);
}

.btn-pulse {
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(211, 47, 47, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(211, 47, 47, 0);
    }
}


.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transform: translateY(-3px);
}

.bonus-text {
    font-size: 0.9rem;
    color: var(--text-grey);
    font-weight: 500;
}

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

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

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }

}


/******************/
/* HERO SCROLL    */
/******************/
.scroll-down-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 10;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.scroll-down-container:hover {
    opacity: 1;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    position: relative;
}

.wheel {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 2px;
    animation: scroll-wheel 1.5s infinite;
    box-shadow: 0 0 5px var(--primary-color);
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        top: 6px;
    }

    100% {
        opacity: 0;
        top: 24px;
    }
}

.arrow-scroll span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid var(--white);
    border-right: 2px solid var(--white);
    transform: rotate(45deg);
    margin: -4px auto 0;
    animation: scroll-arrow 2s infinite;
}

.arrow-scroll span:nth-child(2) {
    animation-delay: -0.2s;
    border-color: rgba(255, 255, 255, 0.7);
}

.arrow-scroll span:nth-child(3) {
    animation-delay: -0.4s;
    border-color: rgba(255, 255, 255, 0.4);
}

@keyframes scroll-arrow {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-5px, -5px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: rotate(45deg) translate(5px, 5px);
    }
}


/******************/
/* SCROLL TO TOP  */
/******************/

#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(31, 31, 31, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
    backdrop-filter: blur(5px);
}


#scrollTopBtn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/******************/
/* DOWNLOAD PAGE  */
/******************/
.download-section-clean {
    background-color: var(--bg-dark);
    padding: 120px 0;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-white);
}

.text-accent {
    color: var(--primary-color);
}

.section-desc {
    color: var(--text-grey);
    font-size: 0.95rem;
    line-height: 1.6;
}

.file-card {
    background: var(--card-bg);
    border-radius: 8px;
    height: 100%;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.file-card:hover {
    border-color: #333;
    transform: translateY(-5px);
}

.card-content {
    padding: 35px;
}

.icon-square {
    width: 50px;
    height: 50px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--text-white);
    border-radius: 6px;
    border: 1px solid #2a2a2a;
}

.icon-square.accent-mode {
    color: var(--primary-colory);
}

.file-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 6px;
}

.file-specs {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

.divider {
    margin: 0 5px;
    opacity: 0.3;
}

.recommend-badge {
    font-size: 0.65rem;
    background: rgba(227, 30, 36, 0.1);
    color: var(--primary-color);
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid rgba(227, 30, 36, 0.2);
}

.file-description {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 30px;
    min-height: 48px;
}

.actions-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-main {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    padding: 14px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.btn-main:hover {
    background: var(--primary-hover);
    color: var(--white);
}

.btn-updater {
    background: #252525;
    border: 1px solid #333;
}

.btn-updater:hover {
    background: #333;
    border-color: #444;
}

.mirrors-list {
    display: flex;
    gap: 10px;
}

.mirror-btn {
    flex: 1;
    text-align: center;
    font-size: 0.8rem;
    color: #777;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.2s;
    font-weight: 600;
    border: 1px solid transparent;
}

.mirror-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ccc;
    border-color: #333;
}

.steps-header {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
    margin-bottom: 20px;
}

.step-box {
    background: #111;
    padding: 25px;
    height: 100%;
    position: relative;
    border-radius: 6px;
    transition: 0.3s;
}

.step-box:hover {
    background: #161616;
    border-color: #333;
}

.highlight-step {
    border-color: rgba(227, 30, 36, 0.3);
    background: rgba(227, 30, 36, 0.02);
}

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.step-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: #222;
    margin-right: 15px;
    line-height: 1;
}

.highlight-step .step-num {
    color: var(--primary-color);
}

.step-title {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    color: #ddd;
}

.step-body p {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.5;
    margin-bottom: 10px;
}

.step-link {
    font-size: 0.8rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.step-link:hover {
    text-decoration: underline;
}

/******************/
/* DOWNLOAD PAGE  */
/* SUPPORT  */
/******************/
.support-strip-section {
    position: relative;
    background-color: #111;
    padding: 60px 0;
    overflow: hidden;
}

.bg-giant-icon {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%) rotate(-15deg);
    font-size: 16rem;
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
    z-index: 0;
}

.support-icon-box {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), #8a0e12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    margin-right: 25px;
    box-shadow: 0 5px 20px rgba(227, 30, 36, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.support-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.support-desc {
    color: #888;
    margin: 0;
    font-size: 0.95rem;
    max-width: 90%;
    line-height: 1.5;
}

.support-desc b {
    color: #ccc;
}

.btn-support-wide {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 45px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-support-wide:hover {
    border-color: #e31e24;
    background: #e31e24;
    color: #fff;
    box-shadow: 0 5px 20px rgba(227, 30, 36, 0.4);
    transform: translateY(-2px);
}

.support-links {
    margin-top: 15px;
    font-size: 0.8rem;
    color: #555;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.sub-link {
    color: #666;
    transition: 0.2s;
}

.sub-link i {
    margin-right: 4px;
}

.sep {
    margin: 0 8px;
    color: #333;
}


@media (max-width: 992px) {
    .support-desc {
        max-width: 100%;
    }

    .bg-giant-icon {
        font-size: 10rem;
        right: -10%;
    }

    .support-links {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .support-header {
        flex-direction: column;
        text-align: center;
    }

    .support-icon-box {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .btn-support-wide {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .mirrors-list {
        flex-direction: column;
    }
}

/******************/
/* DOWNLOAD PAGE  */
/* POPUP  */
/******************/
.gaming-popup-wrapper {
    position: fixed;
    top: 80px;
    right: 40px;
    z-index: 9999;
    pointer-events: none;
}

.neon-arrow-svg {
    position: absolute;
    bottom: 90%;
    right: 20px;
    width: 150px;
    height: 120px;
    overflow: visible;
    z-index: -1;
}

.neon-path {
    fill: none;
    stroke: #ff3333;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 5px #ff0000) drop-shadow(0 0 10px #ff0000);
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    /* Скрыто */
    transition: stroke-dashoffset 0.8s ease-out 0.1s;
}

.arrow-tip {
    fill: #ff3333;
    filter: drop-shadow(0 0 5px #ff0000);
    opacity: 0;
    transform: scale(0);
    transform-origin: 135px 5px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.8s;
}

.gaming-popup-wrapper.active .neon-path {
    stroke-dashoffset: 0;
}

.gaming-popup-wrapper.active .arrow-tip {
    opacity: 1;
    transform: scale(1);
}

.gaming-toast {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid #333;
    border-left: 4px solid var(--primary-color);
    border-radius: 6px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 280px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);

    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.gaming-popup-wrapper.active .gaming-toast {
    opacity: 1;
    transform: translateY(0);
}

.toast-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toast-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.toast-close {
    font-size: 18px;
    color: #666;
    cursor: pointer;
}

.file-info {
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 6px;
}

.loader-track {
    width: 100%;
    height: 3px;
    background: #333;
    margin-top: 5px;
    border-radius: 2px;
    overflow: hidden;
}

.loader-fill {
    height: 100%;
    width: 0%;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
    transition: width 3s ease-out;
}

.gaming-popup-wrapper.active .loader-fill {
    width: 100%;
}


/******************/
/* SUPPORT PAGE   */
/******************/
.support-section {
    padding: 120px 0;
}


.text-primary {
    color: var(--primary-color) !important;
}

.support-card {
    background: var(--card-bg);
    border: 1px solid #1f1f1f;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.support-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px var(--primary-glow);
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    background: rgba(211, 47, 47, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin-inline: auto;
}

.support-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.card-desc {
    color: #888888;
    font-size: 0.95rem;
    margin-bottom: 30px;
    min-height: 40px;
}

.steps-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    width: 100%;
    text-align: left;
}

.steps-list li {
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #ccc;
    display: flex;
    align-items: center;
}

.steps-list li span {
    background: var(--primary-color);
    color: var(--white);
    font-weight: bold;
    font-size: 0.75rem;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 4px;
    margin-right: 12px;
    flex-shrink: 0;
}

.btn-primary-custom {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary-color) 0%, #b71c1c 100%);
    color: var(--white);
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.3s;
    margin-top: auto;
    border: none;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.btn-primary-custom:hover {
    background: linear-gradient(90deg, #e53935 0%, #c62828 100%);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.5);
    color: var(--white)
}

/******************/
/* SUPPORT FAQ   */
/******************/
.faq-section {
    padding: 80px 0;
}

.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid #1f1f1f;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-item.active {
    border-color: var(--primary-color);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 25px;
    text-align: left;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

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

.faq-question i {
    transition: transform 0.3s;
    font-size: 0.9rem;
    color: #888888;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 25px 20px 25px;
    color: #bbb;
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/******************/
/* STATIC PAGE */
/******************/

.pages-section {
    padding: 150px 0;
}

/******************/
/* DISCORD WIDGET */
/******************/

.discord-widget-card {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    width: 220px;
    background: #111;
    border: 1px solid #2a2a2a;
    border-top: 3px solid #5865F2;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow:
        0 10px 30px -5px rgba(0, 0, 0, 0.6),
        0 0 80px rgba(88, 101, 242, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.discord-widget-card.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}


.discord-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.discord-icon-wrapper {
    position: relative;
    width: 42px;
    height: 42px;
    background: #5865F2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    flex-shrink: 0;
}

.discord-icon-wrapper i {
    animation: pulse-icon 2s infinite ease-in-out;
}

.status-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    background: #23a559;
    border: 2px solid #111;
    border-radius: 50%;
}

.discord-text {
    display: flex;
    flex-direction: column;
}

.discord-title {
    font-weight: 700;
    font-size: 14px;
    color: var(--white);
    margin-bottom: 2px;
}

.discord-online {
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
}

.discord-online i {
    font-size: 10px;
    color: #555;
}

.discord-action-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #1f1f1f;
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 0;
    border-radius: 8px;
    border: 1px solid #333;
    transition: 0.2s ease;
    text-transform: uppercase;
}

.discord-action-btn:hover {
    background: #5865F2;
    border-color: #5865F2;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.3);
}

.discord-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    color: #444;
    cursor: pointer;
    padding: 5px;
    transition: 0.2s;
    line-height: 1;
}

.discord-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

@keyframes pulse-icon {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}


@media (max-width: 991px) {
    .discord-widget-card {
        display: none !important;
    }
}