@font-face {
    font-family: 'Neuro';
	src: url('PilotCommandExpanded-8MY4g.otf') format('opentype');
}

@font-face {
    font-family: 'Blender';
	src: url('BlenderPro-Bold.ttf') format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'Blender';
	src: url('BlenderPro-Medium.ttf') format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'Blender';
	src: url('BlenderPro-Thin.ttf') format('truetype');
    font-weight: 300;
}

:root {
    --neon-blue: #00f3ff;
    --neon-pink: #ff00ff;
    --neon-purple: #9d00ff;
    --neon-green: #00ff9d;
    --dark-bg: #0a0a12;
    --darker-bg: #050508;
    --card-bg: rgba(20, 20, 30, 0.7);
    --text-color: #e0e0e0;
    --accent-color: #ff3e7f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    font-family: Blender;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 1.25rem;
}

.neuro {	
	font-family: Neuro;
	font-weight: lighter;	    
}

@keyframes slide-background {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.neuro_grad
{
	background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink), var(--neon-blue), var(--neon-pink), var(--neon-blue), var(--neon-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
	background-size: 400% 400%;
	animation: slide-background 7.5s ease-in-out infinite alternate; 
}

.neuro_grad_2
{
	background: linear-gradient(45deg, var(--neon-purple), var(--neon-pink), var(--neon-purple), var(--neon-pink), var(--neon-purple), var(--neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
	background-size: 400% 400%;
	animation: slide-background 5s ease-in-out infinite alternate; 
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: rgba(10, 10, 18, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--neon-blue);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;    
    /* color: var(--neon-blue); */
	text-shadow: 0 0 10px rgba(0, 243, 255, 0.25);	
}

/* .logo span {
    color: var(--neon-pink);
}*/

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--neon-blue);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-blue);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(157, 0, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;  
    font-size: 1.1rem;  
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(157, 0, 255, 0.7);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--neon-blue);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section with Video Background */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(10, 10, 18, 0.9) 0%,
        rgba(157, 0, 255, 0.05) 50%,
        rgba(10, 10, 18, 0.9) 100%
    );

    /* background: repeating-linear-gradient(0deg, #0E0D0E 25%, #0E0D0E 50%, #171819 50%, #171819 75%);
    background-size: 10px 10px; */

    /* background-color: black; */
    z-index: -1;
}

.hero-content {
    /* max-width: 900px; */
    padding: 0 20px;
    z-index: 1;
}

.hero h1 {
    font-size: 8rem;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.25);
    line-height: 1.1;
}

.hero p {
    font-size: 1.5rem;
    margin: 0 auto 40px;
    color: #e0e0e0;
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.secondary-button {
    background: transparent;
    color: var(--neon-blue);
    border: 2px solid var(--neon-blue);
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

.secondary-button:hover {
    background: rgba(0, 243, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
}

/* Features Section */
.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: var(--neon-blue);    
	text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
    margin: 20px auto;
    border-radius: 3px;
}

.features {
    padding: 30px 0;
    background-color: var(--darker-bg);
    position: relative;
    padding-bottom: 60px;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 243, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.3);
    border-color: var(--neon-blue);
}

.feature-icon {
    font-size: 2.0rem;
    margin-bottom: 20px;
    /* color: var(--neon-pink); */
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--neon-blue);
}

/* Games Section - HD Aspect Ratio Cards */
.games {
    padding: 30px 0;
    padding-bottom: 60px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
}

.game-card {
    background: var(--card-bg);
    border-radius: 15px;
    /* padding: 25px; */
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 243, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;

    background-size: cover;
    background-position: center center;    
    cursor: pointer;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.game-card:hover::before {
    left: 100%;
}

.game-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.4);
    border-color: var(--neon-blue);
}

.game-card h3 {
    font-size: 1.4rem;
    z-index: -1;
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;    
}

/* Technologies Section */
.technologies {
    padding: 30px 0;
    background-color: var(--darker-bg);
    padding-bottom: 60px;
}

.tech-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 15px;
}

.tech-tab {
    background: var(--card-bg);
    border: 1px solid rgba(0, 243, 255, 0.3);
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1.3rem;
}
.tech-tab:hover{
    background: rgba(0, 243, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
}

.tech-tab.active {
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    color: white;
    border-color: transparent;
}

.tech-content {
    display: none;
}

.tech-content.active {
    display: block;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.tech-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(0, 243, 255, 0.2);
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 243, 255, 0.3);
}

.tech-card h4 {
    color: var(--neon-blue);
    margin-bottom: 12px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* .tech-card h4 i {
    color: var(--neon-pink);
} */

/* Advantages Section */
.advantages {
    padding: 30px 0;
    padding-bottom: 60px;
}

.advantage-list {
    max-width: 900px;
    margin: 0 auto;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    background: var(--card-bg);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid var(--neon-blue);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(0, 243, 255, 0.3);
}

.advantage-icon {
    font-size: 1.8rem;
    /* color: var(--neon-pink); */
    margin-right: 18px;
    flex-shrink: 0;
}

/* Pricing Section */
.pricing {
    padding: 30px 0;
    background-color: var(--darker-bg);
    padding-bottom: 60px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 243, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.pricing-card.popular {
    border-color: var(--neon-pink);
    transform: scale(1.05);
}

.pricing-card.popular::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: 0;
    right: 0;
    background: var(--neon-pink);
    color: white;
    padding: 6px 15px;
    font-size: 0.8rem;
    font-weight: bold;
    border-bottom-left-radius: 12px;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.3);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.price {
    font-size: 3rem;
    color: var(--neon-blue);
    margin: 20px 0;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.price span {
    font-size: 1.1rem;
    color: #b0b0b0;
}

.pricing-features {
    list-style: none;
    margin: 25px 0;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--neon-pink);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: var(--darker-bg);
    padding: 30px 0 30px;
    border-top: 1px solid rgba(0, 243, 255, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--neon-blue);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-blue);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border-radius: 50%;
    color: var(--neon-blue);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--neon-blue);
    color: white;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 20px 0;
    }
    
    .logo {
        font-size: 1.8rem;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: rgba(10, 10, 18, 0.98);
        flex-direction: column;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .nav-links a {
        font-size: 1.1rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .cta-button {
        display: none;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .game-card {
        aspect-ratio: 16/9;
        /* padding: 20px; */
    }
    
    .game-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .game-card {
        aspect-ratio: 16/9;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}