* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #e2e8f0;
    min-height: 100vh;
    line-height: 1.6;
}

header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #06b6d4 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    position: relative;
}

.logo::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #06b6d4, transparent);
    animation: glitchLine 3s ease-in-out infinite;
}

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

.age-badge {
    display: inline-block;
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.4);
    padding: 0.3rem 0.8rem;
    border-radius: 2px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #06b6d4;
    margin-left: 1rem;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

nav a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
}

nav a::before {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #06b6d4;
    transition: width 0.3s ease;
}

nav a:hover {
    color: #06b6d4;
}

nav a:hover::before {
    width: 100%;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.08) 0%, rgba(167, 139, 250, 0.08) 100%);
    border-radius: 4px;
    margin-bottom: 3rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    animation: glitchPulse 5s ease-in-out infinite;
}

@keyframes glitchPulse {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    33% { 
        transform: translate(2%, -2%) scale(1.05);
        opacity: 0.7;
    }
    66% { 
        transform: translate(-2%, 2%) scale(0.95);
        opacity: 0.6;
    }
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #06b6d4 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
    z-index: 1;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.3);
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(6, 182, 212, 0.5);
}

.section {
    margin: 3rem 0;
    padding: 2.5rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 4px;
    border: 1px solid rgba(6, 182, 212, 0.15);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #06b6d4;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.section p {
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.card {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 4px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.card::after {
    content: "✦";
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.2rem;
    color: rgba(6, 182, 212, 0.3);
    animation: glitchStar 4s ease-in-out infinite;
}

@keyframes glitchStar {
    0%, 100% { opacity: 0.3; transform: rotate(0deg); }
    50% { opacity: 0.8; transform: rotate(180deg); }
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(6, 182, 212, 0.2);
    border-color: rgba(6, 182, 212, 0.5);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #06b6d4;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.card p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.card .age-badge {
    margin-left: 0;
    margin-bottom: 1rem;
}

footer {
    background: rgba(15, 23, 42, 0.95);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
    padding: 2rem;
    margin-top: 4rem;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.3);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-disclaimer {
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    padding: 1rem;
    border-radius: 2px;
    margin-bottom: 1.5rem;
    color: #cbd5e1;
    font-size: 0.95rem;
    font-weight: 600;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.footer-links a {
    color: #06b6d4;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-links a:hover {
    color: #a78bfa;
}

.footer-copyright {
    color: #94a3b8;
    font-size: 0.85rem;
    margin-top: 1rem;
}

.form-container {
    max-width: 500px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #cbd5e1;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 2px;
    color: #e2e8f0;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #06b6d4;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.demo-warning {
    background: rgba(167, 139, 250, 0.15);
    border: 1px solid rgba(167, 139, 250, 0.4);
    padding: 1.5rem;
    border-radius: 2px;
    text-align: center;
    margin: 2rem 0;
    font-weight: 700;
    color: #a78bfa;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

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