:root {
    --primary-bg: #0A0A0A; /* Changed to black */
    --accent-purple: #CC0000; /* Changed to dark red */
    --accent-cyan: #FF3333; /* Changed to bright red */
    --accent-red: #FF5555; /* Adjusted red */
    --accent-yellow: #FFAA33; /* Adjusted to reddish-orange */
    --text-main: #E0E0E0;
    --text-secondary: #A0A0A0;
    --card-bg: rgba(20, 20, 20, 0.8); /* Darkened */
    --header-bg: rgba(10, 10, 10, 0.95); /* Darkened */
    --transition: all 0.3s ease;
    --neon-glow: 0 0 9px var(--accent-purple), 0 0 18px var(--accent-purple);
    --game-font: 'Orbitron', 'Segoe UI', sans-serif;
    --text-font: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--text-font);
    background-color: var(--primary-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    perspective: 1000px;
}

/* Advanced Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image: 
        linear-gradient(rgba(204, 0, 0, 0.1) 1px, transparent 1px), /* Changed to red */
        linear-gradient(90deg, rgba(204, 0, 0, 0.1) 1px, transparent 1px); /* Changed to red */
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(60deg) translateY(-100px) translateX(-100px);
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0) translateX(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(-50px) translateX(-50px); }
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(40px);
    animation: float 15s infinite linear;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-purple); /* Changed to red */
    top: 10%;
    left: 10%;
    animation-duration: 25s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-cyan); /* Changed to red */
    top: 60%;
    left: 70%;
    animation-duration: 20s;
    animation-delay: -5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--accent-red); /* Adjusted red */
    top: 30%;
    left: 60%;
    animation-duration: 30s;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(100px, 50px) rotate(90deg);
    }
    50% {
        transform: translate(50px, 100px) rotate(180deg);
    }
    75% {
        transform: translate(-50px, 75px) rotate(270deg);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(204, 0, 0, 0.3); /* Changed to red */
    transition: var(--transition);
}

header.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    background: rgba(10, 10, 10, 0.98); /* Darkened */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-family: var(--game-font);
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(45deg, var(--accent-purple), var(--accent-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: var(--neon-glow);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.logo:hover::after {
    left: 100%;
}

.logo i {
    margin-right: 10px;
    font-size: 28px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
    position: relative;
}

nav ul li a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    padding: 5px 0;
}

nav ul li a i {
    margin-right: 8px;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(to right, var(--accent-purple), var(--accent-cyan));
    transition: width 0.3s;
    z-index: -1;
}

nav ul li a:hover {
    color: var(--accent-cyan);
}

nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: 1px solid rgba(204, 0, 0, 0.3); /* Changed to red */
    font-size: 20px;
    cursor: pointer;
    color: var(--accent-purple);
    width: 40px;
    height: 40px;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.mobile-menu-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(204, 0, 0, 0.2), transparent); /* Changed to red */
    transition: var(--transition);
    z-index: -1;
}

.mobile-menu-btn:hover::before {
    left: 100%;
}

.mobile-menu-btn:hover {
    color: var(--accent-cyan);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(255, 51, 51, 0.5); /* Changed to red */
}

/* Mobile Navigation Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
}

.nav-overlay.active {
    display: block;
}

/* Hero Section */
.hero {
    padding: 180px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(204, 0, 0, 0.1) 0%, transparent 70%); /* Changed to red */
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: var(--game-font);
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--accent-purple), var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: gradientShift 5s ease infinite;
    background-size: 200% auto;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

@keyframes gradientShift {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-secondary);
}

/* Support Content */
.support-content {
    padding: 80px 0;
    background: rgba(15, 15, 15, 0.5); /* Darkened */
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-family: var(--game-font);
    font-size: 2.5rem;
    color: var(--text-main);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--accent-purple), var(--accent-cyan));
}

.support-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 40px;
    transition: var(--transition);
    border: 1px solid rgba(204, 0, 0, 0.2); /* Changed to red */
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transform: translateZ(0);
    margin-bottom: 40px;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--accent-purple), var(--accent-cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.support-card:hover {
    transform: translateY(-5px) rotateX(5deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-purple);
}

.support-card:hover::before {
    transform: scaleX(1);
}

.support-card h3 {
    font-family: var(--game-font);
    margin-bottom: 20px;
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
}

.support-card h3 i {
    margin-right: 15px;
    font-size: 28px;
}

.support-card p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.support-card ul {
    list-style: none;
    margin-left: 20px;
    margin-bottom: 20px;
}

.support-card ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
    color: var(--text-secondary);
}

.support-card ul li::before {
    content: '•';
    color: var(--accent-purple);
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

.highlight {
    background: rgba(204, 0, 0, 0.1); /* Changed to red */
    border-left: 3px solid var(--accent-cyan);
    padding: 20px;
    border-radius: 5px;
    margin: 25px 0;
}

.highlight p {
    margin: 0;
    color: var(--text-main);
    font-style: italic;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    color: var(--accent-cyan);
    font-weight: bold;
    text-decoration: none;
    transition: var(--transition);
    padding: 10px 20px;
    border: 1px solid var(--accent-cyan);
    border-radius: 30px;
    margin: 10px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-email::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 51, 51, 0.2), transparent); /* Changed to red */
    transition: var(--transition);
    z-index: -1;
}

.contact-email:hover {
    color: var(--primary-bg);
    background: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(255, 51, 51, 0.5); /* Changed to red */
}

.contact-email:hover::before {
    left: 100%;
}

.copy-btn {
    margin-left: 10px;
    background: none;
    border: none;
    color: var(--accent-cyan);
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
    padding: 5px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.copy-btn:hover {
    background: rgba(255, 51, 51, 0.1); /* Changed to red */
    transform: scale(1.1);
}

.faq-item {
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(204, 0, 0, 0.2); /* Changed to red */
    padding-bottom: 25px;
}

.faq-question {
    font-family: var(--game-font);
    color: var(--accent-purple);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent-cyan);
}

.faq-question i {
    margin-right: 15px;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-answer {
    color: var(--text-secondary);
    padding-left: 35px;
    display: none;
}

/* Toast notification */
.toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--card-bg);
    color: var(--text-main);
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.toast.show {
    opacity: 1;
    visibility: visible;
}

.toast i {
    margin-right: 10px;
    color: var(--accent-cyan);
}

/* Footer */
footer {
    background: var(--header-bg);
    padding: 70px 0 20px;
    border-top: 1px solid rgba(204, 0, 0, 0.3); /* Changed to red */
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-family: var(--game-font);
    margin-bottom: 20px;
    color: var(--accent-cyan);
    position: relative;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-column h3 i {
    margin-right: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-purple);
}

.footer-column p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-column ul li a i {
    margin-right: 8px;
    font-size: 14px;
}

.footer-column ul li a:hover {
    color: var(--accent-cyan);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent-purple), var(--accent-cyan));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a:hover {
    transform: translateY(-3px) rotate(5deg);
    color: white;
    box-shadow: 0 5px 15px rgba(204, 0, 0, 0.4); /* Changed to red */
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(204, 0, 0, 0.2); /* Changed to red */
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Advanced Particle Effect */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 15px 20px;
    }
    
    nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 70%;
        height: calc(100vh - 70px);
        background: var(--header-bg);
        padding: 20px;
        border-top: 1px solid rgba(204, 0, 0, 0.3); /* Changed to red */
        backdrop-filter: blur(10px);
        z-index: 1000;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    nav.active {
        display: block;
        transform: translateX(0);
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .support-card {
        padding: 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .social-links {
        justify-content: center;
    }
}