/* ============================================
   BELLAGEIO THEME - main.css (moban-76)
   World Casino - Bellagio Fountain & Garden
   Colors: #E91E63 (Pink), #FFC107 (Gold), #FFF8E1 (White), #1A0A1A (Bg)
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #1A0A1A;
    color: #FFF8E1;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Dancing Script', cursive;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: #FFC107;
    transition: all 0.3s ease;
}

a:hover {
    color: #E91E63;
    text-shadow: 0 0 10px rgba(233, 30, 99, 0.5);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.gold-text {
    color: #FFC107;
}

/* === KEYFRAME ANIMATIONS === */
@keyframes fountainSpray {
    0% {
        transform: translateY(0) scaleY(0.3);
        opacity: 0.3;
    }
    30% {
        transform: translateY(-120px) scaleY(1);
        opacity: 1;
    }
    60% {
        transform: translateY(-180px) scaleY(1.2);
        opacity: 0.8;
    }
    100% {
        transform: translateY(-220px) scaleY(0.5);
        opacity: 0;
    }
}

@keyframes flowerBloom {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: scale(1) rotate(180deg);
        opacity: 1;
    }
    100% {
        transform: scale(1.2) rotate(360deg);
        opacity: 0.8;
    }
}

@keyframes waterDance {
    0%, 100% {
        transform: translateY(0) rotate(-2deg) scaleY(1);
    }
    25% {
        transform: translateY(-30px) rotate(2deg) scaleY(1.1);
    }
    50% {
        transform: translateY(-10px) rotate(-1deg) scaleY(0.95);
    }
    75% {
        transform: translateY(-40px) rotate(3deg) scaleY(1.15);
    }
}

@keyframes petalDrift {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 0.8;
    }
    100% {
        transform: translateX(100px) translateY(200px) rotate(720deg);
        opacity: 0;
    }
}

@keyframes waterShimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

@keyframes pinkGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(233, 30, 99, 0.3), 0 0 40px rgba(233, 30, 99, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(233, 30, 99, 0.5), 0 0 60px rgba(233, 30, 99, 0.2);
    }
}

@keyframes goldPulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(255, 193, 7, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 193, 7, 0.6), 0 0 60px rgba(255, 193, 7, 0.2);
    }
}

@keyframes fountainFlow {
    0% {
        border-color: rgba(255, 193, 7, 0.1);
    }
    50% {
        border-color: rgba(233, 30, 99, 0.6);
    }
    100% {
        border-color: rgba(255, 193, 7, 0.3);
    }
}

@keyframes waterJet {
    0% {
        transform: translateY(0) scaleX(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-60px) scaleX(0.8);
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) scaleX(0.4);
        opacity: 0;
    }
}

@keyframes notificationSlide {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmerGold {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* === HEADER === */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(26, 10, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(233, 30, 99, 0.2);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.logo img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.header-time {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #FFC107;
    background: rgba(233, 30, 99, 0.1);
    padding: 6px 15px;
    border-radius: 20px;
    border: 1px solid rgba(233, 30, 99, 0.3);
}

.header-btn-group {
    display: flex;
    gap: 8px;
}

.btn-login, .btn-register, .btn-demo {
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-login {
    background: transparent;
    border: 1px solid #FFC107;
    color: #FFC107;
}

.btn-login:hover {
    background: #FFC107;
    color: #1A0A1A;
}

.btn-register {
    background: linear-gradient(135deg, #E91E63, #FFC107);
    border: none;
    color: #fff;
}

.btn-register:hover {
    background: linear-gradient(135deg, #FFC107, #E91E63);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
}

.btn-demo {
    background: transparent;
    border: 1px solid #E91E63;
    color: #E91E63;
}

.btn-demo:hover {
    background: #E91E63;
    color: #fff;
}

/* === NAVIGATION === */
.main-navigation {
    background: rgba(26, 10, 26, 0.8);
    border-top: 1px solid rgba(255, 193, 7, 0.1);
    border-bottom: 1px solid rgba(255, 193, 7, 0.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 12px 16px;
    color: #FFF8E1;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #E91E63;
    background: rgba(233, 30, 99, 0.1);
    text-shadow: 0 0 10px rgba(233, 30, 99, 0.3);
}

.nav-link i {
    margin-right: 5px;
    color: #FFC107;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #FFC107;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

/* === NOTIFICATION BAR === */
.notification-bar {
    background: linear-gradient(90deg, #E91E63, #FFC107, #E91E63);
    padding: 8px 0;
    overflow: hidden;
}

.notification-content {
    display: flex;
    gap: 40px;
    animation: notificationSlide 30s linear infinite;
    white-space: nowrap;
}

.notification-content span {
    font-size: 13px;
    font-weight: 500;
    color: #1A0A1A;
}

/* === ANNOUNCEMENT MODAL === */
.announcement-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.announcement-modal.active {
    display: flex;
}

.announcement-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 10, 26, 0.85);
    backdrop-filter: blur(5px);
}

.announcement-content {
    position: relative;
    background: linear-gradient(135deg, #2D1030, #1A0A1A);
    border: 2px solid #E91E63;
    border-radius: 20px;
    padding: 35px;
    max-width: 480px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    animation: fadeInUp 0.5s ease-out;
    box-shadow: 0 0 40px rgba(233, 30, 99, 0.3);
}

.announcement-close {
    position: absolute;
    top: 12px;
    right: 15px;
    background: none;
    border: none;
    color: #FFC107;
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s;
}

.announcement-close:hover {
    color: #E91E63;
}

.announcement-header-icon {
    text-align: center;
    margin-bottom: 15px;
}

.announcement-header-icon i {
    font-size: 40px;
    color: #E91E63;
    animation: flowerBloom 3s ease-in-out infinite;
}

.announcement-title {
    text-align: center;
    font-size: 22px;
    margin-bottom: 20px;
    font-family: 'Dancing Script', cursive;
}

.announcement-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.announcement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(233, 30, 99, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(233, 30, 99, 0.2);
    transition: all 0.3s ease;
}

.announcement-item:hover {
    background: rgba(233, 30, 99, 0.2);
    border-color: #E91E63;
    transform: translateX(5px);
}

.announcement-badge {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    min-width: 40px;
    text-align: center;
}

.announcement-badge.hot {
    background: #E91E63;
    color: #fff;
}

.announcement-badge.new {
    background: #FFC107;
    color: #1A0A1A;
}

.announcement-badge.info {
    background: #4CAF50;
    color: #fff;
}

.announcement-text {
    flex: 1;
    font-size: 13px;
    color: #FFF8E1;
}

.announcement-item i.fa-chevron-right {
    color: #FFC107;
    font-size: 12px;
}

.announcement-footer {
    text-align: center;
}

.announcement-cta {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(135deg, #E91E63, #FFC107);
    color: #fff;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.announcement-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.5);
    color: #fff;
}

/* === HERO SECTION - Bellagio Fountain Show === */
.bellageio-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, #1A0A1A 0%, #2D1030 30%, #1A0A1A 100%);
    margin-top: 0;
    padding: 60px 20px;
}

.fountain-stage {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    height: 300px;
    pointer-events: none;
}

.fountain-jet {
    position: absolute;
    bottom: 0;
    width: 8px;
    border-radius: 4px;
    background: linear-gradient(to top, rgba(233, 30, 99, 0.6), rgba(255, 193, 7, 0.3), transparent);
    animation: fountainSpray 3s ease-in-out infinite;
}

.fountain-jet-1 {
    left: 20%;
    height: 150px;
    animation-delay: 0s;
    background: linear-gradient(to top, rgba(233, 30, 99, 0.8), rgba(255, 193, 7, 0.4), transparent);
}

.fountain-jet-2 {
    left: 35%;
    height: 200px;
    animation-delay: 0.5s;
    background: linear-gradient(to top, rgba(255, 193, 7, 0.8), rgba(233, 30, 99, 0.4), transparent);
}

.fountain-jet-3 {
    left: 50%;
    height: 250px;
    animation-delay: 0.2s;
    transform: translateX(-50%);
    background: linear-gradient(to top, rgba(233, 30, 99, 0.9), rgba(255, 193, 7, 0.5), transparent);
    width: 12px;
}

.fountain-jet-4 {
    left: 65%;
    height: 200px;
    animation-delay: 0.7s;
    background: linear-gradient(to top, rgba(255, 193, 7, 0.8), rgba(233, 30, 99, 0.4), transparent);
}

.fountain-jet-5 {
    left: 80%;
    height: 150px;
    animation-delay: 1s;
    background: linear-gradient(to top, rgba(233, 30, 99, 0.8), rgba(255, 193, 7, 0.4), transparent);
}

/* === GARDEN FLOWERS === */
.garden-flowers {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    pointer-events: none;
}

.garden-flower {
    position: absolute;
    bottom: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    animation: flowerBloom 4s ease-in-out infinite;
}

.garden-flower::before, .garden-flower::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.garden-flower-1 {
    left: 10%;
    background: radial-gradient(circle, #E91E63, #FFC107);
    animation-delay: 0s;
}

.garden-flower-1::before {
    top: -10px;
    left: 5px;
    background: radial-gradient(circle, #E91E63, transparent);
}

.garden-flower-2 {
    left: 30%;
    background: radial-gradient(circle, #FFC107, #E91E63);
    animation-delay: 1s;
}

.garden-flower-2::before {
    top: -8px;
    left: 5px;
    background: radial-gradient(circle, #FFC107, transparent);
}

.garden-flower-3 {
    right: 30%;
    background: radial-gradient(circle, #E91E63, #FFC107);
    animation-delay: 2s;
}

.garden-flower-3::before {
    top: -10px;
    left: 5px;
    background: radial-gradient(circle, #E91E63, transparent);
}

.garden-flower-4 {
    right: 10%;
    background: radial-gradient(circle, #FFC107, #E91E63);
    animation-delay: 3s;
}

.garden-flower-4::before {
    top: -8px;
    left: 5px;
    background: radial-gradient(circle, #FFC107, transparent);
}

.water-spray-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background:
        radial-gradient(1px 1px at 20% 30%, rgba(255, 193, 7, 0.4), transparent),
        radial-gradient(1px 1px at 40% 70%, rgba(233, 30, 99, 0.3), transparent),
        radial-gradient(2px 2px at 60% 40%, rgba(255, 193, 7, 0.3), transparent),
        radial-gradient(1px 1px at 80% 60%, rgba(233, 30, 99, 0.4), transparent);
    animation: waterShimmer 3s ease-in-out infinite;
}

/* === HERO CONTENT === */
.hero-inner-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
}

.hero-main-title {
    margin-bottom: 25px;
}

.hero-brand {
    display: block;
    font-family: 'Dancing Script', cursive;
    font-size: 56px;
    font-weight: 700;
    color: #FFC107;
    text-shadow: 0 0 30px rgba(255, 193, 7, 0.5), 0 0 60px rgba(233, 30, 99, 0.3);
    letter-spacing: 8px;
    animation: goldPulse 3s ease-in-out infinite;
}

.hero-divider-line {
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #E91E63, #FFC107, #E91E63, transparent);
    margin: 15px auto;
}

.hero-tagline {
    display: block;
    font-family: 'Dancing Script', cursive;
    font-size: 22px;
    color: #E91E63;
    letter-spacing: 4px;
    text-shadow: 0 0 15px rgba(233, 30, 99, 0.4);
}

.hero-description {
    font-size: 15px;
    color: #FFF8E1;
    opacity: 0.85;
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-family: 'Dancing Script', cursive;
    font-size: 32px;
    font-weight: 700;
    color: #FFC107;
    text-shadow: 0 0 15px rgba(255, 193, 7, 0.4);
}

.hero-stat-label {
    display: block;
    font-size: 12px;
    color: #FFF8E1;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-gold-primary {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #E91E63, #FFC107);
    color: #fff;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.btn-gold-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.5);
    color: #fff;
    background: linear-gradient(135deg, #FFC107, #E91E63);
}

.btn-outline-gold {
    display: inline-block;
    padding: 14px 40px;
    background: transparent;
    color: #FFC107;
    border: 2px solid #FFC107;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-outline-gold:hover {
    background: #FFC107;
    color: #1A0A1A;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
}

/* === SECTION COMMON === */
.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
    font-family: 'Dancing Script', cursive;
    letter-spacing: 2px;
}

.section-title i {
    margin-right: 10px;
    font-size: 28px;
}

.section-subtitle {
    text-align: center;
    font-size: 14px;
    color: #FFF8E1;
    opacity: 0.7;
    margin-bottom: 40px;
}

/* === STAR GAMES SECTION === */
.star-games {
    padding: 60px 0;
    position: relative;
}

.star-games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.star-game-card {
    position: relative;
    background: linear-gradient(135deg, rgba(45, 16, 48, 0.8), rgba(26, 10, 26, 0.9));
    border: 1px solid rgba(233, 30, 99, 0.2);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
    display: block;
    color: #FFF8E1;
}

.star-game-card:hover {
    border-color: #E91E63;
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
    color: #FFF8E1;
}

.star-game-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.star-game-icon {
    margin-bottom: 15px;
}

.star-game-icon i {
    font-size: 40px;
    color: #E91E63;
    text-shadow: 0 0 20px rgba(233, 30, 99, 0.5);
}

.star-game-rating {
    margin-bottom: 12px;
}

.star-game-rating i {
    color: #FFC107;
    font-size: 12px;
    margin: 0 1px;
}

.star-game-card h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 22px;
    color: #FFC107;
    margin-bottom: 10px;
}

.star-game-card p {
    font-size: 13px;
    color: #FFF8E1;
    opacity: 0.75;
    margin-bottom: 15px;
    line-height: 1.6;
}

.star-game-players {
    font-size: 12px;
    color: #E91E63;
    display: inline-block;
    padding: 4px 12px;
    background: rgba(233, 30, 99, 0.1);
    border-radius: 15px;
}

.star-game-players i {
    margin-right: 4px;
}

/* === FOUNTAIN GRID (3x4) === */
.fountain-grid {
    padding: 60px 0;
    position: relative;
}

.fountain-map {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.fountain-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.fountain-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    background: rgba(45, 16, 48, 0.6);
    border: 1px solid rgba(233, 30, 99, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 120px;
    color: #FFF8E1;
}

.fountain-node:hover {
    border-color: #E91E63;
    background: rgba(233, 30, 99, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.2);
    color: #FFF8E1;
}

.node-fountain {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E91E63, #FFC107);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: waterDance 3s ease-in-out infinite;
}

.node-fountain i {
    color: #fff;
    font-size: 18px;
}

.node-label {
    font-size: 12px;
    color: #FFF8E1;
    font-weight: 500;
    text-align: center;
}

.fountain-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, rgba(233, 30, 99, 0.3), rgba(255, 193, 7, 0.5), rgba(233, 30, 99, 0.3));
    animation: fountainFlow 3s ease-in-out infinite;
    border-radius: 1px;
}

/* === FOUNTAIN FEATURES === */
.fountain-features {
    padding: 60px 0;
}

.fountain-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.fountain-feature-card {
    background: linear-gradient(135deg, rgba(45, 16, 48, 0.7), rgba(26, 10, 26, 0.8));
    border: 1px solid rgba(233, 30, 99, 0.15);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.fountain-feature-card:hover {
    border-color: #E91E63;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.2);
}

.fountain-feature-icon {
    margin-bottom: 20px;
}

.water-drop-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #E91E63, #FFC107);
    position: relative;
    animation: pinkGlow 3s ease-in-out infinite;
}

.water-drop-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 248, 225, 0.3);
}

.fountain-feature-card h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 20px;
    color: #FFC107;
    margin-bottom: 12px;
}

.fountain-feature-card p {
    font-size: 13px;
    color: #FFF8E1;
    opacity: 0.75;
    line-height: 1.7;
}

/* === GARDEN STATS === */
.garden-stats {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.garden-stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(45, 16, 48, 0.3), rgba(26, 10, 26, 0.5));
}

.petal-drift-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(3px 3px at 15% 20%, rgba(233, 30, 99, 0.4), transparent),
        radial-gradient(2px 2px at 35% 50%, rgba(255, 193, 7, 0.3), transparent),
        radial-gradient(3px 3px at 55% 30%, rgba(233, 30, 99, 0.3), transparent),
        radial-gradient(2px 2px at 75% 70%, rgba(255, 193, 7, 0.4), transparent),
        radial-gradient(3px 3px at 90% 40%, rgba(233, 30, 99, 0.3), transparent);
    animation: petalDrift 8s linear infinite;
}

.garden-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.garden-stat-card {
    background: linear-gradient(135deg, rgba(45, 16, 48, 0.8), rgba(26, 10, 26, 0.9));
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 15px;
    padding: 30px 15px;
    text-align: center;
    transition: all 0.4s ease;
}

.garden-stat-card:hover {
    border-color: #FFC107;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.2);
}

.stat-flower-decoration {
    margin-bottom: 10px;
}

.stat-flower-decoration i {
    color: #E91E63;
    font-size: 20px;
    animation: flowerBloom 4s ease-in-out infinite;
}

.stat-flower-decoration.bottom {
    margin-bottom: 0;
    margin-top: 10px;
}

.stat-number {
    font-family: 'Dancing Script', cursive;
    font-size: 36px;
    font-weight: 700;
    color: #FFC107;
    text-shadow: 0 0 15px rgba(255, 193, 7, 0.4);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: #FFF8E1;
    opacity: 0.75;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === GARDEN PROMOTIONS === */
.garden-promos {
    padding: 60px 0;
}

.garden-promos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.garden-promo-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.4s ease;
}

.garden-promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
}

.promo-petal-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.08), transparent 70%);
    animation: flowerBloom 6s ease-in-out infinite;
}

.garden-promo-inner {
    position: relative;
    background: linear-gradient(135deg, rgba(45, 16, 48, 0.9), rgba(26, 10, 26, 0.95));
    border: 1px solid rgba(233, 30, 99, 0.2);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    z-index: 2;
}

.promo-icon {
    margin-bottom: 15px;
}

.promo-icon i {
    font-size: 35px;
    color: #E91E63;
    text-shadow: 0 0 20px rgba(233, 30, 99, 0.5);
}

.garden-promo-inner h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 22px;
    color: #FFC107;
    margin-bottom: 12px;
}

.garden-promo-inner p {
    font-size: 13px;
    color: #FFF8E1;
    opacity: 0.75;
    line-height: 1.7;
    margin-bottom: 15px;
}

.promo-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 12px;
    color: #FFF8E1;
    opacity: 0.7;
}

.promo-badge {
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.promo-badge.hot {
    background: #E91E63;
    color: #fff;
}

.promo-badge.new {
    background: #FFC107;
    color: #1A0A1A;
}

.promo-badge.vip {
    background: linear-gradient(135deg, #E91E63, #FFC107);
    color: #fff;
}

.btn-promo {
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(135deg, #E91E63, #FFC107);
    color: #fff;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-promo:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
    color: #fff;
}

/* === FOOTER CTA === */
.footer-cta-section {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
    margin: 40px 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(45, 16, 48, 0.5), rgba(26, 10, 26, 0.7));
    border: 1px solid rgba(233, 30, 99, 0.2);
}

.footer-cta-fountain {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.cta-petal-drift {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(2px 2px at 10% 20%, rgba(233, 30, 99, 0.5), transparent),
        radial-gradient(3px 3px at 30% 60%, rgba(255, 193, 7, 0.4), transparent),
        radial-gradient(2px 2px at 50% 30%, rgba(233, 30, 99, 0.3), transparent),
        radial-gradient(3px 3px at 70% 80%, rgba(255, 193, 7, 0.5), transparent),
        radial-gradient(2px 2px at 90% 50%, rgba(233, 30, 99, 0.4), transparent);
    animation: petalDrift 10s linear infinite;
}

.footer-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-fountain-decoration {
    margin-bottom: 25px;
    position: relative;
    width: 80px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
}

.cta-fountain-outer {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E91E63, #FFC107);
    opacity: 0.3;
    animation: pinkGlow 4s ease-in-out infinite;
}

.cta-fountain-inner {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFC107, #E91E63);
    opacity: 0.5;
}

.footer-cta-inner h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 32px;
    color: #FFC107;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
}

.footer-cta-inner > p {
    font-size: 14px;
    color: #FFF8E1;
    opacity: 0.8;
    margin-bottom: 25px;
    line-height: 1.8;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-feature {
    font-size: 13px;
    color: #FFF8E1;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cta-feature i {
    color: #E91E63;
}

.cta-main-btn {
    font-size: 16px;
    padding: 16px 50px;
}

/* === NEWS SECTION === */
.home-news-section {
    padding: 60px 0;
}

.home-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.home-news-placeholder {
    display: contents;
}

.article-card {
    background: linear-gradient(135deg, rgba(45, 16, 48, 0.7), rgba(26, 10, 26, 0.8));
    border: 1px solid rgba(233, 30, 99, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
    color: #FFF8E1;
}

.article-card:hover {
    border-color: #E91E63;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.2);
    color: #FFF8E1;
}

.article-card-thumb {
    height: 180px;
    overflow: hidden;
}

.article-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-card:hover .article-card-thumb img {
    transform: scale(1.1);
}

.article-card-title {
    padding: 15px 15px 8px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    min-height: 50px;
}

.article-card-title span {
    color: #FFC107;
}

.article-card-title a {
    color: #FFC107;
}

.article-card-title a:hover {
    color: #E91E63;
}

.article-card-meta {
    padding: 0 15px;
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #FFF8E1;
    opacity: 0.6;
    margin-bottom: 8px;
}

.article-card-meta i {
    margin-right: 4px;
    color: #E91E63;
}

.article-card-excerpt {
    padding: 0 15px 15px;
    font-size: 13px;
    color: #FFF8E1;
    opacity: 0.7;
    line-height: 1.6;
}

.article-card-more {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 15px 15px;
    font-size: 12px;
    color: #E91E63;
    border: 1px solid #E91E63;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.article-card-more:hover {
    background: #E91E63;
    color: #fff;
}

.view-more-btn {
    display: block;
    text-align: center;
    padding: 12px 30px;
    border: 2px solid #FFC107;
    border-radius: 30px;
    color: #FFC107;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    max-width: 200px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    background: #FFC107;
    color: #1A0A1A;
    transform: translateY(-2px);
}

.view-more-btn i {
    margin-left: 5px;
}

/* === CONTENT AREA & LAYOUT === */
.content-area {
    display: flex;
    gap: 25px;
    padding: 20px 0;
}

.main-content {
    flex: 1;
    min-width: 0;
}

/* === BREADCRUMB === */
.breadcrumb {
    padding: 15px 0;
    font-size: 13px;
    color: #FFF8E1;
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #FFC107;
}

.breadcrumb a:hover {
    color: #E91E63;
}

.breadcrumb span {
    color: #FFF8E1;
    opacity: 0.6;
}

/* === ARTICLE GRID === */
.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

/* === PAGINATION === */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 20px 0;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    background: rgba(45, 16, 48, 0.6);
    border: 1px solid rgba(233, 30, 99, 0.2);
    color: #FFF8E1;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: linear-gradient(135deg, #E91E63, #FFC107);
    border-color: #E91E63;
    color: #fff;
}

/* === CATEGORY HEADER === */
.category-header {
    text-align: center;
    padding: 30px 0;
}

.category-title {
    font-family: 'Dancing Script', cursive;
    font-size: 32px;
    margin-bottom: 10px;
}

.category-title i {
    margin-right: 10px;
}

.category-desc {
    font-size: 14px;
    color: #FFF8E1;
    opacity: 0.7;
}

/* === PROVIDER TABS === */
.provider-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding: 15px 0;
}

.provider-tab {
    padding: 8px 18px;
    background: rgba(45, 16, 48, 0.6);
    border: 1px solid rgba(233, 30, 99, 0.2);
    border-radius: 25px;
    color: #FFF8E1;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.provider-tab:hover,
.provider-tab.active {
    background: linear-gradient(135deg, #E91E63, #FFC107);
    border-color: #E91E63;
    color: #fff;
}

/* === SINGLE ARTICLE === */
.single-article {
    background: linear-gradient(135deg, rgba(45, 16, 48, 0.5), rgba(26, 10, 26, 0.7));
    border: 1px solid rgba(233, 30, 99, 0.15);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.article-title {
    font-family: 'Dancing Script', cursive;
    font-size: 30px;
    color: #FFC107;
    margin-bottom: 15px;
}

.article-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #FFF8E1;
    opacity: 0.7;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(233, 30, 99, 0.15);
}

.article-meta i {
    margin-right: 5px;
    color: #E91E63;
}

.article-meta a {
    color: #FFC107;
}

.article-featured-img {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
}

.article-featured-img img {
    width: 100%;
    border-radius: 12px;
}

.article-content {
    font-size: 15px;
    line-height: 1.8;
    color: #FFF8E1;
}

.article-content p {
    margin-bottom: 15px;
}

.article-content h2, .article-content h3 {
    color: #FFC107;
    margin: 25px 0 15px;
}

.article-content a {
    color: #E91E63;
    text-decoration: underline;
}

.article-content img {
    border-radius: 10px;
    margin: 15px 0;
}

.article-content blockquote {
    border-left: 3px solid #E91E63;
    padding: 15px 20px;
    margin: 20px 0;
    background: rgba(233, 30, 99, 0.05);
    border-radius: 0 10px 10px 0;
}

.article-content ul, .article-content ol {
    padding-left: 25px;
    margin-bottom: 15px;
}

.article-content li {
    margin-bottom: 8px;
}

.article-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(233, 30, 99, 0.15);
}

.article-tags i {
    color: #E91E63;
}

.article-tags span {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(233, 30, 99, 0.1);
    border-radius: 15px;
    font-size: 12px;
    color: #FFC107;
}

.article-tags a span {
    transition: all 0.3s ease;
}

.article-tags a span:hover {
    background: #E91E63;
    color: #fff;
}

/* === ARTICLE NAV === */
.article-nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    margin-top: 20px;
    border-top: 1px solid rgba(233, 30, 99, 0.15);
}

.article-nav-prev a, .article-nav-next a {
    color: #FFC107;
    font-size: 14px;
    transition: color 0.3s;
}

.article-nav-prev a:hover, .article-nav-next a:hover {
    color: #E91E63;
}

/* === RELATED POSTS === */
.related-posts {
    margin-bottom: 30px;
}

.related-posts-title {
    font-family: 'Dancing Script', cursive;
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(233, 30, 99, 0.15);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.related-item {
    display: block;
    background: rgba(45, 16, 48, 0.6);
    border: 1px solid rgba(233, 30, 99, 0.15);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #FFF8E1;
}

.related-item:hover {
    border-color: #E91E63;
    transform: translateY(-3px);
    color: #FFF8E1;
}

.related-item-thumb {
    height: 100px;
    overflow: hidden;
}

.related-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-item-title {
    padding: 10px;
    font-size: 13px;
    font-weight: 500;
    color: #FFC107;
    line-height: 1.4;
}

/* === PAGE ARTICLE === */
.page-article {
    background: linear-gradient(135deg, rgba(45, 16, 48, 0.5), rgba(26, 10, 26, 0.7));
    border: 1px solid rgba(233, 30, 99, 0.15);
    border-radius: 15px;
    padding: 30px;
}

.page-title {
    font-family: 'Dancing Script', cursive;
    font-size: 30px;
    color: #FFC107;
    margin-bottom: 20px;
}

.page-featured-img {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.page-featured-img img {
    width: 100%;
    border-radius: 12px;
}

.page-content {
    font-size: 15px;
    line-height: 1.8;
    color: #FFF8E1;
}

.page-content p {
    margin-bottom: 15px;
}

/* === 404 ERROR PAGE === */
.error-page {
    text-align: center;
    padding: 80px 20px;
}

.error-fountain {
    margin: 0 auto 30px;
    position: relative;
    width: 100px;
    height: 100px;
}

.error-fountain-outer {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E91E63, #FFC107);
    opacity: 0.4;
    animation: pinkGlow 4s ease-in-out infinite;
}

.error-fountain-inner {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFC107, #E91E63);
    opacity: 0.6;
}

.error-code {
    font-size: 80px;
    color: #FFC107;
    font-family: 'Dancing Script', cursive;
    text-shadow: 0 0 30px rgba(255, 193, 7, 0.3);
    margin-bottom: 10px;
}

.error-title {
    font-size: 24px;
    color: #FFF8E1;
    margin-bottom: 15px;
    font-family: 'Dancing Script', cursive;
}

.error-desc {
    font-size: 15px;
    color: #FFF8E1;
    opacity: 0.7;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* === FLOATING SIDEBAR === */
.floating-sidebar {
    position: fixed;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 500;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E91E63, #FFC107);
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
}

.sidebar-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
    color: #fff;
}

.sidebar-btn-facebook {
    background: #1877F2;
}

.sidebar-btn-telegram {
    background: #0088cc;
}

.sidebar-label {
    display: none;
    position: absolute;
    right: 55px;
    background: #1A0A1A;
    color: #FFF8E1;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    border: 1px solid rgba(233, 30, 99, 0.2);
}

.sidebar-btn:hover .sidebar-label {
    display: block;
}

/* === FOOTER === */
.site-footer {
    background: linear-gradient(180deg, #1A0A1A, #0D050D);
    border-top: 2px solid rgba(233, 30, 99, 0.2);
    padding: 50px 0 30px;
    margin-top: 40px;
}

.footer-columns-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-brand-logo {
    margin-bottom: 15px;
}

.footer-brand-logo img {
    height: 40px;
}

.footer-brand-text {
    font-size: 13px;
    color: #FFF8E1;
    opacity: 0.7;
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-18plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #E91E63;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-social-links {
    display: flex;
    gap: 10px;
}

.footer-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(233, 30, 99, 0.15);
    color: #FFC107;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background: #E91E63;
    color: #fff;
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: 'Dancing Script', cursive;
    font-size: 18px;
    color: #FFC107;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 193, 7, 0.2);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    font-size: 13px;
    color: #FFF8E1;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #E91E63;
    opacity: 1;
    padding-left: 5px;
}

/* === LICENSE BAR === */
.footer-license-bar {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(233, 30, 99, 0.15);
    border-bottom: 1px solid rgba(233, 30, 99, 0.15);
    margin-bottom: 20px;
}

.footer-license-bar h4 {
    font-family: 'Dancing Script', cursive;
    font-size: 18px;
    color: #FFC107;
    margin-bottom: 15px;
}

.license-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.license-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px 15px;
    background: rgba(45, 16, 48, 0.5);
    border: 1px solid rgba(233, 30, 99, 0.1);
    border-radius: 8px;
    min-width: 80px;
}

.license-item i {
    font-size: 22px;
    color: #E91E63;
}

.license-item span {
    font-size: 11px;
    color: #FFF8E1;
    opacity: 0.7;
}

/* === FOOTER BOTTOM === */
.footer-bottom {
    text-align: center;
    padding-top: 15px;
}

.footer-copyright {
    font-size: 13px;
    color: #FFF8E1;
    opacity: 0.5;
}

/* === SWIPER CUSTOMIZATION === */
.swiper-pagination-bullet {
    background: #FFF8E1;
    opacity: 0.4;
}

.swiper-pagination-bullet-active {
    background: #FFC107;
    opacity: 1;
}

.swiper-button-prev,
.swiper-button-next {
    color: #FFC107;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    color: #E91E63;
}

/* === UTILITY CLASSES === */
.text-center { text-align: center; }
.text-gold { color: #FFC107; }
.text-pink { color: #E91E63; }
.text-cream { color: #FFF8E1; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

/* === SCROLLBAR === */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1A0A1A;
}

::-webkit-scrollbar-thumb {
    background: rgba(233, 30, 99, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(233, 30, 99, 0.5);
}

/* === SELECTION === */
::selection {
    background: rgba(233, 30, 99, 0.3);
    color: #fff;
}
