@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Exo+2:wght@300;400;600;700&display=swap');

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Exo 2', 'Segoe UI', sans-serif;
}

body {
    color: #e0f7ff;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: 
        radial-gradient(ellipse at top, rgba(0, 247, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(255, 0, 128, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(0, 255, 65, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at center, rgba(128, 0, 255, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a23 0%, #000011 50%, #000000 100%);
    background-attachment: fixed;
    background-size: 200% 200%, 300% 300%, 250% 250%, 400% 400%, 100% 100%;
    animation: backgroundShift 40s ease-in-out infinite;
    overflow-x: hidden;
    position: relative;
}

/* AI Particles Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(1px 1px at 20px 30px, rgba(0, 247, 255, 0.8), transparent),
        radial-gradient(1px 1px at 40px 70px, rgba(255, 0, 128, 0.6), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(0, 255, 65, 0.7), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 64, 0, 0.5), transparent),
        radial-gradient(1px 1px at 160px 30px, rgba(128, 0, 255, 0.6), transparent),
        radial-gradient(1px 1px at 200px 60px, rgba(0, 247, 255, 0.4), transparent),
        radial-gradient(1px 1px at 240px 90px, rgba(255, 0, 128, 0.5), transparent),
        radial-gradient(1px 1px at 280px 20px, rgba(0, 255, 65, 0.6), transparent);
    background-repeat: repeat;
    background-size: 300px 200px;
    animation: particleMove 25s linear infinite;
    z-index: -2;
    opacity: 0.4;
}

@keyframes particleMove {
    0% { transform: translate(0px, 0px); }
    33% { transform: translate(30px, -30px); }
    66% { transform: translate(-20px, 20px); }
    100% { transform: translate(0px, 0px); }
}

/* Content Wrapper */
.content-wrapper {
    position: relative;
    z-index: 1;
    flex: 1 0 auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header and Navigation */
header {
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(10, 10, 35, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 247, 255, 0.2);
    box-shadow: 0 4px 32px rgba(0, 247, 255, 0.1);
}

nav {
    width: 100%;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    padding: 0;
}

nav ul li {
    margin: 0 25px;
    position: relative;
}

nav ul li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -15px;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #00f7ff, #ff0080);
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

nav ul li:hover::before {
    opacity: 1;
}

nav ul li a {
    color: #e0f7ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    transition: all 0.3s ease;
    font-family: 'Orbitron', monospace;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00f7ff, #ff0080);
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: #00f7ff;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.6);
}

nav ul li a:hover::after {
    width: 100%;
}

/* Main Content */
main {
    flex: 1 0 auto;
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

h1 {
    font-size: clamp(48px, 8vw, 84px);
    font-weight: 900;
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Orbitron', monospace;
    background: linear-gradient(135deg, #00f7ff 0%, #ff0080 50%, #00ff41 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: textGlow 3s ease-in-out infinite alternate;
    text-shadow: 
        0 0 10px rgba(0, 247, 255, 0.5),
        0 0 20px rgba(0, 247, 255, 0.3),
        0 0 30px rgba(0, 247, 255, 0.2),
        0 0 40px rgba(255, 0, 128, 0.2);
    letter-spacing: 2px;
    filter: drop-shadow(0 0 15px rgba(0, 247, 255, 0.4));
}

@keyframes textGlow {
    0% { 
        background-position: 0% 50%;
        filter: brightness(1);
    }
    100% { 
        background-position: 100% 50%;
        filter: brightness(1.2);
    }
}

.subtitle {
    font-size: clamp(18px, 3vw, 28px);
    text-align: center;
    margin-bottom: 40px;
    color: #b8e6ff;
    font-weight: 300;
    letter-spacing: 1px;
    font-family: 'Exo 2', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* App Icon and Glow Effect */
.app-icon {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 60px auto;
}

.app-icon img {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    box-shadow: 
        0 8px 32px rgba(0, 247, 255, 0.3),
        0 0 0 2px rgba(0, 247, 255, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.app-icon:hover img {
    transform: scale(1.05);
    box-shadow: 
        0 12px 48px rgba(0, 247, 255, 0.4),
        0 0 0 3px rgba(0, 247, 255, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.dev-badge {
    position: absolute;
    top: -8px;
    right: -45px;
    background: linear-gradient(135deg, #ff0080, #ff4000);
    color: white;
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 25px;
    transform: rotate(12deg);
    box-shadow: 
        0 4px 16px rgba(255, 0, 128, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Orbitron', monospace;
    letter-spacing: 0.5px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: rotate(12deg) scale(1);
        opacity: 1;
    }
    50% { 
        transform: rotate(12deg) scale(1.05);
        opacity: 0.9;
    }
}

.glow-effect {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50px;
    background: linear-gradient(
        45deg,
        #00f7ff 0%,
        #0080ff 20%,
        #8000ff 40%,
        #ff0080 60%,
        #ff4000 80%,
        #00f7ff 100%
    );
    background-size: 300% 300%;
    animation: aiGlow 4s linear infinite;
    filter: blur(15px);
    opacity: 0.6;
    z-index: 1;
}

@keyframes aiGlow {
    0% {
        background-position: 0% 50%;
        transform: rotate(0deg);
    }
    50% {
        background-position: 100% 50%;
        transform: rotate(180deg);
    }
    100% {
        background-position: 0% 50%;
        transform: rotate(360deg);
    }
}

.app-name {
    margin-top: 25px;
    font-weight: 700;
    font-size: 21px;
    text-align: center;
    font-family: 'Orbitron', monospace;
    background: linear-gradient(135deg, #00f7ff, #ff0080);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Call to Action Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    align-items: center;
}

.cta-button {
    display: block;
    height: 70px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-4px);
}

.app-store-badge,
.google-play-badge {
    display: block;
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.cta-button:hover .app-store-badge,
.cta-button:hover .google-play-badge {
    filter: brightness(1.3) contrast(1.2);
}

/* Footer */
footer {
    background: linear-gradient(135deg, rgba(10, 10, 35, 0.95), rgba(0, 0, 0, 0.95));
    backdrop-filter: blur(20px);
    color: #b8e6ff;
    text-align: center;
    padding: 25px 0;
    width: 100%;
    flex-shrink: 0;
    border-top: 1px solid rgba(0, 247, 255, 0.2);
    font-family: 'Exo 2', sans-serif;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Content Styles for Privacy, Terms, Support */
.terms-content {
    background: rgba(10, 10, 35, 0.85);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 16px;
    margin-top: 30px;
    border: 1px solid rgba(0, 247, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 247, 255, 0.1);
    position: relative;
}

.terms-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00f7ff, transparent);
    opacity: 0.6;
}

.terms-content h2 {
    font-size: 28px;
    margin-top: 35px;
    margin-bottom: 20px;
    font-family: 'Orbitron', monospace;
    color: #00f7ff;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
}

.terms-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    font-family: 'Orbitron', monospace;
    color: #ff0080;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.terms-content p {
    margin-bottom: 18px;
    color: #e0f7ff;
    line-height: 1.7;
    font-weight: 300;
}

.terms-content a {
    color: #00f7ff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.terms-content a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #00f7ff;
    transition: width 0.3s ease;
}

.terms-content a:hover {
    text-shadow: 0 0 8px rgba(0, 247, 255, 0.6);
}

.terms-content a:hover::after {
    width: 100%;
}

.terms-content ol,
.terms-content ul {
    color: #e0f7ff;
    margin-bottom: 20px;
}

.terms-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.terms-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
}

.terms-content th,
.terms-content td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 247, 255, 0.1);
    color: #e0f7ff;
}

.terms-content th {
    background: rgba(0, 247, 255, 0.1);
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    color: #00f7ff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 12px;
}

/* Contact Content Styles */
.contact-content {
    background: rgba(10, 10, 35, 0.85);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 16px;
    margin-top: 30px;
    border: 1px solid rgba(0, 247, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 247, 255, 0.1);
}

.contact-content h2 {
    color: #00f7ff;
    margin-bottom: 15px;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 0 0 8px rgba(0, 247, 255, 0.3);
}

.contact-content p {
    color: #e0f7ff;
    margin-bottom: 25px;
    line-height: 1.6;
    font-weight: 300;
}

.contact-content a {
    color: #00f7ff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-content a:hover {
    text-shadow: 0 0 8px rgba(0, 247, 255, 0.6);
}

/* Additional AI-Focused Enhancements */

/* Glitch effect for headings */
.glitch {
    position: relative;
    color: #00f7ff;
    font-size: 4rem;
    font-weight: bold;
    text-transform: uppercase;
    animation: glitch-skew 1s infinite linear alternate-reverse;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-anim 0.5s infinite linear alternate-reverse;
    color: #ff0080;
    z-index: -1;
}

.glitch::after {
    animation: glitch-anim2 1s infinite linear alternate-reverse;
    color: #00ff41;
    z-index: -2;
}

@keyframes glitch-anim {
    0% {
        clip: rect(42px, 9999px, 44px, 0);
        transform: skew(0.85deg);
    }
    5% {
        clip: rect(12px, 9999px, 59px, 0);
        transform: skew(0.40deg);
    }
    10% {
        clip: rect(25px, 9999px, 33px, 0);
        transform: skew(0.20deg);
    }
    15% {
        clip: rect(99px, 9999px, 92px, 0);
        transform: skew(0.30deg);
    }
    20% {
        clip: rect(78px, 9999px, 80px, 0);
        transform: skew(0.50deg);
    }
    25% {
        clip: rect(65px, 9999px, 15px, 0);
        transform: skew(0.60deg);
    }
    30% {
        clip: rect(46px, 9999px, 85px, 0);
        transform: skew(0.10deg);
    }
    35% {
        clip: rect(34px, 9999px, 41px, 0);
        transform: skew(0.70deg);
    }
    40% {
        clip: rect(81px, 9999px, 39px, 0);
        transform: skew(0.90deg);
    }
    45% {
        clip: rect(6px, 9999px, 3px, 0);
        transform: skew(0.80deg);
    }
    50% {
        clip: rect(90px, 9999px, 46px, 0);
        transform: skew(0.25deg);
    }
    55% {
        clip: rect(85px, 9999px, 98px, 0);
        transform: skew(0.15deg);
    }
    60% {
        clip: rect(66px, 9999px, 23px, 0);
        transform: skew(0.35deg);
    }
    65% {
        clip: rect(42px, 9999px, 82px, 0);
        transform: skew(0.45deg);
    }
    70% {
        clip: rect(11px, 9999px, 94px, 0);
        transform: skew(0.65deg);
    }
    75% {
        clip: rect(30px, 9999px, 18px, 0);
        transform: skew(0.95deg);
    }
    80% {
        clip: rect(37px, 9999px, 37px, 0);
        transform: skew(0.75deg);
    }
    85% {
        clip: rect(71px, 9999px, 75px, 0);
        transform: skew(0.55deg);
    }
    90% {
        clip: rect(49px, 9999px, 61px, 0);
        transform: skew(0.05deg);
    }
    95% {
        clip: rect(83px, 9999px, 52px, 0);
        transform: skew(0.85deg);
    }
    100% {
        clip: rect(27px, 9999px, 29px, 0);
        transform: skew(0.95deg);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(65px, 9999px, 100px, 0);
        transform: skew(0.02deg);
    }
    5% {
        clip: rect(52px, 9999px, 74px, 0);
        transform: skew(0.05deg);
    }
    10% {
        clip: rect(79px, 9999px, 85px, 0);
        transform: skew(0.20deg);
    }
    15% {
        clip: rect(31px, 9999px, 96px, 0);
        transform: skew(0.30deg);
    }
    20% {
        clip: rect(26px, 9999px, 67px, 0);
        transform: skew(0.15deg);
    }
    25% {
        clip: rect(42px, 9999px, 73px, 0);
        transform: skew(0.25deg);
    }
    30% {
        clip: rect(63px, 9999px, 21px, 0);
        transform: skew(0.10deg);
    }
    35% {
        clip: rect(17px, 9999px, 49px, 0);
        transform: skew(0.35deg);
    }
    40% {
        clip: rect(88px, 9999px, 38px, 0);
        transform: skew(0.40deg);
    }
    45% {
        clip: rect(55px, 9999px, 92px, 0);
        transform: skew(0.45deg);
    }
    50% {
        clip: rect(16px, 9999px, 43px, 0);
        transform: skew(0.50deg);
    }
    55% {
        clip: rect(69px, 9999px, 56px, 0);
        transform: skew(0.55deg);
    }
    60% {
        clip: rect(32px, 9999px, 84px, 0);
        transform: skew(0.60deg);
    }
    65% {
        clip: rect(14px, 9999px, 77px, 0);
        transform: skew(0.65deg);
    }
    70% {
        clip: rect(75px, 9999px, 39px, 0);
        transform: skew(0.70deg);
    }
    75% {
        clip: rect(58px, 9999px, 22px, 0);
        transform: skew(0.75deg);
    }
    80% {
        clip: rect(41px, 9999px, 63px, 0);
        transform: skew(0.80deg);
    }
    85% {
        clip: rect(84px, 9999px, 27px, 0);
        transform: skew(0.85deg);
    }
    90% {
        clip: rect(19px, 9999px, 86px, 0);
        transform: skew(0.90deg);
    }
    95% {
        clip: rect(47px, 9999px, 51px, 0);
        transform: skew(0.95deg);
    }
    100% {
        clip: rect(76px, 9999px, 68px, 0);
        transform: skew(1.00deg);
    }
}

@keyframes glitch-skew {
    0% {
        transform: skew(2deg);
    }
    10% {
        transform: skew(-1deg);
    }
    20% {
        transform: skew(0deg);
    }
    30% {
        transform: skew(1deg);
    }
    40% {
        transform: skew(-1deg);
    }
    50% {
        transform: skew(0deg);
    }
    60% {
        transform: skew(-2deg);
    }
    70% {
        transform: skew(1deg);
    }
    80% {
        transform: skew(-1deg);
    }
    90% {
        transform: skew(2deg);
    }
    100% {
        transform: skew(1deg);
    }
}

/* Circuit lines animation */
.circuit-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -4;
    opacity: 0.1;
    background-image: 
        linear-gradient(90deg, transparent 79px, rgba(0, 247, 255, 0.3) 81px, rgba(0, 247, 255, 0.3) 82px, transparent 84px),
        linear-gradient(180deg, transparent 79px, rgba(255, 0, 128, 0.3) 81px, rgba(255, 0, 128, 0.3) 82px, transparent 84px),
        linear-gradient(0deg, transparent 79px, rgba(0, 255, 65, 0.3) 81px, rgba(0, 255, 65, 0.3) 82px, transparent 84px);
    background-size: 160px 160px, 240px 240px, 320px 320px;
    animation: circuitMove 25s linear infinite;
}

@keyframes circuitMove {
    0% {
        background-position: 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 160px 160px, -240px 240px, 320px -320px;
    }
}

/* Loading animation for sections */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Holographic border effect */
.holographic-border {
    position: relative;
    border: 2px solid transparent;
    background: linear-gradient(45deg, #00f7ff, #ff0080, #00ff41, #8000ff) border-box;
    border-radius: 12px;
    background-clip: padding-box;
}

.holographic-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00f7ff, #ff0080, #00ff41, #8000ff);
    border-radius: 12px;
    z-index: -1;
    animation: rotateBorder 3s linear infinite;
}

@keyframes rotateBorder {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

/* Cyberpunk glow text */
.cyber-glow {
    color: #00f7ff;
    text-shadow: 
        0 0 5px #00f7ff,
        0 0 10px #00f7ff,
        0 0 15px #00f7ff,
        0 0 20px #00f7ff;
    animation: cyberPulse 2s ease-in-out infinite alternate;
}

@keyframes cyberPulse {
    from {
        text-shadow: 
            0 0 5px #00f7ff,
            0 0 10px #00f7ff,
            0 0 15px #00f7ff,
            0 0 20px #00f7ff;
    }
    to {
        text-shadow: 
            0 0 2px #00f7ff,
            0 0 5px #00f7ff,
            0 0 8px #00f7ff,
            0 0 12px #00f7ff;
    }
}

/* Floating AI Elements */
.ai-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.ai-elements::before,
.ai-elements::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 247, 255, 0.1) 0%, transparent 70%);
    animation: floatAI 20s ease-in-out infinite;
}

.ai-elements::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.ai-elements::after {
    bottom: 20%;
    right: 10%;
    background: radial-gradient(circle, rgba(255, 0, 128, 0.1) 0%, transparent 70%);
    animation-delay: 10s;
}

@keyframes floatAI {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) scale(1.1);
        opacity: 0.6;
    }
}

/* Enhanced gradient background animation */
@keyframes backgroundShift {
    0% {
        background-position: 0% 50%, 100% 50%, 50% 0%, 50% 100%;
    }
    25% {
        background-position: 25% 25%, 75% 75%, 75% 25%, 25% 75%;
    }
    50% {
        background-position: 50% 0%, 50% 100%, 100% 50%, 0% 50%;
    }
    75% {
        background-position: 75% 75%, 25% 25%, 25% 75%, 75% 25%;
    }
    100% {
        background-position: 0% 50%, 100% 50%, 50% 0%, 50% 100%;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    header {
        position: relative;
        height: auto;
        padding: 20px 0;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    nav ul li {
        margin: 0;
    }

    nav ul li::before {
        display: none;
    }

    main {
        padding-top: 40px;
        padding-bottom: 80px;
    }

    h1 {
        font-size: clamp(36px, 10vw, 64px);
        margin-top: 20px;
        letter-spacing: 1px;
    }

    .subtitle {
        font-size: clamp(16px, 4vw, 22px);
        padding: 0 20px;
    }

    .app-icon {
        width: 120px;
        height: 120px;
        margin: 40px auto;
    }

    .dev-badge {
        font-size: 10px;
        padding: 6px 12px;
        right: -35px;
    }

    .app-name {
        font-size: 24px;
        margin-top: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
        gap: 20px;
    }

    .cta-button {
        width: 200px;
        height: 60px;
        margin-bottom: 0;
    }

    .terms-content,
    .contact-content {
        padding: 25px;
        margin: 20px 10px;
    }

    .terms-content h2 {
        font-size: 24px;
        margin-top: 25px;
    }

    .terms-content table {
        font-size: 14px;
    }

    .terms-content th,
    .terms-content td {
        padding: 10px 8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }

    .terms-content,
    .contact-content {
        padding: 20px;
        border-radius: 12px;
    }

    .cta-button {
        width: 180px;
        height: 55px;
    }

    nav ul li a {
        font-size: 13px;
        letter-spacing: 1px;
    }
}

/* Enhanced Neural Network Animation Background */
.neural-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    opacity: 0.2;
}

.neural-bg::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(0, 247, 255, 0.8) 2px, transparent 2px),
        radial-gradient(circle at 75% 25%, rgba(255, 0, 128, 0.6) 2px, transparent 2px),
        radial-gradient(circle at 25% 75%, rgba(0, 255, 65, 0.7) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(128, 0, 255, 0.5) 2px, transparent 2px),
        radial-gradient(circle at 50% 50%, rgba(255, 64, 0, 0.4) 1px, transparent 1px);
    background-size: 150px 150px, 200px 200px, 120px 120px, 180px 180px, 100px 100px;
    animation: neuralMove 35s linear infinite;
}

@keyframes neuralMove {
    0% { 
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.2;
    }
    25% { 
        transform: translate(-20px, -15px) rotate(90deg);
        opacity: 0.25;
    }
    50% { 
        transform: translate(15px, -20px) rotate(180deg);
        opacity: 0.15;
    }
    75% { 
        transform: translate(-15px, 20px) rotate(270deg);
        opacity: 0.22;
    }
    100% { 
        transform: translate(0, 0) rotate(360deg);
        opacity: 0.2;
    }
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -4;
    opacity: 0.08;
    background-image: 
        linear-gradient(90deg, transparent 79px, rgba(0, 247, 255, 0.6) 81px, rgba(0, 247, 255, 0.6) 82px, transparent 84px),
        linear-gradient(180deg, transparent 119px, rgba(255, 0, 128, 0.4) 121px, rgba(255, 0, 128, 0.4) 122px, transparent 124px),
        linear-gradient(0deg, transparent 159px, rgba(0, 255, 65, 0.5) 161px, rgba(0, 255, 65, 0.5) 162px, transparent 164px);
    background-size: 160px 160px, 240px 240px, 320px 320px;
    animation: circuitMove 30s linear infinite;
}
/* Cache bust: Fri Jul  4 00:35:45 CEST 2025 */
