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

:root {
    --bg-color: #0a0a0a;
    --text-color: rgba(255, 255, 255, 0.9);
    --accent-color: #646cff;
    --secondary-color: #7ed957;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.full-page {
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1 {
    font-weight: 200;
    letter-spacing: 1px;
    font-size: 4rem;
}

p {
    margin-bottom: 1.5rem;
    max-width: 600px;
    opacity: 0.8;
}

.logo {
    font-size: 5rem;
    letter-spacing: 10px;
    animation: fadeInLogo 2s ease-out forwards;
    background: linear-gradient(to right, var(--text-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: lowercase;
}

.tagline {
    font-weight: 200;
    letter-spacing: 4px;
    opacity: 0;
    text-align: center;
    animation: fadeIn 4s ease-out 0.7s forwards;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    width: 100%;
    margin: 0 auto;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInLogo {
    from {
        opacity: 0;
        letter-spacing: 20px;
    }
    to {
        opacity: 1;
        letter-spacing: 10px;
    }
}

@media screen and (max-width: 768px) {
    .full-page {
        height: 100vh;
        overflow: hidden;
    }

    .logo {
        font-size: 2rem;
        letter-spacing: 5px;
        text-align: center;
    }

    .tagline {
        font-size: 1rem;
        text-align: center;
        letter-spacing: 2px;
        margin-top: 10px;
    }
}
