

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'Playfair', serif;
    background-color: #000000;
    background-size: cover;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header {
    text-align: center;
    padding: 3.5rem 0 1.5rem;
}

h1 {
    font-size: 3rem;
    font-weight: normal;
    letter-spacing: 0.2em;
}

@media (min-width: 768px) {
    h1 {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 4.5rem;
    }
}

.profile-photo {
    display: flex;
    justify-content: center;
    padding: 1rem 0;
}

.profile-photo img {
    width: 9rem;
    height: 9rem;
    border-radius: 50%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .profile-photo img {
        width: 11rem;
        height: 11rem;
    }
}

@media (min-width: 1024px) {
    .profile-photo img {
        width: 13rem;
        height: 13rem;
    }
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 0;
}

.social-links a {
    color: #fff;
    transition: opacity 0.2s ease-in-out;
    position: relative;
    display: inline-block;
    margin: 0 10px;
}

.social-links a:hover {
    opacity: 0.75;
}

.social-links a .platform-name {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8em;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.social-links a:hover .platform-name {
    opacity: 1;
    visibility: visible;
}

footer {
    margin-top: auto;
    padding: 2.5rem 0;
    display: flex;
    justify-content: center;
}

.cta-button {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s ease-in-out;
    font-family: Arial, sans-serif;
    font-size: 0.7rem;
    margin-top: 20px;
    box-sizing: border-box;
    width: auto;
    min-width: 120px;
    text-align: center;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.15);
}

.cta-button span {
    letter-spacing: 0.05em;
    margin-right: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
    }
}

header,
.profile-photo,
.social-links,
footer {
    animation: fadeIn 0.8s ease-out forwards;
}

.profile-photo {
    animation-delay: 0.2s;
}

.social-links {
    animation-delay: 0.4s;
}

footer {
    animation-delay: 0.6s;
}

.cards-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    width: 244px;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.card p {
    font-size: 0.9rem;
    color: #ccc;
}

#dark-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 999;
    transition: opacity 0.5s ease;
    display: flex;
    font-family: 'Playfair', serif;
    justify-content: center;
    align-items: center;
}

#click-gif {
    max-width: 80%;
    max-height: 80%;
}

.social-links a svg {
    transition: transform 0.2s ease-in-out;
}

.social-links a:hover svg {
    transform: scale(1.4);
}