/* Date Display */
.date-display {
    position: fixed;
    top: 30px;
    right: 40px;
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

/* Base Styles */
body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #4866ea 0%, #771ed0 100%);
    font-family: 'Nunito';
    padding: 20px;
    box-sizing: border-box;
    color: #fff;
    animation: bodyfade 1.8s ease-out forwards;
    
}

a {
    text-decoration: none;
    color: inherit;
}

/* Desktop styles */
.head-container {
    width: 1000px;
    min-height: 600px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 33px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    position: relative;
    padding: 40px 60px;
    display: flex;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.head-container:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.head-container img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    margin-right: 60px;
    margin-top: 20px;
    flex-shrink: 0;
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.title-container {
    color: white;
    max-width: 520px;
    padding: 10px 0;
    box-sizing: border-box;
    margin-top: 10px;
}

.title-container h1 {
    font-size: 3rem;
    margin: 0 0 15px 0;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.1;
    color: white;
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0; 
}

.title-container h2 {
    font-size: 1.8rem;
    margin: 0 0 25px 0;
    font-weight: 400;
    line-height: 1.4;
    color: white;
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 0.4s;
    opacity: 0; 
}

.title-container .description {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.title-container .description h3 {
    font-size: 1.4rem;
    margin: 0 0 15px 0;
    font-weight: 500;
    color: white;
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 0.6s;
    opacity: 0; 

}

.title-container .description p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 0.8s;
    opacity: 0;
    text-align: justify;
    hyphens: auto;
}

@keyframes fadeIn {
    0% { 
        opacity: 0; 
        transform: scale(0.8);
    }
    100% { 
        opacity: 1; 
        transform: scale(1);
    }
}

@keyframes bodyfade {
    0% { 
        opacity: 1; 
        transform: scale(0.95);
        filter: blur(20px);
    }
    50% {
        opacity: 1;
        filter: blur(0px);
    }
    100% { 
        opacity: 1; 
        transform: scale(1);
        filter: blur(0);
    }
}

/* Button Container */
.button-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    box-sizing: border-box;
}

.action-button {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 33px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: end;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    height: 280px;
    width: 420px;
    max-width: 100%;
}

.action-button:nth-child(1) {
    animation-delay: 0.2s;
}

.action-button:nth-child(2) {
    animation-delay: 0.4s;
}

.action-button:nth-child(3) {
    animation-delay: 0.6s;
}

.action-button:nth-child(4) {
    animation-delay: 0.8s;
}

.action-button:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.button-preview {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.1);
}

.action-button span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 100%;
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
    background: rgba(0, 0, 0, 0.2);
}