/* Reset and Base Styles */
html{
    scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #00FFFF;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.logo-animate .logo-text {
    display: inline-block;
    animation: logo-bounce 1s infinite alternate;
    transition: color 0.3s;
    color: #00FFFF;
}

.logo-animate:hover .logo-text {
    color: #ff9800;
    animation: logo-bounce 0.4s;
}

@keyframes logo-bounce {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-8px) scale(1.08); }
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 900;
    color: #00FFFF;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.7);
}

.logo-accent {
    color: #FF6600;
    font-size: 0.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
}

.nav-link:hover {
    color: #00FFFF;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00FFFF, #8A2BE2);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #00FFFF;
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image:
        linear-gradient(135deg, rgba(10,10,30,0.88) 0%, rgba(2, 44, 47, 0.58) 60%, rgba(39, 8, 67, 0.68) 100%),
        url('/assets/banner.jpg');
    background-size: cover;
    background-position: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 102, 0, 0.05) 0%, transparent 70%);
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #00FFFF, #8A2BE2, #FF6600);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
    line-height: 1.3;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #cccccc;
    line-height: 1.8;
}

.cta-button {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.2), rgba(138, 43, 226, 0.2));
    border: 2px solid #00FFFF;
    color: #00FFFF;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.3), rgba(138, 43, 226, 0.3));
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    transform: translateY(-2px);
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #00FFFF, transparent),
        radial-gradient(2px 2px at 40px 70px, #8A2BE2, transparent),
        radial-gradient(1px 1px at 90px 40px, #FF6600, transparent),
        radial-gradient(1px 1px at 130px 80px, #39FF14, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: particleFloat 20s linear infinite;
    opacity: 0.3;
}

@keyframes particleFloat {
    from { transform: translateY(0px); }
    to { transform: translateY(-200px); }
}

/* About Section */

.about-image img {
    width: 540px;
    max-width: 100%;
    border-radius: 18px;
    box-shadow: 0 0 32px 0 rgba(0, 255, 255, 0.25), 0 4px 32px 0 rgba(0,0,0,0.18);
    border: 3px solid #00ffe7;
    transition: transform 0.5s cubic-bezier(.4,2,.6,1), box-shadow 0.4s;
    animation: floatImage 3.5s ease-in-out infinite;
    background: linear-gradient(135deg, #0fffc3 0%, #00bfff 100%);
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 0 32px 0 rgba(0, 255, 255, 0.25), 0 4px 32px 0 rgba(0,0,0,0.18);
    }
    50% {
        transform: translateY(-16px) scale(1.03);
        box-shadow: 0 0 48px 4px rgba(0, 255, 255, 0.35), 0 8px 40px 0 rgba(0,0,0,0.22);
    }
}

.about-image img:hover {
    transform: scale(1.06) rotate(-2deg);
    box-shadow: 0 0 64px 8px #00ffe7, 0 8px 40px 0 rgba(0,0,0,0.28);
    border-color: #fff;
    filter: brightness(1.08) saturate(1.2);
}
.about {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.about-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #cccccc;
    line-height: 1.8;
}

.about-image {
    position: relative;
    height: 400px;
}

.digital-interface {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(138, 43, 226, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    overflow: hidden;
}

.interface-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: gridPulse 2s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.data-points {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.3) 2px, transparent 2px);
    background-size: 30px 30px;
    animation: dataFlow 3s linear infinite;
}

@keyframes dataFlow {
    from { transform: translate(0, 0); }
    to { transform: translate(10px, -10px); }
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: #0a0a0a;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05), rgba(138, 43, 226, 0.05));
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    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, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #00FFFF;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.icon-chip {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #00FFFF, #8A2BE2);
    border-radius: 15px;
    position: relative;
}

.icon-chip::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%;
    height: 60%;
    background: #0a0a0a;
    border-radius: 5px;
}

.icon-network {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid #00FFFF;
    position: relative;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.2), transparent);
}

.icon-network::before,
.icon-network::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: #00FFFF;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.icon-network::before {
    top: 20%;
    left: 20%;
    animation: networkPulse 2s ease-in-out infinite;
}

.icon-network::after {
    bottom: 20%;
    right: 20%;
    animation: networkPulse 2s ease-in-out infinite 1s;
}

@keyframes networkPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.icon-crypto {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFD700, #FF6600);
    border-radius: 10px;
    position: relative;
    transform: rotate(45deg);
}

.icon-crypto::before {
    content: '₿';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    font-size: 2rem;
    color: #0a0a0a;
    font-weight: bold;
}

.icon-adaptive {
    width: 100%;
    height: 100%;
    background: conic-gradient(#00FFFF, #8A2BE2, #FF6600, #39FF14, #00FFFF);
    border-radius: 50%;
    animation: adaptiveRotate 3s linear infinite;
    position: relative;
}

.icon-adaptive::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 60%;
    background: #0a0a0a;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

@keyframes adaptiveRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.icon-diagnostics {
    width: 100%;
    height: 100%;
    border: 2px solid #39FF14;
    border-radius: 10px;
    position: relative;
    background: rgba(57, 255, 20, 0.1);
}

.icon-diagnostics::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%;
    height: 10%;
    background: #39FF14;
    animation: diagnosticsScan 2s ease-in-out infinite;
}

@keyframes diagnosticsScan {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(300%); }
}

.feature-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #00FFFF;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Games Section */
.games {
    padding: 6rem 0;
    background: linear-gradient(180deg, #1a1a2e 0%, #0a0a0a 100%);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.game-card {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05), rgba(138, 43, 226, 0.05));
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(138, 43, 226, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover::before {
    opacity: 1;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: #00FFFF;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

.game-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.game-content h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #00FFFF;
}

.game-content p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.game-button {
    font-family: 'Orbitron', monospace;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.2), rgba(138, 43, 226, 0.2));
    border: 2px solid #00FFFF;
    color: #00FFFF;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.game-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.game-button:hover::before {
    left: 100%;
}

.game-button:hover {
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.3), rgba(138, 43, 226, 0.3));
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Disclaimer */
.disclaimer {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05), rgba(138, 43, 226, 0.05));
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.disclaimer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.disclaimer-content h3 {
    font-family: 'Orbitron', monospace;
    color: #FF6600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.disclaimer-content p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: #0a0a0a;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-copyright p {
    font-family: 'Orbitron', monospace;
    color: #00FFFF;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-link:hover {
    color: #00FFFF;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(0, 255, 255, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 15px;
    }

    .feature-card,
    .game-content {
        padding: 1.5rem;
    }
}

.disclaimer-content h3:last-child {
    display: inline-block;
    font-size: 2.6rem;
    font-family: 'Orbitron', 'Exo 2', sans-serif;
    color: #ff0055;
    letter-spacing: 0.15em;
    background: linear-gradient(90deg, #ff0055 40%, #ffbe00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse18 1.4s infinite alternate;
    margin-top: 18px;
    margin-bottom: 0;
    text-shadow: 0 0 12px #ff0055aa, 0 0 32px #ffbe0055;
    filter: brightness(1.2);
}

@keyframes pulse18 {
    0% {
        transform: scale(1) rotate(-2deg);
        text-shadow: 0 0 12px #ff0055aa, 0 0 32px #ffbe0055;
        filter: brightness(1.2);
    }
    100% {
        transform: scale(1.12) rotate(2deg);
        text-shadow: 0 0 24px #ff0055cc, 0 0 48px #ffbe00aa;
        filter: brightness(1.35);
    }
}

.privacy-policy{
    height: 100vh;
    margin-top: 100px;
}
.terms{
    height: 100vh;
    margin-top: 100px;
}