body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    background-color: #000;
    color: white;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar {
    text-align: center;
    margin-bottom: 10px;
}

.timer {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    font-size: clamp(0.8rem, 2vw, 1rem);
    text-align: center;
}

.container {
    width: 90%;
    max-width: 1200px;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

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

/* Firefox < 16 */
@-moz-keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

#logo {
    color: white;
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 300;
    letter-spacing: 3px;
    position: fixed;
    top: 20px;
    left: 20px;
    margin: 0;
}

.quote-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80vh;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

#quote {
    font-size: clamp(1.5rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.3;
    max-width: 100%;
    transition: opacity 0.5s ease;
    letter-spacing: -0.02em;
    text-align: center;
    margin: 0 auto;
}

.social-links {
    position: fixed;
    bottom: 20px;
    left: 20px;
}

.fa {
    color: #555;
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin: 0;
    transition: all 0.3s ease;
}

.fa:hover {
    color: white;
}

#timer {
    color: #555;
    font-weight: 300;
    margin: 0;
}

.time-unit {
    display: inline-block;
    margin: 0 3px;
}

.time-unit small {
    font-size: 0.7em;
    opacity: 0.7;
    margin-left: 1px;
}

.controls {
    display: none;
}

@media (max-width: 480px) {
    .quote-container {
        height: 70vh;
    }
    
    #quote {
        padding: 0;
    }
    
    .timer {
        bottom: 10px;
        right: 10px;
        padding: 8px;
    }
    
    #logo {
        top: 15px;
        left: 15px;
    }
    
    .social-links {
        bottom: 15px;
        left: 15px;
    }
}
