/* styles.css */
:root {
    --primary-color: #00ff9d;
    --secondary-color: #00ff66;
    --accent-color: #39ff14;
    --background-color: #000000;
    --text-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    overflow-x: hidden;
}

.hero {
    position: relative;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#background-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

/* Logo Styles */
.logo-container {
    position: relative;
    margin-bottom: 3rem;
}

.logo {
    font-size: 4rem;
    font-weight: bold;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(110, 0, 255, 0.3));
}

.logo-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Text Content Styles */
.headline {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    text-shadow: 0 0 10px rgba(0, 255, 157, 0.5);
}

.headline span {
    display: inline-block;
    color: var(--text-color);
    text-shadow: 0 0 10px rgba(0, 255, 157, 0.5);
}

.subheadline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-shadow: 0 0 10px rgba(0, 255, 157, 0.5);
}

/* CTA Button Styles */
.cta-button {
    position: relative;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--text-color);
    border-radius: 30px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent,
        rgba(110, 0, 255, 0.2),
        rgba(255, 0, 229, 0.2),
        transparent
    );
    transition: transform 0.5s ease;
}

.cta-button:hover {
    background: rgba(110, 0, 255, 0.1);
    transform: scale(1.05);
}

.cta-button:hover .button-glow {
    transform: translateX(100%);
}

/* Social Icons Styles */
.social-icons {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--text-color);
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    background: rgba(110, 0, 255, 0.2);
    box-shadow: 0 0 20px rgba(110, 0, 255, 0.3);
}

/* Scroll Prompt Styles */
.scroll-prompt {
    position: relative;
    bottom: 0rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    cursor: pointer;
    z-index: 10;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    transform: rotate(45deg);
    margin: 0 auto 1rem;
    animation: bounce 2s infinite;
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.5);
}

.scroll-text {
    font-size: 1rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 255, 157, 0.5);
    font-weight: bold;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-10px) rotate(45deg);
    }
    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        font-size: 3rem;
    }

    .headline {
        font-size: 2rem;
    }

    .subheadline {
        font-size: 1.2rem;
    }
}