* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0e27;
    color: #fff;
    overflow-x: hidden;
    position: relative;
}

#stars-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.content-wrapper {
    position: relative;
    z-index: 2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    padding: 30px 0;
    position: relative;
}

.logo {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 3px;
    background: linear-gradient(45deg, #fff, #a8c0ff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(168, 192, 255, 0.5);
    text-decoration: none;
    display: inline-block;
}

.hero {
    text-align: center;
    padding: 80px 0 100px;
    position: relative;
}

.hero h1 {
    font-size: 64px;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
    text-shadow: 0 0 20px rgba(168, 192, 255, 0.5);
}

.tagline {
    font-size: 24px;
    opacity: 0.9;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.2s backwards;
    text-shadow: 0 0 10px rgba(168, 192, 255, 0.3);
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s backwards;
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(102, 126, 234, 0.9);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.feature-card {
    background: rgba(15, 20, 50, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(168, 192, 255, 0.3);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(15, 20, 50, 0.85);
    box-shadow: 0 0 40px rgba(102, 126, 234, 0.5);
    border-color: rgba(168, 192, 255, 0.6);
}

.feature-icon {
    margin-bottom: 20px;
    color: #a8c0ff;
    filter: drop-shadow(0 0 10px rgba(168, 192, 255, 0.5));
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(168, 192, 255, 0.3);
}

.feature-card p {
    opacity: 0.9;
    line-height: 1.6;
}

.about {
    padding: 80px 0;
    text-align: center;
}

.about h2 {
    font-size: 48px;
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(168, 192, 255, 0.5);
}

.about p {
    font-size: 20px;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.testimonials h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 0 0 20px rgba(168, 192, 255, 0.5);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background: rgba(15, 20, 50, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(168, 192, 255, 0.3);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.4);
}

.stars {
    color: #ffd700;
    font-size: 20px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 5px #ffd700);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
    opacity: 0.9;
}

.testimonial-author {
    font-weight: bold;
    font-size: 16px;
}

.testimonial-role {
    opacity: 0.7;
    font-size: 14px;
}

/* Contact Page Styles */
.contact-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.contact-box {
    background: rgba(15, 20, 50, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 60px 50px;
    border: 1px solid rgba(168, 192, 255, 0.3);
    box-shadow: 0 0 40px rgba(102, 126, 234, 0.3);
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
}

.contact-box h1 {
    font-size: 48px;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(168, 192, 255, 0.5);
}

.contact-subtitle {
    font-size: 20px;
    opacity: 0.8;
    margin-bottom: 50px;
}

.contact-content {
    margin-bottom: 40px;
}

.email-section {
    text-align: center;
    margin-bottom: 40px;
}

.email-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(168, 192, 255, 0.4);
}

.email-protect p {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.email-box {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(168, 192, 255, 0.3);
    border-radius: 15px;
    padding: 20px 30px;
    margin: 20px 0;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.email-loading {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.email-link {
    font-size: 24px;
    color: #a8c0ff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(168, 192, 255, 0.5);
    transition: all 0.3s ease;
}

.email-link:hover {
    color: #fff;
    text-shadow: 0 0 20px rgba(168, 192, 255, 0.8);
}

.reveal-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.4);
}

.reveal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.6);
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168, 192, 255, 0.3), transparent);
    margin: 40px 0;
}

.info-section {
    text-align: center;
}

.info-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(168, 192, 255, 0.3);
}

.info-section p {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 10px;
}

.back-button {
    display: inline-block;
    color: #a8c0ff;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 10px;
}

.back-button:hover {
    color: #fff;
    background: rgba(168, 192, 255, 0.1);
    text-shadow: 0 0 10px rgba(168, 192, 255, 0.5);
}

footer {
    text-align: center;
    padding: 40px 0;
    opacity: 0.8;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 42px;
    }
    
    .tagline {
        font-size: 18px;
    }

    .about h2, .testimonials h2 {
        font-size: 36px;
    }
    
    .contact-box {
        padding: 40px 30px;
    }
    
    .contact-box h1 {
        font-size: 36px;
    }
    
    .email-link {
        font-size: 18px;
    }
}