/* 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.7);
    background-image:
        radial-gradient(circle at 20% 30%, rgba(128, 0, 128, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(128, 0, 128, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 215, 0, 0.1) 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 {
    max-width: 150px;
    animation: float 3s ease-in-out infinite;
    border: none;
}

@keyframes float {

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

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

/* 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;
}

/* Custom Buttons */
.buttons-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
    align-items: center;
}

.custom-button {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    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);
    color: white;
    padding: 15px 24px;
    font-weight: 600;
    font-size: 16px;
    width: 80%;
    max-width: 300px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 15px;
}

.button-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.button-main-text {
    font-size: 16px;
    font-weight: 600;
}

.button-subtext {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    margin-top: 2px;
}

.button-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #FFD700;
    /* Amarelo dourado */
    animation: blink 1.5s infinite;
}

.button-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.7);
    margin-left: auto;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
        filter: brightness(1);
    }

    50% {
        opacity: 0.7;
        filter: brightness(1.5);
    }
}

@keyframes fadeInScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.buttons-container .custom-button:nth-child(1) {
    animation-delay: 0.5s;
}

.buttons-container .custom-button:nth-child(2) {
    animation-delay: 0.7s;
}

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

/* Support Text */
.support-container {
    margin-top: 15px;
    text-align: center;
}

.support-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
}

.support-link:hover {
    color: white;
    border-bottom: 1px solid white;
}

/* 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;
}

/* Popup Notification */
.popup-notification {
    position: fixed;
    left: 20px;
    bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transform: translateX(-120%);
    transition: transform 0.5s ease-in-out;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 300px;
}

.popup-notification.show {
    transform: translateX(0);
}

.popup-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.popup-name {
    font-weight: 700;
    color: #FFD700;
    font-size: 16px;
}

.popup-text {
    font-size: 14px;
    color: white;
    font-weight: 400;
}

/* Responsive Design for Popup */
@media (max-width: 768px) {
    .popup-notification {
        left: 10px;
        bottom: 10px;
        padding: 12px;
        max-width: 250px;
    }

    .popup-name {
        font-size: 14px;
    }

    .popup-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .popup-notification {
        left: 5px;
        bottom: 5px;
        padding: 10px;
        max-width: 200px;
    }

    .popup-name {
        font-size: 13px;
    }

    .popup-text {
        font-size: 11px;
    }
}

/* 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;
    }

    .custom-button {
        width: 90%;
        max-width: none;
        padding: 12px 20px;
        font-size: 15px;
    }

    .button-main-text {
        font-size: 15px;
    }

    .button-subtext {
        font-size: 11px;
    }
}