body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #696880 0%, #7d7a91 50%, #5a5970 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

/* Animated Background */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.dot {
    position: absolute;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.3);
    opacity: 0.5;
}

.line {
    position: absolute;
    height: 1px;
    width: 200px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Floating animation for dots */
@keyframes floatDot {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.3;
    }
    50% {
        transform: translate(30px, -30px);
        opacity: 0.7;
    }
}

/* Sliding animation for lines */
@keyframes slideLine {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        transform: translateX(200%);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.tech-image {
    max-width: 600px;
    width: 100%;
    margin: 2rem auto;
    border-radius: 15px;
}

.cta-button {
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border: 2px solid #ffffff;
    border-radius: 8px;
    color: white;
    background: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateY(-2px);
}

.google-login-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid #ffffff;
    border-radius: 8px;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.google-login-button:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    transform: translateY(-2px);
}

.google-login-button i {
    font-size: 1.2rem;
}

.features-section {
    padding: 5rem 0;
}

.feature-card {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    transition: transform 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        border: 2px solid #ffffff;
        border-radius: 8px;
    }
}

footer {
    background: #4D4c5C;
}
