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

html {
    height: 100%;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #800080, #9932cc);
    border-radius: 6px;
    border: 2px solid rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #9932cc, #800080);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #800080 rgba(0, 0, 0, 0.3);
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

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

ul,
ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    background-image:
        radial-gradient(circle at 20% 30%, rgba(128, 0, 128, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(128, 0, 128, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: -2;
}

/* Background Image */
.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1a0a1a;
    background-image: url('bg.png');
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -3;
}

/* Main Body Styles */
body {
    height: 100%;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: transparent;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    position: relative;
}

.container {
    padding: 0;
    margin: 0;
}

/* Profile Section */
.profile-section {
    text-align: center;
    margin-bottom: 0;
    margin-top: 20px;
}

.profile-image-container {
    position: relative;
    display: inline-block;
}

.profile-image {
    width: 250px;
    border-radius: 50%;
    object-fit: cover;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}


/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInScale 0.6s ease-out forwards;
    opacity: 0;
    transform: scale(0.8);
}

.social-icon:nth-child(1) {
    animation-delay: 0.1s;
}

.social-icon:nth-child(2) {
    animation-delay: 0.2s;
}

.social-icon:nth-child(3) {
    animation-delay: 0.3s;
}

.social-icon:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

/* Main Title */
.main-title {
    font-family: 'Pirata One', cursive;
    font-size: 24px;
    color: white;
    font-weight: 400;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }

    100% {
        text-shadow: 0 0 20px rgba(128, 0, 128, 0.8), 0 0 30px rgba(128, 0, 128, 0.6);
    }
}

/* Banners Container */
.banners-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 30px;
    align-items: center;
    padding: 0 20px;
}

/* Banner Base Styles */
.banner {
    border-radius: 0;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    text-decoration: none;
    color: inherit;
    margin: 0 auto;
    margin-bottom: -20px;
}

.banner:hover {
    transform: translateY(-3px);
}

.banner-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    animation: slideInFromBottom 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.3s ease;
    display: block;
}

.banner:nth-child(1) .banner-image {
    animation-delay: 0.2s;
}

.banner:nth-child(2) .banner-image {
    animation-delay: 0.4s;
}

.banner:nth-child(3) .banner-image {
    animation-delay: 0.6s;
}

.banner:nth-child(4) .banner-image {
    animation-delay: 0.8s;
}

@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer Link */
.footer-link {
    text-align: left;
    margin-top: 20px;
}

.footer-link a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-link a:hover {
    color: white;
}

/* Copyright Footer */
.copyright-footer {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

.copyright-footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 480px) {
    .overlay {
        height: 100vh;
        height: 100dvh;
        min-height: 100vh;
        min-height: 100dvh;
    }

    .profile-image {
        width: 240px;
        height: 240px;
    }

    .main-title {
        font-size: 20px;
    }

    .banners-container {
        padding: 0 15px;
        gap: 0;
    }

    .banner-image {
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }

    .banner {
        display: inline-block;
        width: auto;
        max-width: 100%;
    }

    .copyright-footer {
        margin-bottom: 60px;
    }
}