:root {
    --bg: #0f0f1a;
    --text: #fff;
    --accent: #ff4d6d;
}

.light-mode {
    --bg: #f5f5f5;
    --text: #111;
}

/* GLOBAL */
body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    margin: 0px;
}

.logo {
    color: #ff4d6d;
}

/* ANIMATED BACKGROUND */
.bg-animation {
    position: fixed;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, #ff4d6d33, transparent, #6a00ff33);
    z-index: -1;
}

/* NAVBAR BASE */
.custom-navbar {
    backdrop-filter: blur(15px);
    background: rgba(15,15,25,0.6);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

/* SCROLL EFFECT */
.custom-navbar.scrolled {
    background: rgba(10,10,20,0.95);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* BRAND */
.navbar-brand {
    font-size: 20px;
    color: #ff4d6d !important;
}

/* LINKS */
.navbar .nav-link {
    color: #ccc;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

/* HOVER EFFECT */
.navbar .nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -5px;
    background: #ff4d6d;
    transition: 0.3s;
}

.navbar .nav-link:hover::after {
    width: 100%;
}

.navbar .nav-link:hover {
    color: #fff;
}

/* ACTIVE LINK */
.navbar .nav-link.active {
    color: #fff;
}

/* GRADIENT BUTTON */
.btn-gradient {
    background: linear-gradient(135deg, #ff4d6d, #ff1e4d);
    border: none;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    transition: 0.3s;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,77,109,0.4);
}

/* MOBILE MENU */
@media (max-width: 991px) {

    .navbar-collapse {
        background: rgba(15,15,25,0.95);
        backdrop-filter: blur(20px);
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
    }

    .navbar-nav {
        gap: 10px;
    }

    .nav-link {
        padding: 10px 0;
    }

}



/* HERO SECTION */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* TITLE */
.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-title span {
    color: #ff4d6d;
}

/* SUBTITLE */
.hero-subtitle {
    margin-top: 15px;
    font-size: 16px;
    color: #495057;
    max-width: 500px;
}

/* BUTTONS */
.hero-buttons {
    margin-top: 25px;
}

/* GRADIENT BUTTON */
.btn-gradient {
    background: linear-gradient(135deg, #ff4d6d, #ff1e4d);
    border: none;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    transition: 0.3s;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,77,109,0.4);
}

/* HERO CARD */
.hero-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 15px;
    display: inline-block;
    animation: float 4s ease-in-out infinite;
}

.hero-card img {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
}

.hero-text {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s ease;
}

/* FLOAT ANIMATION */
@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 14px;
    }
}


/* FEATURES SECTION */
.features {
    position: relative;
}

/* FEATURE CARD */
.feature-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

/* ICON */
.feature-card .icon {
    font-size: 30px;
    margin-bottom: 15px;
}

/* TITLE */
.feature-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* TEXT */
.feature-card p {
    font-size: 14px;
    color: #bbb;
}

/* HOVER EFFECT */
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-color: rgba(255,77,109,0.3);
}

/* RESPONSIVE TWEAK */
@media (max-width: 768px) {
    .feature-card {
        padding: 25px;
    }
}


/* CREATOR CARD */
/* CREATOR CARD */
.creator-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.05);
}

/* IMAGE */
.creator-img {
    position: relative;
}

.creator-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* BADGE */
.creator-img .badge {
    position: absolute;
    top: 10px;
    left: 10px;
}

/* INFO */
.creator-info {
    padding: 20px;
}

/* NAME */
.creator-info h5 {
    font-weight: 600;
}

/* VERIFIED */
.verified {
    color: #ff4d6d;
    font-size: 14px;
}

/* META */
.creator-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #bbb;
    margin-top: 10px;
}

/* HOVER EFFECT */
.creator-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    border-color: rgba(255,77,109,0.3);
}

/* BUTTON (reuse) */
.btn-gradient {
    background: linear-gradient(135deg, #ff4d6d, #ff1e4d);
    border: none;
    color: #fff;
    border-radius: 8px;
}


/* REVEAL ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 1.6s;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* LOADER */
.loader {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255,255,255,0.1);
    border-top: 4px solid #ff4d6d;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 40px auto;
}

/* SPIN ANIMATION */
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* HIDE CLASS */
.hidden {
    /* display: none; */
}

/* MOBILE */
@media (max-width: 576px) {
    .dialog-warning {
        padding: 20px;
    }
}


/* STATUS ICON */
.status-icon {
    font-size: 40px;
    display: inline-block;
    background: rgba(255,77,109,0.1);
    padding: 13px;
    border-radius: 50%;
    color: #ff4d6d;
}

/* LIST STYLE */
.modal-body ul {
    padding-left: 18px;
    color: #ccc;
}




/* OVERLAY */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;

    z-index: 9999;
}

/* ACTIVE */
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* MODAL BOX */
.dialog-warning {
    background: rgba(20,20,35,0.95);
    backdrop-filter: blur(20px);

    padding: 30px;
    border-radius: 16px;
    width: 95%;
    max-width: 500px;

    color: #fff;
    position: relative;

    transform: scale(0.8);
    transition: 0.4s ease;
}

/* ANIMATION IN */
.modal-overlay.active .dialog-warning {
    transform: scale(1);
}

/* TITLE */
.modal-title {
    font-weight: 600;
    margin-bottom: 15px;
}

/* SUPPORT BOX */
.support-box {
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

/* TELEGRAM BUTTON */
.telegram-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff4d6d42, #ff4d6d);
    color: #fff;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;

    transition: 0.3s;
}

/* HOVER EFFECT */
.telegram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,136,204,0.4);
}

/* BODY */
.modal-body {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

/* CLOSE BUTTON */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* BUTTONS */
.btn {
    padding: 10px 18px;
    border-radius: 8px;
    border: none;
    transition: 0.3s;
}

.btn.primary {
    background: linear-gradient(135deg, #ff4d6d, #ff1e4d);
    color: #fff;
}

.btn.ghost {
    background: transparent;
    color: #ccc;
}

/* HOVER */
.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,77,109,0.4);
}

.btn.ghost:hover {
    color: #fff;
}
