body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    display: flex;
    justify-content: center; /* Centers content horizontally */
    align-items: flex-start; /* Aligns content to the top vertically */
    min-height: 100vh; /* Ensures body takes full viewport height for alignment */
    
    overflow-x: hidden; 
    overflow-y: auto; 
    position: relative; 
    
    /* 🧡🖤 The Orange & Black Gradient */
    background: linear-gradient(
        135deg, 
        #000000 0%,      
        #333333 30%,     
        #FF8C00 70%,     
        #FF4500 100%     
    );
    
    background-size: 400% 400%;
    animation: gradientShift 25s ease infinite alternate; 
}

/* 🌀 Keyframes for the Gradient Animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.center-glow-image {
    position: fixed; 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    width: 100%; 
    height: 100%; 
    background-image: url('./images/exploding-star.jpeg'); 
    background-size: cover; 
    background-position: center; 
    opacity: 0.3; 
    filter: none; 
    z-index: 1; 
    pointer-events: none; 
}

.container {
    background: rgba(45, 10, 0, 0.75); 
    padding: 10px;
    margin: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); 
    max-width: 600px;
    text-align: center;
    backdrop-filter: blur(5px); 
    border: 1px solid rgba(255, 223, 186, 0.3);
    z-index: 2; 
    position: relative; 
}

.text-block h1 {
    font-size: 2.5em; 
    margin-bottom: 10px;
    margin-block-start: 0em;
    color: #FFECB3;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

.text-block p {
    font-size: 1.05em; 
    line-height: 1.6;
    margin-bottom: 10px; 
    margin-block-start: 0em;
    color: #ffe0b2;
}

.social-button {
    display: inline-block;
    padding: 14px 28px;
    font-size: 1.2em;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px; 
    transition: background-color 0.4s ease, transform 0.2s ease, box-shadow 0.4s ease;
    background-color: #FF7043; 
    color: #ffffff; 
    border: none; 
    box-shadow: 0 4px 15px rgba(255, 99, 71, 0.4); 
    position: relative;
    overflow: hidden;
    z-index: 10;
    margin-bottom: 10px;
    margin-top: 10px;
    text-shadow: 1px 1px 0 #000000;
}

.social-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.7s ease;
}

.social-button:hover::before {
    left: 100%;
}

.social-button:hover {
    background-color: #FFAB91;
    color: #4a148c; 
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 112, 67, 0.6);
    text-shadow: 0px 0px 0 #00000000;
}
