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

body {
    background-color: #d80101;
    font-family: 'Inter', Arial, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.left-logo {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.logo {
    width: 250px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.0));
}

.header-section {
    height: 100vh;
    width: 100%;
    background-image: url('light.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
}

.price-chart-section {
    position: relative;
    height: 60px;
    background-color: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-chart-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ff00, #ffff00, #ff0000, #ff00ff, #00ffff);
    transform: translateY(-50%);
}

.price-chart-text {
    position: relative;
    z-index: 2;
    background-color: #000;
    padding: 0 20px;
}

.scrolling-text {
    font-family: 'Gochi Hand', cursive;
    font-size: 24px;
    font-weight: 600;
    color: #00ff00;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    animation: scrollLeft 15s linear infinite;
    text-shadow: 0 0 10px #00ff00;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}


.polaroid-section {
    padding: 80px 20px;
    background-color: #d80101;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
}

.polaroid-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
}

.polaroid-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
    flex-shrink: 0;
}

.lore-text {
    
    flex: 1;
    max-width: 500px;
    padding-bottom: 90px;
}

.lore-title {
    font-family: 'Gochi Hand', cursive;
    font-size: 76px;
    font-weight: 700;
    color: white;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.lore-content {
    font-family: 'Gochi Hand', cursive;
    font-size: 20px;
    color: white;
    line-height: 1.6;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.centered-logo {
    max-width: 80%;
    max-height: 40%;
    width: 280px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.0));
    margin-bottom: 20px;
}

.floating {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}


.uncb-font {
    max-width: 40%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.0));
    margin-bottom: 15px;
}

.test-text {
    color: white;
    font-family: 'Gochi Hand', cursive;
    font-size: 27px;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.0);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 20px;
}

.twitter-link {
    color: #f7aa00;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.twitter-link:hover {
    color: #e09900;
    text-decoration: underline;
}


.bottom-buttons {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10;
}

.bottom-btn {
    width: 300px;
    height: 50px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}

.bottom-btn:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .centered-logo {
        max-width: 90%;
        max-height: 70%;
        width: 280px;
    }
    
    .uncb-font {
        max-width: 70%;
    }
    
    .test-text {
        font-size: 18px;
    }
    
    .logo {
        width: 160px;
    }
    
    .bottom-btn {
        width: 200px;
        height: 50px;
    }
    
    .polaroid-section {
        padding: 60px 20px;
        min-height: 40vh;
    }
    
    .polaroid-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .polaroid-image {
        max-width: 300px;
    }
    
    .lore-text {
        max-width: 100%;
    }
    
    .lore-title {
        font-size: 28px;
    }
    
    .lore-content {
        font-size: 18px;
    }
    
    .scrolling-text {
        font-size: 20px;
    }
}

.socials-section {
    text-align: center;
    padding-bottom: 100px; /* leave room for fixed bottom buttons */
    color: white;
    font-family: 'Gochi Hand', cursive;
    font-size: 24px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.socials-text {
    margin-bottom: 15px;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.social-icon {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
    filter: drop-shadow(0 0 8px rgba(153, 0, 0, 0));
}

.social-icon:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.315));
}


@media (max-width: 480px) {
    .centered-logo {
        max-width: 95%;
        max-height: 45%;
        width: 270px;
    }
    
    .uncb-font {
        max-width: 60%;
    }
    
    .test-text {
        font-size: 23px;
    }
    
    .logo {
        width: 200px;
    }
    
    .left-logo {
        top: 15px;
        left: 15px;
    }
    
    .bottom-btn {
        width: 150px;
        height: 45px;
    }
    
    .bottom-buttons {
        bottom: 25px;
        gap: 15px;
    }
    
    .polaroid-section {
        padding: 40px 15px;
        min-height: 30vh;
    }
    
    .polaroid-container {
        gap: 30px;
    }
    
    .polaroid-image {
        max-width: 250px;
    }
    
    .lore-title {
        font-size: 24px;
    }
    
    .lore-content {
        font-size: 16px;
    }
    
    .scrolling-text {
        font-size: 16px;
        letter-spacing: 1px;
    }
    
    .price-chart-section {
        height: 50px;
    }
}