/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #FFFFFF;
    height: 100vh;
    overflow: hidden;
    /* Prevent scrolling if content fits */
    position: relative;
    background-image: url('1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Allow scrolling on smaller screens if content overflows */
@media (max-height: 700px) {
    body {
        overflow-y: auto;
    }
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Layout Structure */
header,
main,
footer {
    position: relative;
    z-index: 2;
    /* Above overlay */
}

header {
    padding: 2rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Main Hero Section */
main {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

/* CTA Buttons */
.cta-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 300px;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    /* Semi-transparent white */
    border: 2px solid #000000;
    border-radius: 50px;
    /* Circular/Pill shape */
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    /* For badge positioning */
}

/* Badge Styling */
.badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background-color: #FF1493;
    /* Hot Pink */
    color: white;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Specific Icon Colors */
.cta-button i {
    font-size: 1.3rem;
}

.onlyfans i {
    color: #00BFFF;
    /* Blue for OnlyFans */
}

.fansly i {
    color: #00BFFF;
    /* Blue for Fansly */
}

.telegram i {
    color: #0088cc;
    /* Telegram Blue */
}

.twitter i {
    color: #000000;
    /* Black for X */
}

/* Hover Effects */
.cta-button:hover {
    transform: scale(1.05);
    background-color: #FFFFFF;
    color: #000000;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

/* Footer */
footer {
    position: absolute;
    bottom: 1rem;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    color: #CCCCCC;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating Message Notification */
.message-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 10px 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 100;
    animation: slideIn 0.5s ease-out 1s backwards, float 3s ease-in-out infinite;
    max-width: 250px;
    border-left: 4px solid #FF1493;
}

.message-icon {
    position: relative;
    font-size: 1.5rem;
    color: #FF1493;
}

.notification-dot {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: red;
    color: white;
    font-size: 0.6rem;
    font-weight: bold;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.message-text {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
    line-height: 1.2;
}

.message-text strong {
    font-weight: 700;
}

.message-text span {
    font-size: 0.8rem;
    color: #666;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
}

/* CTA Buttons */
.cta-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 300px;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    /* Semi-transparent white */
    border: 2px solid #000000;
    border-radius: 50px;
    /* Circular/Pill shape */
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    /* For badge positioning */
}

/* Badge Styling */
.badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background-color: #FF1493;
    /* Hot Pink */
    color: white;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Specific Icon Colors */
.cta-button i {
    font-size: 1.3rem;
}

.onlyfans i {
    color: #00BFFF;
    /* Blue for OnlyFans */
}

.fansly i {
    color: #00BFFF;
    /* Blue for Fansly */
}

.telegram i {
    color: #0088cc;
    /* Telegram Blue */
}

.twitter i {
    color: #000000;
    /* Black for X */
}

/* Hover Effects */
.cta-button:hover {
    transform: scale(1.05);
    background-color: #FFFFFF;
    color: #000000;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

/* Footer */
footer {
    position: absolute;
    bottom: 1rem;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    color: #CCCCCC;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating Message Notification */
.message-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 10px 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 100;
    animation: slideIn 0.5s ease-out 1s backwards, float 3s ease-in-out infinite;
    max-width: 250px;
    border-left: 4px solid #FF1493;
}

.message-icon {
    position: relative;
    font-size: 1.5rem;
    color: #FF1493;
}

.notification-dot {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: red;
    color: white;
    font-size: 0.6rem;
    font-weight: bold;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.message-text {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
    line-height: 1.2;
}

.message-text strong {
    font-weight: 700;
}

.message-text span {
    font-size: 0.8rem;
    color: #666;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .main-title {
        font-size: 3.5rem;
    }

    .subtitle {
        font-size: 1.5rem;
    }

    .cta-container {
        flex-direction: row;
        max-width: none;
        justify-content: center;
        flex-wrap: wrap;
    }

    .cta-button {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2.5rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .message-notification {
        bottom: 10px;
        right: 10px;
        left: 10px;
        width: auto;
    }
}