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

body {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    background-image: url('/background.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: 'Space Grotesk', sans-serif;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@supports (-webkit-touch-callout: none) {
    body {
        background-attachment: scroll;
    }
}

.twitter-link {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 10;
    color: #FFFFFF;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.twitter-link:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: scale(1.1);
}

.twitter-link svg {
    width: 20px;
    height: 20px;
}

.brand-name {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 10;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #FFFFFF;
    text-shadow: 
        0 0 8px rgba(0, 0, 0, 0.8),
        0 1px 3px rgba(0, 0, 0, 0.9),
        0 2px 6px rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
}

.container {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding-top: 8vh;
    min-height: -webkit-fill-available;
}

.content {
    text-align: center;
    z-index: 1;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-bottom: 2rem;
    line-height: 1.15;
    color: #FFFFFF;
    text-shadow: 
        0 0 10px rgba(0, 0, 0, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.9),
        0 4px 8px rgba(0, 0, 0, 0.7),
        0 0 30px rgba(0, 0, 0, 0.5);
    font-style: italic;
}

.subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(0.9rem, 2.5vw, 1.3rem);
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 3rem;
    text-shadow: 
        0 0 8px rgba(0, 0, 0, 0.8),
        0 1px 3px rgba(0, 0, 0, 0.9),
        0 2px 6px rgba(0, 0, 0, 0.7);
}

.quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    font-style: italic;
    text-shadow: 
        0 0 10px rgba(0, 0, 0, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.9),
        0 4px 8px rgba(0, 0, 0, 0.7),
        0 0 25px rgba(0, 0, 0, 0.5);
    position: absolute;
    bottom: 15%;
    right: 8%;
    text-align: right;
    line-height: 1.4;
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body {
        background-attachment: scroll;
    }
    
    .twitter-link {
        top: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
        touch-action: manipulation;
    }
    
    .twitter-link svg {
        width: 20px;
        height: 20px;
    }
    
    .brand-name {
        top: 1rem;
        left: 1rem;
        font-size: clamp(0.75rem, 3vw, 1rem);
    }
    
    .container {
        padding-top: 12vh;
        padding-bottom: 2rem;
    }
    
    .content {
        padding: 1.5rem 1.25rem;
        width: 100%;
    }
    
    .main-title {
        margin-bottom: 1.25rem;
        font-size: clamp(1.8rem, 8vw, 3rem);
        line-height: 1.2;
    }
    
    .subtitle {
        margin-bottom: 1.5rem;
        font-size: clamp(0.75rem, 3vw, 1rem);
        letter-spacing: 0.15em;
    }
    
    .quote {
        bottom: 8%;
        right: 5%;
        font-size: clamp(1rem, 4vw, 1.4rem);
        max-width: 45%;
        text-align: right;
    }
}

@media (max-width: 480px) {
    .twitter-link {
        top: 0.75rem;
        right: 0.75rem;
        width: 40px;
        height: 40px;
    }
    
    .twitter-link svg {
        width: 18px;
        height: 18px;
    }
    
    .brand-name {
        top: 0.75rem;
        left: 0.75rem;
        font-size: clamp(0.7rem, 3.5vw, 0.9rem);
    }
    
    .container {
        padding-top: 15vh;
        padding-bottom: 1.5rem;
    }
    
    .content {
        padding: 1.25rem 1rem;
    }
    
    .main-title {
        margin-bottom: 1rem;
        font-size: clamp(1.6rem, 9vw, 2.5rem);
    }
    
    .subtitle {
        margin-bottom: 1.25rem;
        font-size: clamp(0.7rem, 3.5vw, 0.9rem);
    }
    
    .quote {
        bottom: 6%;
        right: 4%;
        font-size: clamp(0.9rem, 4.5vw, 1.2rem);
        max-width: 50%;
        line-height: 1.3;
    }
}

@media (max-width: 360px) {
    .main-title {
        font-size: clamp(1.4rem, 10vw, 2rem);
    }
    
    .quote {
        bottom: 5%;
        right: 3%;
        max-width: 55%;
    }
}
