@charset "utf-8";
/* CSS Document */

:root {
 --primary-dark: #0a0e17;
 --secondary-dark: #121a2b;
 --metallic: linear-gradient(135deg, #1a2233 0%, #2a3448 100%);
 --neon-blue: #00f3ff;
 --cyan: #0af;
 --jet-orange: #ff6a00;
 --tactical-red: #ff2a2a;
 --hud-green: #0f0;
 --glow-blue: rgba(0, 243, 255, 0.7);
 --glow-orange: rgba(255, 106, 0, 0.7);
 --helicopter-purple: #a855f7;
 --cessna-gold: #fbbf24;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Exo 2', sans-serif;
    background-color: var(--primary-dark);
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
    background-image: radial-gradient(circle at 10% 20%, rgba(10, 40, 80, 0.15) 0%, transparent 20%),  radial-gradient(circle at 90% 80%, rgba(255, 106, 0, 0.1) 0%, transparent 20%);
}
h1, h2, h3, h4, .platform-nav span {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 243, 255, 0.2);
    padding: 15px 0;
    transition: all 0.3s ease;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-icon {
    color: var(--neon-blue);
    font-size: 24px;
    text-shadow: 0 0 10px var(--glow-blue);
}
.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 24px;
    background: linear-gradient(to right, var(--neon-blue), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
}
.games-nav {
    display: flex;
    gap: 30px;
    margin-left: 40px;
}
.game-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #aaa;
    font-size: 12px;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 4px;
    position: relative;
}
.game-nav-item:hover, .game-nav-item.active {
    color: white;
    transform: translateY(-3px);
}
.game-nav-item.jet-fighter:hover {
    color: var(--neon-blue);
    background: rgba(0, 243, 255, 0.1);
}
.game-nav-item.helicopter:hover {
    color: var(--helicopter-purple);
    background: rgba(168, 85, 247, 0.1);
}
.game-nav-item.cessna:hover {
    color: var(--cessna-gold);
    background: rgba(251, 191, 36, 0.1);
}
.game-nav-icon {
    font-size: 20px;
    margin-bottom: 5px;
}
.platform-nav {
    display: flex;
    gap: 20px;
}
.platform-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #aaa;
    font-size: 12px;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 4px;
}
.platform-nav a i {
    font-size: 20px;
    margin-bottom: 5px;
}
.platform-nav a:hover, .platform-nav a.active {
    color: white;
    background: rgba(0, 243, 255, 0.1);
    transform: translateY(-3px);
}
.platform-nav .android:hover {
    color: #3ddc84;
}
.platform-nav .ios:hover {
    color: #007aff;
}
.platform-nav .tv:hover {
    color: var(--jet-orange);
}
.platform-nav .vr:hover {
    color: var(--cyan);
}
.platform-nav .sim:hover {
    color: var(--tactical-red);
}
.platform-nav1 {
    display: flex;
    gap: 20px;
}
.platform-nav1 a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #aaa;
    font-size: 12px;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 4px;
}
.platform-nav1 a i {
    font-size: 20px;
    margin-bottom: 5px;
}
.platform-nav1 a:hover, .platform-nav1 a.active {
    color: white;
    background: rgba(0, 243, 255, 0.1);
    transform: translateY(-3px);
}
.platform-nav1 .android:hover {
    color: #3ddc84;
}
.platform-nav1 .ios:hover {
    color: #007aff;
}
.platform-nav1 .tv:hover {
    color: var(--jet-orange);
}
.platform-nav1 .vr:hover {
    color: var(--cyan);
}
.platform-nav1 .sim:hover {
    color: var(--tactical-red);
}
/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center;
    background-size: cover;
    opacity: 0.2;
    z-index: -1;
}
.hero-content {
    max-width: 800px;
    z-index: 2;
}
.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, var(--neon-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ccc;
    max-width: 1024px;
}
.hero1 {
    height: 150vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}
.hero1-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center;
    background-size: cover;
    opacity: 0.2;
    z-index: -1;
}
.hero1-content {
    max-width: 800px;
    z-index: 2;
}
.hero1 h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, var(--neon-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}
.hero1 p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ccc;
    max-width: 1024px;
}
.games-intro {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}
.game-card {
    background: var(--secondary-dark);
    border-radius: 10px;
    padding: 20px;
    flex: 1;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.game-card.jet-fighter:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.2);
}
.game-card.helicopter:hover {
    border-color: var(--helicopter-purple);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
}
.game-card.cessna:hover {
    border-color: var(--cessna-gold);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.2);
}
.game-logo {
    font-size: 40px;
    margin-bottom: 15px;
}
.jet-fighter .game-logo {
    color: var(--neon-blue);
    text-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
}
.helicopter .game-logo {
    color: var(--helicopter-purple);
    text-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
}
.cessna .game-logo {
    color: var(--cessna-gold);
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.5);
}
.game-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.game-card p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 15px;
}
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(to right, var(--neon-blue), var(--cyan));
    color: var(--primary-dark);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
    border: none;
    cursor: pointer;
}
.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.8);
}
.cta-button1 {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(to right, var(--neon-blue), var(--cyan));
    color: var(--primary-dark);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
    border: none;
    cursor: pointer;
}
.cta-button1:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.8);
}
/* Section Styling */
.platform-section {
    padding: 100px 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.platform-section:nth-child(odd) {
    background: var(--secondary-dark);
}
.section-title {
    align-items: center;
    margin-bottom: 60px;
    gap: 15px;
}
.section-icon {
    width: 60px;
	margin: 0 auto;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--metallic);
    border-radius: 50%;
    font-size: 24px;
    color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
    border: 1px solid rgba(0, 243, 255, 0.2);
}
.section-title h2 {
    font-size: 2.5rem;
    background: linear-gradient(to right, #fff, var(--neon-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: center;
}
.section-text {
    /*padding-right: 20px;*/
}
.section-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #fff;
}
.section-text p {
    color: #aaa;
    margin-bottom: 30px;
    font-size: 1.1rem;
}
.platform-features {
    list-style: none;
    margin-bottom: 30px;
}
.platform-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.platform-features li i {
    color: var(--hud-green);
}
/* Games Logos Section */
.games-platform-logos {
    display: flex;
    justify-content: space-around;
    margin: 40px 0;
    padding: 30px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.game-platform-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    padding: 20px;
    transition: all 0.3s ease;
}
.game-platform-logo:hover {
    transform: translateY(-10px);
}
.game-platform-icon {
    font-size: 50px;
    margin-bottom: 15px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.game-platform-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 5px;
}
.game-platform-desc {
    font-size: 0.9rem;
    color: #aaa;
    max-width: 200px;
}
/* Device Mockups */
.device-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mockup-image {
    width: 100%;
	height: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.5s ease;
}
.device-mockup:hover .mockup-image {
    transform: translateY(-10px);
}
.android .mockup-image {
    border: 2px solid #3ddc84;
    box-shadow: 0 20px 40px rgba(61, 220, 132, 0.2);
}
.ios .mockup-image {
    border: 2px solid #007aff;
    box-shadow: 0 20px 40px rgba(0, 122, 255, 0.2);
}
.tv .mockup-image {
    border: 2px solid var(--jet-orange);
    box-shadow: 0 20px 40px rgba(255, 106, 0, 0.2);
}
.vr .mockup-image {
    border: 2px solid var(--cyan);
    box-shadow: 0 20px 40px rgba(0, 170, 255, 0.2);
}
.simulator .mockup-image {
    border: 2px solid var(--tactical-red);
    box-shadow: 0 20px 40px rgba(255, 42, 42, 0.2);
}
/* Store Badges */
.store-badges {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}
.badge {
    display: inline-block;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
}
.badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}
.google-play {
    background: linear-gradient(to right, #3ddc84, #1e8e3e);
}
.app-store {
    background: linear-gradient(to right, #007aff, #0040ff);
}
/* HUD Elements */
.hud-overlay {
    position: fixed;
    pointer-events: none;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
}
.radar {
    position: absolute;
    top: 50px;
    right: 50px;
    width: 150px;
    height: 150px;
    border: 2px solid var(--hud-green);
    border-radius: 50%;
    overflow: hidden;
}
.radar-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--hud-green);
    transform-origin: center;
    animation: radar-rotate 4s linear infinite;
}
 @keyframes radar-rotate {
 0% {
transform: rotate(0deg);
}
 100% {
transform: rotate(360deg);
}
}
.altitude-meter {
    position: absolute;
    bottom: 50px;
    left: 50px;
    width: 30px;
    height: 200px;
    border: 1px solid var(--neon-blue);
    border-radius: 4px;
    overflow: hidden;
}
.altitude-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, var(--neon-blue), var(--cyan));
    animation: altitude-change 3s ease-in-out infinite alternate;
}
 @keyframes altitude-change {
 0% {
height: 30%;
}
 100% {
height: 90%;
}
}
/* Footer */
footer {
    background: var(--primary-dark);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(0, 243, 255, 0.2);
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}
.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--neon-blue);
}
.games-footer {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.game-footer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #aaa;
}
.game-footer-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    transform: translateX(5px);
}
.game-footer-item.jet-fighter:hover {
    border-left: 3px solid var(--neon-blue);
}
.game-footer-item.helicopter:hover {
    border-left: 3px solid var(--helicopter-purple);
}
.game-footer-item.cessna:hover {
    border-left: 3px solid var(--cessna-gold);
}
.game-footer-icon {
    font-size: 20px;
}
.platform-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.platform-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--secondary-dark);
    border-radius: 50%;
    color: #aaa;
    font-size: 18px;
    transition: all 0.3s ease;
}
.platform-badge:hover {
    color: white;
    transform: translateY(-3px);
}
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--secondary-dark);
    border-radius: 50%;
    color: #aaa;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-link:hover {
    color: white;
    transform: translateY(-3px);
}
.discord:hover {
    color: #5865F2;
    background: rgba(88, 101, 242, 0.1);
}
.youtube:hover {
    color: #FF0000;
    background: rgba(255, 0, 0, 0.1);
}
.twitter:hover {
    color: #1DA1F2;
    background: rgba(29, 161, 242, 0.1);
}
.newsletter-form {
    display: flex;
    margin-top: 15px;
}
.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    background: var(--secondary-dark);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 4px 0 0 4px;
    color: white;
    font-family: 'Exo 2', sans-serif;
}
.newsletter-form button {
    padding: 0 20px;
    background: linear-gradient(to right, var(--neon-blue), var(--cyan));
    color: var(--primary-dark);
    border: none;
    border-radius: 0 4px 4px 0;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}
.newsletter-form button:hover {
    opacity: 0.9;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
}
.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: var(--neon-blue);
}
.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1100px) {
.section-content {
    grid-template-columns: 1fr;
    gap: 40px;
}
.section-text {
    padding-right: 0;
}
.footer-content {
    grid-template-columns: repeat(2, 1fr);
}
.games-platform-logos {
    flex-direction: column;
    gap: 30px;
}
.games-intro {
    flex-direction: column;
}
}

@media (max-width: 900px) {
.games-nav {
    display: none;
}
}

@media (max-width: 768px) {
.hero h1 {
    font-size: 2.5rem;
}
.section-title h2 {
    font-size: 2rem;
}
.platform-nav {
    gap: 10px;
}
.platform-nav a {
    padding: 5px;
    font-size: 10px;
}
.platform-nav a i {
    font-size: 16px;
}
	.platform-nav1 {
    gap: 10px;
}
.platform-nav1 a {
    padding: 5px 15px;
    font-size: 15px;
}
.platform-nav1 a i {
    font-size: 20px;
}
.store-badges {
    flex-direction: column;
}
.hud-overlay {
    display: none;
}

}

@media (max-width: 576px) {
.footer-content {
    grid-template-columns: 1fr;
}
.platform-nav {
    
}
	.platform-nav1 {
    
}
.he
.hero h1 {
    font-size: 2rem;
}
.hero p {
    font-size: 1rem;
}
}

