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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0e27;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Animated Starfield Background */
.stars, .stars2, .stars3 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.stars {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="2" height="2"><circle cx="1" cy="1" r="1" fill="%23fff"/></svg>') repeat;
    background-size: 200px 200px;
    animation: animateStars 50s linear infinite;
    opacity: 0.3;
}

.stars2 {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="2" height="2"><circle cx="1" cy="1" r="1" fill="%2300d4ff"/></svg>') repeat;
    background-size: 300px 300px;
    animation: animateStars 100s linear infinite;
    opacity: 0.2;
}

.stars3 {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="3" height="3"><circle cx="1.5" cy="1.5" r="1.5" fill="%237b2ff7"/></svg>') repeat;
    background-size: 400px 400px;
    animation: animateStars 150s linear infinite;
    opacity: 0.15;
}

@keyframes animateStars {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-1000px);
    }
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    padding: 20px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 2.5em;
    font-weight: 900;
    letter-spacing: 8px;
    background: linear-gradient(135deg, #00d4ff 0%, #7b2ff7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.logo-subtitle {
    font-size: 0.9em;
    letter-spacing: 4px;
    color: #00d4ff;
    margin-left: 5px;
    opacity: 0.8;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 20px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 900px;
}

.ai-icon {
    width: 200px;
    height: 200px;
    margin: 0 auto 40px;
    animation: rotate 20s linear infinite, pulse 3s ease-in-out infinite;
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.glitch {
    font-size: 5em;
    font-weight: 900;
    letter-spacing: 12px;
    background: linear-gradient(135deg, #00d4ff 0%, #7b2ff7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    margin: 20px 0;
    text-shadow: 0 0 50px rgba(0, 212, 255, 0.5);
}

.tagline {
    font-size: 1.8em;
    color: #00d4ff;
    margin: 20px 0;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.9;
}

.description {
    font-size: 1.2em;
    line-height: 1.8;
    color: #b8c5d6;
    margin: 30px auto;
    max-width: 700px;
}

/* CTA Buttons */
.cta-buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    font-size: 1.1em;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4ff 0%, #7b2ff7 100%);
    color: #ffffff;
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #00d4ff;
    border: 2px solid #00d4ff;
}

.btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

/* Glass Card Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 212, 255, 0.1);
    margin: 40px 0;
}

.glass-card h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #00d4ff 0%, #7b2ff7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-card p {
    font-size: 1.2em;
    line-height: 1.8;
    color: #b8c5d6;
    margin-bottom: 20px;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.feature h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #00d4ff;
}

.feature p {
    font-size: 1em;
    color: #b8c5d6;
    margin: 0;
}

/* Tools Section */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tool-card {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.tool-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.5);
}

.tool-icon {
    font-size: 3.5em;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.5));
}

.tool-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #00d4ff;
}

.tool-card p {
    font-size: 1em;
    color: #b8c5d6;
    margin: 0;
}

/* Contact Section */
.contact-info {
    text-align: center;
    font-size: 1.2em;
}

.contact-info p {
    margin: 10px 0;
}

.contact-info strong {
    color: #00d4ff;
}

.website {
    color: #7b2ff7;
    font-weight: 600;
    margin-top: 20px;
    font-size: 1.3em;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    color: #b8c5d6;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-text {
        font-size: 1.8em;
        letter-spacing: 4px;
    }

    .glitch {
        font-size: 3em;
        letter-spacing: 6px;
    }

    .tagline {
        font-size: 1.3em;
    }

    .description {
        font-size: 1em;
    }

    .glass-card {
        padding: 30px 20px;
    }

    .glass-card h2 {
        font-size: 2em;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .ai-icon {
        width: 150px;
        height: 150px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
