/* Modern Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
}

#loading-screen::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    animation: pulse 8s infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0.8; }
}

#loading-screen.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.8s ease, visibility 0.8s 0.8s;
}

/* Hide content until loading is complete */
body:not(.loading-complete) > :not(#loading-screen) {
    visibility: hidden;
    opacity: 0;
    transition: none;
}

body.loading-complete > :not(#loading-screen) {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.loading-container {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 4rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.loading-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed, #c084fc);
    animation: progress 2s ease-in-out infinite;
}

@keyframes progress {
    0% { width: 0; left: 0; }
    50% { width: 100%; left: 0; }
    100% { width: 0; left: 100%; }
}

.spinner {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid rgba(79, 70, 229, 0.2);
}

.spinner-arc {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: #4f46e5;
    border-right-color: #4f46e5;
    animation: spin 1.5s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 10px rgba(79, 70, 229, 0.7);
    position: relative;
    z-index: 2;
}

.loading-status {
    text-align: center;
    color: #fff;
}

.loading-status h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #4f46e5, #c084fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.status-message {
    color: #a5b4fc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    min-height: 1.5rem;
}

.loading-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    color: #4f46e5;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: #a5b4fc;
    font-size: 0.85rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .loading-container {
        padding: 2rem 1.5rem;
    }
    
    .spinner {
        width: 100px;
        height: 100px;
    }
    
    .logo-text {
        font-size: 1.75rem;
    }
    
    .loading-status h2 {
        font-size: 1.75rem;
    }
    
    .status-message {
        font-size: 1rem;
    }
    
    .loading-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Animation Keyframes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes floatParticle {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100vh) rotate(360deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Base Styles & Variables */
:root {
    /* Dark Theme (Default) */
    --bg-color: #1a1a1a;
    --text-color: #f0f0f0;
    --accent-color: #4a6cf7;
    --accent-hover: #3a5ce4;
    --card-bg: #2d2d2d;
    --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    --nav-bg: rgba(26, 26, 26, 0.9);
    --border-color: #444;
}

/* Light Theme */
[data-theme="light"] {
    --bg-color: #f5f7ff;
    --text-color: #333;
    --accent-color: #4a6cf7;
    --accent-hover: #3a5ce4;
    --card-bg: #ffffff;
    --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --nav-bg: rgba(255, 255, 255, 0.9);
    --border-color: #e0e0e0;
}

/* Background Elements */
.bg-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
    animation: floatParticle linear infinite;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(-45deg, #1a1a1a, #2a2a2a, #1a1a2e, #16213e);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

[data-theme="light"] body {
    background: linear-gradient(-45deg, #f5f7ff, #e6e9ff, #d9ddff, #c6ccff);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: none !important;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--bg-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    margin-left: auto;
}

.menu-bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] .menu-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .menu-bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .menu-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
    animation-delay: 0.2s;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    text-decoration: none !important;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
}

.logo-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    vertical-align: middle;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
    transform: translateY(0);
}

.nav-links a:hover {
    transform: translateY(-2px);
}

/* Discord Link Styling */
.discord-link {
    display: flex;
    align-items: center;
    padding: 0.5rem 0.5rem;
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.discord-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: grayscale(0.5) brightness(1.2);
    transition: all 0.3s ease;
}

.discord-text {
    display: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Show text on larger screens */
@media (min-width: 1024px) {
    .discord-text {
        display: inline;
    }
    
    .discord-link {
        padding: 0.5rem 1rem;
    }
}

.discord-link:hover {
    transform: translateY(-2px);
}

.discord-link:hover .discord-icon {
    transform: scale(1.1);
    filter: grayscale(0) brightness(1.2) drop-shadow(0 0 5px #7289da);
}

.discord-link:hover .discord-text {
    color: #7289da;
}

/* Mobile styles */
@media (max-width: 1023px) {
    .discord-link {
        padding: 0.5rem;
    }
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

.buy-btn {
    color: var(--accent-color) !important;
    padding: 0.5rem 0;
    margin-left: 0.5rem;
    position: relative;
    font-weight: 600;
}

.buy-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: all 0.3s ease;
}

.buy-btn:hover::after, .buy-btn.active::after {
    width: 100%;
}

.buy-btn:active {
    transform: translateY(2px);
}

.buy-btn:hover {
    background-color: transparent;
}

/* Theme Toggle */
#theme-toggle {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.3s;
}

#theme-toggle:hover {
    background-color: rgba(74, 108, 247, 0.1);
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem 4rem;
}

/* Hero Section */
#hero {
    text-align: center;
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(74, 108, 247, 0.1) 0%, rgba(74, 108, 247, 0.05) 100%);
    border-radius: 15px;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}

#hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(74, 108, 247, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

#hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #4a6cf7, #6a11cb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#hero p {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.9;
}

/* Section Styling */
.section {
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.section h2 {
    font-size: 2.2rem;
    margin: 0 auto 2rem;
    text-align: center;
    position: relative;
    display: block;
    width: 100%;
    max-width: max-content;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #4a6cf7, #6a11cb);
    border-radius: 3px;
}

.content-box {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    opacity: 0;
    transform: translateY(30px);
}

.content-box.visible {
    opacity: 1;
    transform: translateY(0);
}

.content-box:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color);
}

.content-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color);
}

/* ===== Rules Section ===== */
#rules {
    position: relative;
    z-index: 1;
}

#rules .content-box {
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: none;
    overflow: hidden;
}

.rules-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 1rem;
}

.tab-btn {
    padding: 0.7rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-color);
    font-weight: 500;
    cursor: pointer;
    position: relative;
    opacity: 0.7;
    transition: all 0.3s ease;
    border-radius: 6px 6px 0 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-btn i {
    font-size: 1.1rem;
}

.tab-btn:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.05);
}

.tab-btn.active {
    opacity: 1;
    color: var(--accent-color);
    background: rgba(74, 108, 247, 0.1);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-color);
    border-radius: 3px 3px 0 0;
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.tab-content.active {
    display: block;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
    padding: 0.5rem;
}

.rule-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem 1.5rem 1.5rem 4rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    min-height: 80px;
    display: flex;
    align-items: center;
}

.rule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-color);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.rule-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(74, 108, 247, 0.3);
    background: rgba(30, 35, 50, 0.5);
}

.rule-card:hover::before {
    opacity: 1;
    height: 5px;
}

.rule-number {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: rgba(74, 108, 247, 0.2);
    color: var(--accent-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 108, 247, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.rule-card:hover .rule-number {
    transform: scale(1.1);
    background: rgba(74, 108, 247, 0.25);
}

.rule-card p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.95rem;
    padding-left: 3rem;
    padding-right: 1rem;
}

/* Rule Categories */
.rule-account {
    border-top-color: #4CAF50;
}

.rule-payment {
    border-top-color: #9C27B0;
}

.rule-usage {
    border-top-color: #2196F3;
}

.rule-important {
    border-top-color: #FFC107;
}

.rule-critical {
    border-top-color: #F44336;
}

.rule-card.important::before {
    background: #FFC107;
}

.rule-card.critical::before {
    background: #F44336;
}

.rules-note {
    background: rgba(74, 108, 247, 0.1);
    border-left: 3px solid var(--accent-color);
    padding: 1.25rem;
    margin: 2rem 0;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.rules-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(74, 108, 247, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.rules-note p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.rules-note i {
    color: var(--accent-color);
    margin-right: 0.75rem;
    font-size: 1.2rem;
    vertical-align: middle;
}

/* Responsive Design */
@media (max-width: 992px) {
    .rules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .rules-tabs {
        overflow-x: auto;
        padding-bottom: 0.5rem;
        scrollbar-width: thin;
        scrollbar-color: var(--accent-color) transparent;
    }
    
    .rules-tabs::-webkit-scrollbar {
        height: 6px;
    }
    
    .rules-tabs::-webkit-scrollbar-thumb {
        background: var(--accent-color);
        border-radius: 3px;
    }
    
    .rules-grid {
        grid-template-columns: 1fr;
    }
    
    .rule-card {
        padding: 1.5rem 1.25rem;
    }
    
    .tab-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== Payment Methods ===== */
.payment-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.payment-logo {
    transition: all 0.3s ease;
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

.payment-logo:nth-child(1) { animation-delay: 0.2s; }
.payment-logo:nth-child(2) { animation-delay: 0.4s; }
.payment-logo:nth-child(3) { animation-delay: 0.6s; }

.payment-logo:hover {
    transform: scale(1.1) translateY(-5px);
    filter: drop-shadow(0 5px 15px rgba(74, 108, 247, 0.3));
}

.payment-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 0.5rem;
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Ensure the PayMaya logo has a white background */
.payment-logo:nth-child(2) .payment-logo-img {
    background: white;
    padding: 5px;
}

/* Payment Methods Section */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin: 0 auto 0.5rem;
    background: linear-gradient(90deg, #4a6cf7, #6a11cb);
    width: 100%;
    max-width: max-content;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-subtitle {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
}

.feature-category {
    margin-bottom: 3.5rem;
    padding: 2rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.feature-category:hover {
    background: rgba(255, 255, 255, 0.03);
}

.feature-category.premium-features {
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
    border: 1px solid rgba(255, 193, 7, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-category.premium-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffc107, #ff6b00);
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.category-header i {
    font-size: 1.8rem;
    margin-right: 1rem;
    color: var(--accent-color);
    background: rgba(74, 108, 247, 0.1);
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.premium-features .category-header i {
    color: #ffc107;
    background: rgba(255, 193, 7, 0.1);
}

.category-header h3 {
    font-size: 1.6rem;
    color: var(--text-color);
    margin: 0;
}

.premium-badge {
    background: linear-gradient(45deg, #ffc107, #ff6b00);
    color: #000;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-left: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.feature-card {
    background: transparent;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    border-bottom: 1px solid var(--border-color);
    opacity: 0;
    margin: 0.5rem 0;
    position: relative;
    transform: translateY(0);
    opacity: 0;
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0) !important;
}

.feature-card:hover {
    transform: translateY(-2px) !important;
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--accent-color);
}

.feature-card.premium {
    border-left: 2px solid #ffc107;
    background: rgba(255, 193, 7, 0.03);
}

.feature-card-inner {
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.feature-card .feature-icon {
    font-size: 1.5rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 1.25rem;
    background: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    transition: all 0.2s ease;
}

.feature-card.premium .feature-icon {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.feature-card h4 {
    font-size: 1.2rem;
    margin: 0 0 0.75rem 0;
    color: var(--text-color);
    font-weight: 500;
    font-weight: 600;
}

.feature-desc {
    flex: 1;
}

.feature-desc p {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.server-note {
    display: block;
    color: #ff9800;
    font-size: 0.8rem;
    font-weight: 500;
    margin: 0.5rem 0;
    padding: 0.4rem 0.8rem 0.4rem 2rem;
    background: rgba(255, 152, 0, 0.1);
    border-left: 3px solid #ff9800;
    border-radius: 0 4px 4px 0;
    position: relative;
}

.server-note::before {
    content: "\f071";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #ff9800;
}

.feature-tag {
    display: inline-block;
    background: rgba(74, 108, 247, 0.1);
    color: var(--accent-color);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-top: 0.5rem;
}

.feature-card.premium .feature-tag {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.feature-card:hover {
    transform: translateY(-2px) !important;
    background: rgba(255, 255, 255, 0.03);
}

.feature-card.premium:hover {
    background: rgba(255, 193, 7, 0.03);
}

.feature-card:hover .feature-icon {
    transform: translateY(-2px);
    background: rgba(74, 108, 247, 0.1);
}

/* Experimental Feature Styling */
.feature-card.experimental {
    position: relative;
    overflow: hidden;
}

.feature-card.experimental::after {
    content: 'Experimental';
    position: absolute;
    top: 10px;
    right: -30px;
    background: #9c27b0;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 0.2rem 2rem;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-note {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: #9c27b0;
    margin-top: 0.8rem;
    font-weight: 500;
}

.feature-note i {
    margin-right: 0.5rem;
}

/* Premium CTA */
.premium-cta {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    opacity: 0.9;
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #1a1a1a;
    font-weight: 600;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    min-width: 200px;
    text-align: center;
    line-height: 1.5;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.btn-premium i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn-premium:hover i {
    transform: translateX(3px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
    }
    
    .category-header i {
        margin: 0 0 1rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Server Grid */
.server-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
    margin: 2.5rem 0;
    perspective: 1000px;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

.server-status {
    position: relative;
    background: transparent;
    border-radius: 8px;
    padding: 1.25rem;
    transition: all 0.2s ease;
    overflow: hidden;
    border: 1px solid transparent;
    border-bottom: 1px solid var(--border-color);
    border-radius: 0;
    box-shadow: none;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transform-style: preserve-3d;
}

.server-status::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 50%);
    pointer-events: none;
    transition: all 0.5s ease;
    opacity: 0;
}

.server-status:hover::after {
    opacity: 1;
}

.server-status:nth-child(1) { animation-delay: 0.1s; }
.server-status:nth-child(2) { animation-delay: 0.15s; }
.server-status:nth-child(3) { animation-delay: 0.2s; }
.server-status:nth-child(4) { animation-delay: 0.25s; }
.server-status:nth-child(5) { animation-delay: 0.3s; }
.server-status:nth-child(6) { animation-delay: 0.35s; }
.server-status:nth-child(n+7) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px) rotateX(5deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.server-status::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a6cf7, #6a11cb);
    opacity: 0.8;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
    transform: scaleX(0);
}

.server-status.available::before {
    background: linear-gradient(90deg, #2ed573, #1abc9c);
    transform: scaleX(1);
}

.server-status:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--accent-color);
}

.server-status:hover::before {
    height: 5px;
    opacity: 1;
    transform: scaleX(1.1);
}


/* Server status content */
.server-status-content {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.server-status:hover .server-status-content {
    transform: translateY(-3px);
}

.server-icon {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.server-status:hover .server-icon {
    transform: rotateY(180deg) scale(1.1);
    animation: float 3s ease-in-out infinite;
}

.server-status-badge {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(0);
}

.server-status:hover .server-status-badge span {
    white-space: nowrap;
    display: inline-block;
    vertical-align: middle;
}

.server-status:hover .server-status-badge {
    transform: translateX(3px);
    background: rgba(74, 108, 247, 0.1);
}

.server-status-badge i {
    font-size: 0.8rem;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.server-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 100px;
    box-sizing: border-box;
    line-height: 1.2;
}

.server-status.available .server-status-badge {
    background: transparent;
    color: #2ed573; /* Green color for available status */
    border: 1px solid #2ed573;
    padding: 0.25rem 0.75rem;
}

.server-status.unavailable .server-status-badge {
    background: rgba(255, 71, 87, 0.15);
    color: #ff4757;
}

.server-stats {
    display: flex;
    gap: 1rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-color);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .server-grid {
        grid-template-columns: 1fr;
    }
    
    .server-status {
        padding: 1.25rem;
    }
    
    .server-stats {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .stat-item {
        text-align: left;
    }
}

.server-status {
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: none;
}

.server-status::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    transition: width 0.3s ease;
}

.server-status:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.server-status.available {
    background-color: transparent;
    color: var(--text-color);
    border-color: transparent;
    border-bottom: 1px solid var(--border-color);
}

.server-status.available::before {
    background: linear-gradient(90deg, rgba(46, 213, 115, 0.1) 0%, rgba(46, 213, 115, 0) 100%);
}

.server-status.available::after {
    content: '✓';
    position: absolute;
    right: 1.25rem;
    color: #2ed573;
    font-weight: bold;
    font-size: 1.1em;
    opacity: 0.8;
    text-decoration: line-through;
    opacity: 0.7;
}

.server-status.offline::before {
    background-color: #dc3545;
}

/* Pricing Section */
.pricing-container {
    max-width: 1200px;
    margin: 2rem auto 0;
}

.pricing-category {
    margin-bottom: 3rem;
}

.pricing-category h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.pricing-category h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #4a6cf7, #6a11cb);
    border-radius: 3px;
}

.premium-category h3::after {
    background: linear-gradient(90deg, #ffc107, #ff6b00);
}

.premium-badge {
    display: inline-block;
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-left: 0.8rem;
    vertical-align: middle;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.pricing-box {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    transform: scale(1);
    opacity: 0;
}

.pricing-box.visible {
    opacity: 1;
    transform: scale(1) !important;
}

.pricing-box:hover {
    transform: scale(1.03) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color);
}

.pricing-box.popular {
    border: 1px solid var(--accent-color);
    position: relative;
    z-index: 1;
}

.pricing-box.popular:hover {
    transform: scale(1.05) !important;
}

.pricing-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #6a11cb);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
    transform: scaleX(0);
}

.pricing-box {
    transition: all 0.3s ease;
}

.pricing-box:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.pricing-box:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

/* FAQ Section */
.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.faq-item:not(:last-child) {
    margin-bottom: 1rem;
}

.faq-question {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    color: var(--accent-color);
    margin-left: 1rem;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
    color: var(--text-color);
    opacity: 0.9;
    line-height: 1.6;
}

.faq-answer p {
    margin: 0;
    padding-bottom: 1.5rem;
}

/* Active state */
.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Adjust based on your content */
    padding-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item:hover {
    border-color: var(--accent-color);
}

/* Keep original buy-now button styles */
.buy-now {
    display: inline-block;
    background: var(--accent-color);
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
    transition: all 0.3s ease;
}

.buy-now:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 108, 247, 0.3);
}

.pricing-box.premium .buy-now {
    background: #ffc107;
    color: #000;
}

.pricing-box.premium .buy-now:hover {
    background-color: #ffd700;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

.pricing-box.premium {
    border: 1px solid rgba(255, 193, 7, 0.3);
    position: relative;
    overflow: hidden;
}

.pricing-box.premium::after {
    content: 'PREMIUM';
    position: absolute;
    top: 15px;
    right: -30px;
    background: linear-gradient(45deg, #ffc107, #ff6b00);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 2rem;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 1;
}

.pricing-box.premium:hover {
    border-color: #ffc107;
    box-shadow: 0 15px 30px rgba(255, 193, 7, 0.2);
    transform: scale(1.05);
    z-index: 3;
}

.pricing-box.premium:hover::before {
    background: linear-gradient(90deg, #ffc107, #ff6b00);
    height: 4px;
    opacity: 1;
    transform: scaleX(1);
}

.pricing-box h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0.5rem 0 1.5rem;
    color: var(--accent-color);
    line-height: 1;
}

.pricing-box.premium .price {
    color: #ffc107;
}

.price-note {
    font-size: 0.9rem;
    color: #4CAF50;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
    flex-grow: 1;
}

.features-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.9;
}

.features-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.pricing-box.premium .features-list li:before {
    color: #ffc107;
}

.btn-buy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-color), #6a11cb);
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-buy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6a11cb, var(--accent-color));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-buy:hover::before {
    opacity: 1;
}

.btn-buy i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn-buy:hover i {
    transform: translateX(3px);
}

.pricing-box.premium .btn-buy {
    background: linear-gradient(135deg, #ffc107, #ff6b00);
    color: #000;
    font-weight: 700;
}

.pricing-box.premium .btn-buy::before {
    background: linear-gradient(135deg, #ff6b00, #ffc107);
}

.buy-now:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 108, 247, 0.3);
}

.pricing-box.premium .buy-now:hover {
    background-color: #ffd700;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

.popular-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--accent-color);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.pricing-box.popular {
    border: 2px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.premium-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
    font-style: italic;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .pricing-category h3 {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 2rem;
    }
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background-color: var(--card-bg);
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--bg-color);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
        text-align: left;
    }
    
    .nav-links a:hover::after {
        display: none;
    }
    
    .discord-link {
        margin: 1rem 0 0;
        padding: 1rem 0;
        justify-content: flex-start;
    }
    
    .buy-btn {
        margin: 1rem 0 0;
        padding: 1rem 0;
        text-align: left;
    }
    
    #hero h1 {
        font-size: 2.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .server-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    #hero h1 {
        font-size: 2.2rem;
    }
    
    .section h2 {
        font-size: 1.8rem;
    }
    
    .server-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-box {
        max-width: 100%;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
    
    .payment-option {
        flex-direction: row;
        justify-content: flex-start;
        padding: 1rem;
    }
    
    .payment-option img {
        margin-bottom: 0;
        margin-right: 1rem;
        height: 30px;
    }
}

/* Payment Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    overflow: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.modal-content {
    background-color: var(--card-bg);
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-50px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-color);
    opacity: 0.7;
    transition: opacity 0.2s;
    background: none;
    border: none;
    padding: 0;
}

.close-modal:hover {
    opacity: 1;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.payment-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--card-bg);
}

.payment-option:hover {
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.payment-option img {
    height: 40px;
    width: auto;
    margin-bottom: 0.8rem;
    object-fit: contain;
}

.payment-option span {
    font-weight: 500;
    color: var(--text-color);
}

.payment-details {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    display: none;
}

.payment-details h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.payment-details p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.payment-details .account-details {
    background-color: rgba(74, 108, 247, 0.1);
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
    font-family: monospace;
    white-space: pre-line;
}

/* QR Code Image Styles */
.payment-details .qr-code-container {
    text-align: center;
    margin: 1.5rem 0;
}

.payment-details .qr-code-container .qr-code-img {
    max-width: 92%;
    height: auto;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: block;
    margin: 0 auto;
}

.payment-option.active {
    border-color: var(--accent-color);
    background-color: rgba(74, 108, 247, 0.05);
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}

/* Default cursor for the page */
html, 
body {
    cursor: url('https://i.gyazo.com/1f517fc1cbd14efc352c83f60eb42978.png') 16 16, auto;
    cursor: -webkit-image-set(url('https://i.gyazo.com/1f517fc1cbd14efc352c83f60eb42978.png') 1x, url('https://i.gyazo.com/1f517fc1cbd14efc352c83f60eb42978.png') 2x) 16 16, auto;
    scroll-behavior: smooth;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Animate elements when they come into view */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Add this to your JavaScript to trigger animations on scroll */
/*
document.addEventListener('DOMContentLoaded', () => {
    const animateElements = document.querySelectorAll('.animate-on-scroll');
    
    const observer = new IntersectionObserver((entries) => {
        entries.forEach(entry => {
            if (entry.isIntersecting) {
                entry.target.classList.add('visible');
            }
        });
    }, {
        threshold: 0.1
    });

    animateElements.forEach(element => {
        observer.observe(element);
    });
});
*/

/* Custom cursor for all interactive elements */
* {
    cursor: url('https://i.gyazo.com/1f517fc1cbd14efc352c83f60eb42978.png'), auto !important;
}

/* Pointer cursor for clickable elements */
a,
button,
.buy-now,
.payment-option,
.nav-links a,
#theme-toggle,
.close-modal,
[onclick],
[role="button"],
input[type="submit"],
input[type="button"],
input[type="reset"],
button[type="submit"],
button[type="button"] {
    cursor: url('https://i.gyazo.com/1f517fc1cbd14efc352c83f60eb42978.png'), pointer !important;
}
