/*© 2026 MrChicken's Homemade Website. All rights reserved. */
/*main.css
/* --- Base --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Inter", "Ubuntu", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    background-color: #0b0c10; 
    color: #c5c6c7;
    position: relative; 
    display: block; 
}

/* --- Loading Screen --- */
#loader {
    position: fixed;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background: #000000; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 999999;
    transition: opacity 0.25s ease;
}

#loader-video { 
    width: clamp(100px, 15vw, 150px);
    height: clamp(100px, 15vw, 150px); 
}

.loader-stuck-msg {
    color: #ffffff;
    font-family: 'Inter', 'Ubuntu', sans-serif; 
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-align: center;
    animation: fadeIn 0.5s ease forwards;
}

.loader-stuck-msg .refresh-link {
    color: #38bdf8; 
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s ease;
}

/* Hover effect for the link */
.loader-stuck-msg .refresh-link:hover {
    color: #7dd3fc; 
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(8px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Main Layout Wrapper --- */
.main {
    max-width: 2500px;
    text-align: center;
    width: 100%;
    margin: 0 auto; 
    padding: 80px 24px 140px 24px;
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
    align-items: center; 
}

/* --- Typography --- */
h1 {
    font-family: "Inter", "Ubuntu", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(1.8rem, 5vw, 2.4rem);
    color: #ffffff; 
    font-weight: 700; 
    letter-spacing: -0.5px;
    margin-bottom: 1.2rem;
    margin-top: 1.5rem; 
}

#description p {
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
    color: #9ba1b6; 
}

/* --- Button Styles --- */
.main a {
    display: inline-block;
    padding: clamp(10px, 2vw, 12px) clamp(24px, 4vw, 32px);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    font-weight: 600;
    color: #000000;
    background-color: #eef6ff; 
    border-radius: 30px;
    text-decoration: none;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.2s ease-in-out;
}

.main a:hover {
    background-color: #e2e8f0;
    transform: translateY(-2px);
}

/* --- Media Elements --- */
img {
    display: block;
    margin: 0 auto;
    max-width: clamp(65px, 12vw, 80px);
    height: auto;
}

/* Fixed Image Sizes */
img.\31 00x100 { /* 100x100 px */
    width: 100px;
    height: 100px;
    object-fit: cover;
}

img.\32 50x250 { /* 250x250 px */
    width: 250px;
    height: 250px;
    object-fit: cover;
}

img.\35 00x500 { /* 500x500 px */
    width: 500px;
    height: 500px;
    object-fit: cover;
}

/* --- Footer Styles --- */
footer {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 650px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.5rem;
}

footer p {
    font-size: clamp(0.7rem, 2vw, 0.8rem);
    color: #62677b;
    line-height: 1.5;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .main {
        padding: 65px 16px 120px 16px; 
    }
    
    footer {
        width: calc(100% - 32px); 
        bottom: 16px;
    }
}