:root {
    --primary-color: #5865F2;
    --secondary-color: #2C2F33;
    --text-color: #ffffff;
    --accent-color: #5865F2;
    --hover-color: #4752C4;
    --gradient-start: #5865F2;
    --gradient-end: #7289DA;
    --card-bg: rgba(88, 101, 242, 0.1);
    --card-border: rgba(88, 101, 242, 0.2);
    --bg-dark: #0a0e27;
    --bg-darker: #050815;
    --premium-gold: #FFD700;
    --premium-glow: rgba(255, 215, 0, 0.3);
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

@keyframes glow {
    0% { text-shadow: 0 0 10px rgba(88, 101, 242, 0.5); }
    50% { text-shadow: 0 0 20px rgba(88, 101, 242, 0.8); }
    100% { text-shadow: 0 0 10px rgba(88, 101, 242, 0.5); }
}

@keyframes glowWave {
    0%, 100% {
        background-position: 0% 50%;
        transform: translateY(0);
    }
    50% {
        background-position: 100% 50%;
        transform: translateY(-5px);
    }
}

body {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 50%, #0f1629 100%);
    background-attachment: fixed;
    color: var(--text-color);
    line-height: 1.6;
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}


.starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    background: transparent;
}

.star {
    position: absolute;
    background: #ffffff;
    border-radius: 50%;
    animation: twinkle 4s ease-in-out infinite;
    z-index: 1;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.8);
}

.star.small {
    width: 1.5px;
    height: 1.5px;
    opacity: 0.6;
    box-shadow: 0 0 3px rgba(255, 255, 255, 0.6);
}

.star.medium {
    width: 2.5px;
    height: 2.5px;
    opacity: 0.8;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.8);
}

.star.large {
    width: 4px;
    height: 4px;
    opacity: 1;
    box-shadow: 0 0 6px rgba(255, 255, 255, 1), 0 0 12px rgba(88, 101, 242, 0.5);
}

.star.bright {
    width: 3px;
    height: 3px;
    opacity: 1;
    box-shadow: 0 0 8px rgba(255, 255, 255, 1), 0 0 16px rgba(88, 101, 242, 0.6);
    animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { 
        opacity: 0.4; 
        transform: scale(1);
    }
    50% { 
        opacity: 1; 
        transform: scale(1.3);
    }
}

.shooting-star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #ffffff;
    border-radius: 50%;
    opacity: 0;
    animation: shoot 2.8s linear forwards;
    z-index: 2;
    box-shadow: 0 0 8px rgba(255, 255, 255, 1), 0 0 16px rgba(88, 101, 242, 0.8);
    transform-origin: center center;
    will-change: transform, opacity;
}


.shooting-star::before {
    content: '';
    position: absolute;
    width: 90px;
    height: 2px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.85));
    pointer-events: none;
}

@keyframes shoot {
    0% {
        opacity: 0;
        transform: rotate(var(--angle, 35deg)) translateX(0);
    }
    8% {
        opacity: 1;
    }
    85% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(var(--angle, 35deg)) translateX(var(--dist, 420px));
    }
}


.navbar {
    background: rgba(10, 14, 39, 0.8) !important;
    padding: 1.2rem 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    width: 90%;
    max-width: 1700px;
    z-index: 1000;
    border: 1px solid rgba(88, 101, 242, 0.2);
    border-radius: 20px;
    margin: 0 auto;
}

.navbar:hover {
    transform: translateY(-5px);
    background: rgba(10, 14, 39, 0.95) !important;
    border-color: rgba(88, 101, 242, 0.4);
    box-shadow: 0 12px 40px rgba(88, 101, 242, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0;
    margin: 0 auto;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color) !important;
    text-shadow: 0 0 10px rgba(88, 101, 242, 0.5);
}

.navbar-nav {
    display: flex;
    align-items: center;
}

.nav-link {
    color: var(--text-color) !important;
    font-size: 1.1rem;
    margin: 0 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--accent-color) !important;
}

.nav-link.active::after {
    width: 100%;
}


.nav-link-premium {
    color: var(--text-color) !important;
}

.nav-link-premium:hover {
    color: var(--premium-gold) !important;
}

.nav-link-premium::after {
    background: linear-gradient(90deg, var(--premium-gold), #B8860B);
    height: 2px;
    box-shadow: 0 0 6px rgba(255, 215, 0, 0.35);
}

.nav-link-premium:hover::after {
    width: 100%;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.55);
}

.nav-link-premium.active {
    color: var(--premium-gold) !important;
}

.nav-link-premium.active::after {
    width: 100%;
    background: linear-gradient(90deg, #FFD700, #B8860B);
}

@keyframes premium-underline-flash {
    0% {
        background: linear-gradient(90deg, #fff4a3, #FFD700);
        box-shadow: 0 0 14px rgba(255, 230, 120, 1), 0 0 20px rgba(255, 215, 0, 0.85);
    }
    45% {
        background: linear-gradient(90deg, #FFD700, #DAA520);
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
    }
    100% {
        background: linear-gradient(90deg, #8B6914, #4a3508);
        box-shadow: 0 0 3px rgba(74, 53, 8, 0.45);
    }
}

.nav-link-premium.nav-link-premium--flash::after {
    width: 100% !important;
    animation: premium-underline-flash 0.55s ease-out forwards;
}


.section-container {
    padding: 4rem 0;
    width: 100%;
    position: relative;
    z-index: 1;
}


#introduction {
    padding: 4rem 0 8rem;
    background: transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#introduction .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
}

#introduction h1 {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--accent-color), #7289DA, var(--accent-color));
    background-size: 200% auto;
    background-position: 50% 50%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 24px rgba(88, 101, 242, 0.35));
    letter-spacing: -2px;
    line-height: 1.1;
}

#introduction p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #E4E6EB;
    text-shadow: 0 0 10px rgba(88, 101, 242, 0.3);
}

#introduction .hero-tagline {
    text-align: center;
    font-size: 1.35rem;
    color: #E4E6EB;
    margin: 0 auto 2.5rem;
    font-weight: 400;
    max-width: 800px;
    line-height: 1.5;
}


#features {
    padding-top: 0;
    position: relative;
}

#features .section-header {
    margin-bottom: 3rem;
}

.feature-card {
    background: rgba(88, 101, 242, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 1rem;
    height: calc(100% - 2rem);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(88, 101, 242, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(88, 101, 242, 0.15);
    border-color: rgba(88, 101, 242, 0.4);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.2);
}

.feature-icon {
    color: var(--accent-color);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.feature-card h3 {
    color: #FFFFFF;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: #E4E6EB;
    font-size: 1.1rem;
}


.show-more-btn {
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    border: none;
    margin-top: 2rem !important;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.3);
}

.show-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.5);
}

.hidden-features {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-in-out;
    width: 100%;
    margin-top: 0 !important;
}

.hidden-features.visible {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.row.hidden-features {
    margin-left: 0;
    margin-right: 0;
}


.btn-primary {
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    margin: 1rem;
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.5);
    background: linear-gradient(45deg, var(--hover-color), var(--primary-color));
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 50%);
    transform: scale(0);
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.2s ease-out;
}

.btn-primary:hover::after {
    transform: scale(1);
    opacity: 1;
}


.stats-container {
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin: 4rem auto 5rem;
    background: rgba(88, 101, 242, 0.12);
    padding: 3.5rem 4rem;
    border-radius: 25px;
    border: 2px solid rgba(88, 101, 242, 0.3);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 30px rgba(88, 101, 242, 0.2), 0 0 40px rgba(88, 101, 242, 0.1);
    max-width: 1000px;
    position: relative;
    overflow: hidden;
}

.stats-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(88, 101, 242, 0.1), transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.stat-item {
    text-align: center;
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
    padding: 1rem;
    flex: 1;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--accent-color), #7289DA);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 20px rgba(88, 101, 242, 0.5);
    letter-spacing: -1px;
    line-height: 1;
}

.stat-label {
    color: #E4E6EB;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}


@media (max-width: 768px) {
    #introduction {
        padding: 3rem 0 5rem;
        min-height: 60vh;
    }

    body.page-supporter #introduction {
        padding: 1rem 0 0.75rem;
        min-height: unset;
    }

    body.page-supporter #premium .premium-container {
        padding: 1.25rem 1rem 1.5rem;
    }
    
    #introduction h1 {
        font-size: 3rem;
    }

    #introduction .hero-tagline {
        font-size: 1.15rem;
        margin-bottom: 2rem;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 2.5rem;
        padding: 2.5rem 2rem;
        margin: 3rem auto 4rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 1.2rem;
    }
    
    .feature-card {
        margin-bottom: 2rem;
    }
} 


.mouse-effect {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at var(--x) var(--y), 
                rgba(88, 101, 242, 0.15) 0%,
                rgba(88, 101, 242, 0) 50%);
    pointer-events: none;
    z-index: 1;
}


.page-container {
    max-width: 1700px;
    min-height: auto;
    margin: 120px auto 2rem;
    padding: 2rem 4rem;
    position: relative;
    background: rgba(10, 14, 39, 0.6);
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(88, 101, 242, 0.2);
    z-index: 10;
}

.border-glow {
    position: absolute;
    inset: -3px;
    border-radius: 33px;
    padding: 3px;
    background: linear-gradient(45deg, 
        rgba(88, 101, 242, 0.3), 
        rgba(114, 137, 218, 0.3), 
        rgba(88, 101, 242, 0.3));
    background-size: 200% 200%;
    animation: borderGlow 8s linear infinite;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.6;
}

@keyframes borderGlow {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}


#commands {
    padding: 6rem 0;
    background: transparent;
}

.command-card {
    background: rgba(88, 101, 242, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 1rem;
    height: calc(100% - 2rem);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(88, 101, 242, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.command-card:hover {
    transform: translateY(-10px);
    background: rgba(88, 101, 242, 0.15);
    border-color: rgba(88, 101, 242, 0.4);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.2);
}

.command-card .feature-icon {
    color: var(--accent-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.command-card code {
    font-size: 1.4rem;
    color: var(--accent-color);
    background: rgba(88, 101, 242, 0.15);
    padding: 0.5rem 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
    display: inline-block;
    font-family: 'Outfit', monospace;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 1px solid rgba(88, 101, 242, 0.3);
}

.command-card:hover code {
    background: rgba(88, 101, 242, 0.25);
    border-color: rgba(88, 101, 242, 0.5);
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.3);
}

.command-card p {
    color: #E4E6EB;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.5;
}


#contact {
    padding: 8rem 0;
    background: transparent;
    text-align: center;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(88, 101, 242, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(88, 101, 242, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.discord-icon {
    font-size: 5rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}


footer {
    margin-top: 2rem;
    margin-bottom: 0;
    border-radius: 15px;
    background: rgba(88, 101, 242, 0.08);
    padding: 2rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(88, 101, 242, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-content {
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}

.footer-content p {
    color: #E4E6EB;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.social-links {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-links a {
    background: rgba(88, 101, 242, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(88, 101, 242, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    background: rgba(88, 101, 242, 0.3);
    border-color: rgba(88, 101, 242, 0.5);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.3);
}


.hidden-features {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-in-out;
    width: 100%;
    margin-top: 0 !important;
}


.hidden-commands {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-in-out;
    width: 100%;
    margin-top: 0 !important;
}

.hidden-commands.visible {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}


.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    text-shadow: 0 0 15px rgba(88, 101, 242, 0.3);
}

.section-header::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    margin: 1rem auto;
    border-radius: 2px;
} 

.hidden-features, .hidden-commands {
    display: none;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.hidden-features.visible, .hidden-commands.visible {
    display: flex;
    opacity: 1;
    height: auto;
    overflow: visible;
}


.show-more-container {
    margin-top: 2rem;
    text-align: center;
}

.show-more-btn {
    margin: 0 !important;  
    display: inline-block;
}


.initial-features, .initial-commands {
    margin-bottom: 0;  
}

.feature-card, .command-card {
    height: 100%;
    margin-bottom: 1rem;  
} 


.hidden-features, .hidden-commands {
    display: none;
    width: 100%;
    margin: 0;
    padding: 0;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hidden-features.visible, .hidden-commands.visible {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    margin-top: 2rem;
} 


.text-center.mt-4.mb-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
    position: relative;
}

.show-more-features, .show-more-commands {
    min-width: 250px;
} 


.row {
    margin-left: -1rem;
    margin-right: -1rem;
} 



.show-more-features,
.show-more-commands,
.hidden-features,
.hidden-commands {
    display: none !important;
}


.row.initial-features,
.row.initial-commands {
    display: flex !important;
    opacity: 1 !important;
    transform: none !important;
    margin-bottom: 2rem;
} 


.btn-discord {
    background: rgba(88, 101, 242, 0.2);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    border: 1px solid rgba(88, 101, 242, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(88, 101, 242, 0.2);
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.btn-discord:hover {
    transform: translateY(-5px);
    background: rgba(88, 101, 242, 0.3);
    border-color: rgba(88, 101, 242, 0.5);
    box-shadow: 0 12px 40px rgba(88, 101, 242, 0.3);
    color: white;
    text-decoration: none;
}

.btn-discord::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.btn-discord:hover::before {
    left: 100%;
}

.btn-discord i {
    margin-right: 10px;
} 


.navbar > .container {
    max-width: 100%;
    padding: 0 1rem;
} 


.features-container {
    margin-top: 2rem;
    max-width: 100%;
    padding: 3rem;
    background: rgba(88, 101, 242, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(88, 101, 242, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.features-container:hover {
    transform: translateY(-5px);
    background: rgba(88, 101, 242, 0.08);
    border-color: rgba(88, 101, 242, 0.3);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.15);
}


.commands-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(88, 101, 242, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(88, 101, 242, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.commands-container:hover {
    transform: translateY(-5px);
    background: rgba(88, 101, 242, 0.08);
    border-color: rgba(88, 101, 242, 0.3);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.15);
}


.community-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(88, 101, 242, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(88, 101, 242, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.community-container:hover {
    transform: translateY(-5px);
    background: rgba(88, 101, 242, 0.08);
    border-color: rgba(88, 101, 242, 0.3);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.15);
}


.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(88, 101, 242, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(88, 101, 242, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


#commands, #contact {
    padding: 2rem 0;
}

.section-header {
    margin-bottom: 3rem;
} 


@keyframes glowWave {
    0%, 100% {
        background-position: 0% 50%;
        transform: translateY(0);
    }
    50% {
        background-position: 100% 50%;
        transform: translateY(-5px);
    }
}

.tagline {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #E4E6EB;
    text-shadow: 0 0 10px rgba(88, 101, 242, 0.3);
    transition: all 0.3s ease;
    cursor: default;
    padding: 0.5rem 1rem;
    position: relative;
}

.tagline:hover {
    background: linear-gradient(90deg, 
        var(--accent-color),
        var(--primary-color),
        var(--accent-color)
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glowWave 3s ease infinite;
    text-shadow: 
        0 0 10px rgba(88, 101, 242, 0.5),
        0 0 20px rgba(88, 101, 242, 0.3);
}

.tagline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--accent-color),
        var(--primary-color),
        var(--accent-color)
    );
    background-size: 200% auto;
    transition: width 0.3s ease;
}

.tagline:hover::after {
    width: 100%;
    animation: glowWave 3s ease infinite;
} 


.text-cycler {
    height: 50px;
    margin: 0 auto 2rem;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.text-cycler-items {
    animation: cycle 9s cubic-bezier(.84, 0, .16, 1) infinite;
}

.text-cycler-items span {
    display: block;
    height: 50px;
    font-size: 1.8rem;
    color: #E4E6EB;
    text-shadow: 0 0 10px rgba(88, 101, 242, 0.3);
    font-weight: 600;
    line-height: 50px;
    background: linear-gradient(90deg, 
        var(--accent-color),
        var(--primary-color)
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

@keyframes cycle {
    0%, 25% {
        transform: translateY(0);
    }
    33%, 58% {
        transform: translateY(-50px);
    }
    66%, 91% {
        transform: translateY(-100px);
    }
    100% {
        transform: translateY(-150px);
    }
} 


.more-text {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 500;
    color: #ffffff;
    margin-top: 2rem;
    text-shadow: 0 0 10px rgba(88, 101, 242, 0.3);
} 

.contact-container p {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.6;
    text-shadow: 0 0 10px rgba(88, 101, 242, 0.3);
    margin-bottom: 2rem;
    font-family: 'Outfit', sans-serif;
} 

#introduction .btn-discord {
    margin: 4rem auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    text-align: center;
} 


#premium {
    padding: 6rem 0;
    background: transparent;
}

.premium-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(88, 101, 242, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(88, 101, 242, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.premium-container:hover {
    transform: translateY(-5px);
    background: rgba(88, 101, 242, 0.08);
    border-color: rgba(88, 101, 242, 0.3);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.15);
}

.premium-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #E4E6EB;
    margin-bottom: 3rem;
    font-weight: 400;
}


body.page-supporter #introduction {
    min-height: unset;
    padding: 1.25rem 0 1rem;
}

body.page-supporter #introduction .container {
    padding: 0.5rem 1rem 0.75rem;
}

body.page-supporter #introduction h1 {
    margin-bottom: 0.6rem;
}

body.page-supporter #introduction p {
    margin-bottom: 0;
}

body.page-supporter #premium {
    padding: 0.5rem 0 3rem;
}

body.page-supporter #premium .premium-container {
    padding: 1.5rem 1.5rem 2rem;
}

body.page-supporter #premium .section-header {
    margin-bottom: 0.35rem;
}

body.page-supporter #premium .section-header h2.mb-5 {
    margin-bottom: 0.35rem !important;
}

body.page-supporter #premium .section-header h2 {
    margin-bottom: 0.35rem;
}

body.page-supporter #premium .section-header::after {
    margin: 0.45rem auto 0.5rem;
}

body.page-supporter #premium .premium-subtitle {
    margin-bottom: 1.25rem;
    margin-top: 0;
}

.premium-features {
    margin-bottom: 3rem;
}

.premium-feature-card {
    background: rgba(88, 101, 242, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 1rem;
    height: calc(100% - 2rem);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(88, 101, 242, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.premium-feature-card:hover {
    transform: translateY(-10px);
    background: rgba(88, 101, 242, 0.15);
    border-color: rgba(88, 101, 242, 0.4);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.2);
}

.premium-icon {
    color: var(--premium-gold);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
    text-shadow: 0 0 15px var(--premium-glow);
}

.premium-feature-card h3 {
    color: #FFFFFF;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.premium-feature-card p {
    color: #E4E6EB;
    font-size: 1rem;
    line-height: 1.6;
}

.pricing-card {
    max-width: 600px;
    margin: 3rem auto 0;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.15), rgba(114, 137, 218, 0.1));
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1), transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.pricing-header {
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 2rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-weight: 700;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.currency {
    font-size: 1.5rem;
    color: var(--premium-gold);
    font-weight: 600;
}

.amount {
    font-size: 4rem;
    color: var(--premium-gold);
    font-weight: 800;
    text-shadow: 0 0 20px var(--premium-glow);
}

.period {
    font-size: 1.2rem;
    color: #E4E6EB;
    font-weight: 400;
}

.pricing-features {
    position: relative;
    z-index: 2;
    margin: 2rem 0;
    text-align: left;
}

.pricing-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    color: #E4E6EB;
    font-size: 1.1rem;
}

.pricing-feature-item i {
    color: var(--premium-gold);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.pricing-cta {
    position: relative;
    z-index: 2;
    margin-top: 2rem;
}

.btn-premium {
    background: linear-gradient(135deg, var(--premium-gold), #FFA500);
    color: #0a0e27;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

.btn-premium:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.5);
    color: #0a0e27;
    text-decoration: none;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: 0.5s;
}

.btn-premium:hover::before {
    left: 100%;
}

.btn-premium i {
    margin-right: 10px;
}



.mouse-move-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(
        circle at var(--x, 50%) var(--y, 50%),
        rgba(88, 101, 242, 0.08),
        rgba(88, 101, 242, 0.03),
        transparent 50%
    );
    opacity: 0.6;
}
