:root {
    --primary-color: #FF0000;
    /* Red from the flyer */
    --secondary-color: #FF4500;
    /* OrangeRed for accents */
    --bg-dark: #0a0a0a;
    --bg-darker: #000000;
    --text-light: #ffffff;
    --text-dim: #cccccc;
    --card-bg: rgba(20, 0, 0, 0.6);
    /* Dark red tint */
    --glass-border: rgba(255, 0, 0, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(rgba(5, 5, 5, 0.85), rgba(5, 5, 5, 0.9)), url('bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

/* Typography */
h1,
h2,
h3 {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
}

.highlight {
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    backdrop-filter: blur(10px);
    background: rgba(10, 10, 10, 0.8);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid var(--glass-border);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 100px;
    width: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* Removed background to let body background show through */
}

.hero-content {
    text-align: center;
    z-index: 2;
}

/* Glitch Effect */
.glitch {
    font-size: 4rem;
    font-weight: 900;
    position: relative;
    color: var(--text-light);
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -1px 0 #cc0000;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-1 2s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -1px 0 #ffffff;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% {
        clip: rect(30px, 9999px, 10px, 0);
    }

    100% {
        clip: rect(80px, 9999px, 90px, 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip: rect(10px, 9999px, 70px, 0);
    }

    100% {
        clip: rect(20px, 9999px, 40px, 0);
    }
}

.fps-counter-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
}

.fps-old {
    font-size: 2rem;
    padding: 10px 20px;
    border: 2px solid white;
    background: rgba(0, 0, 0, 0.5);
    color: white;
}

.fps-new {
    font-size: 3rem;
    padding: 15px 30px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 20px var(--primary-color);
    background: black;
    color: var(--primary-color);
    /* Yellow/Gold for high FPS */
    animation: pulse 1.5s infinite;
}

.fps-arrow {
    color: white;
    font-size: 2rem;
}

.service-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 0 10px var(--primary-color);
}

.subtitle {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.7);
    display: inline-block;
    padding: 5px 10px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 20px var(--primary-color);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 40px var(--primary-color);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 20px var(--primary-color);
    }
}

.cta-button {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.cta-button:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
}

/* Pricing Section */
.pricing-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.1);
}

.pricing-card.recommended {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.2);
    transform: scale(1.05);
}

.pricing-card.recommended:hover {
    box-shadow: 0 0 50px rgba(255, 0, 0, 0.4);
}

.card-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.features-list li {
    margin-bottom: 15px;
    color: var(--text-dim);
    display: flex;
    align-items: center;
}

.features-list li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.card-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    transition: var(--transition);
    border: 1px solid transparent;
}

.pricing-card:hover .card-btn {
    background: var(--primary-color);
    color: var(--bg-dark);
}

/* Community Section */
.community-section {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(to top, var(--bg-darker), transparent);
}

.community-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.community-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 150px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-light);
    transition: var(--transition);
}

.community-card i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.community-card.whatsapp:hover {
    background: #25D366;
    color: white;
    transform: scale(1.05);
}

.community-card.discord:hover {
    background: #5865F2;
    color: white;
    transform: scale(1.05);
}

.community-card.youtube:hover {
    background: #FF0000;
    color: white;
    transform: scale(1.05);
}

.community-card.download-item {
    width: 300px;
    height: auto;
    min-height: 150px;
    padding: 20px;
}

.community-card.download-item span {
    font-size: 1.1rem;
    word-wrap: break-word;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .glitch {
        font-size: 2.5rem;
    }

    .hero-content {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
        /* Mobile menu implementation can be added if needed */
    }
}

/* Video Section */
.videos-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, transparent, rgba(20, 0, 0, 0.5));
}

.video-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 560px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    display: block;
}

.video-thumbnail {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-wrapper:hover .video-thumbnail img {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.video-wrapper:hover .play-button {
    background: #ff0000;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.8);
}