/* ============================================
   CANDYSPIN THEME - main.css (moban-87)
   Classic Slots Candy Wonderland Theme
   Colors: #FF69B4 (Pink), #9B59B6 (Purple), #3498DB (Blue), #1A0A1E (BG)
   Fonts: Bubblegum Sans (headings) + Quicksand (body)
   ============================================ */

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bubblegum Sans', cursive;
    font-weight: 400;
    line-height: 1.3;
}

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

a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}

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

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

.candy-text {
    color: #FF69B4;
}

/* === KEYFRAME ANIMATIONS === */
@keyframes candySpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes lollipopTwirl {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(1.05); }
    50% { transform: rotate(180deg) scale(1); }
    75% { transform: rotate(270deg) scale(1.05); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes sugarSprinkle {
    0% { opacity: 0; transform: translateY(-20px) rotate(0deg); }
    20% { opacity: 1; }
    100% { opacity: 0; transform: translateY(100px) rotate(360deg); }
}

@keyframes bubblegumPop {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.3); opacity: 1; }
    70% { transform: scale(0.9); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes sweetGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes candyPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 105, 180, 0.3), 0 0 40px rgba(155, 89, 182, 0.1); }
    50% { box-shadow: 0 0 30px rgba(255, 105, 180, 0.5), 0 0 60px rgba(155, 89, 182, 0.2); }
}

@keyframes floatCandy {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes reelSpin {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100%); }
}

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

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

/* === HEADER === */
.site-header {
    background: linear-gradient(135deg, #1A0A1E 0%, #2D1B3E 50%, #1A0A1E 100%);
    border-bottom: 2px solid rgba(255, 105, 180, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.header-time {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    color: #9B59B6;
    font-weight: 600;
}

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

.btn-login {
    padding: 8px 20px;
    border: 2px solid #FF69B4;
    border-radius: 25px;
    color: #FF69B4;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 14px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-login:hover {
    background: #FF69B4;
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.4);
}

.btn-register {
    padding: 8px 20px;
    background: linear-gradient(135deg, #FF69B4, #9B59B6);
    border: none;
    border-radius: 25px;
    color: #fff;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 105, 180, 0.4);
    color: #fff;
}

.btn-demo {
    padding: 8px 20px;
    border: 2px solid #3498DB;
    border-radius: 25px;
    color: #3498DB;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 14px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-demo:hover {
    background: #3498DB;
    color: #fff;
    box-shadow: 0 0 20px rgba(52, 152, 219, 0.4);
}

/* === NAVIGATION === */
.main-navigation {
    background: rgba(26, 10, 30, 0.95);
    border-top: 1px solid rgba(255, 105, 180, 0.2);
    border-bottom: 1px solid rgba(155, 89, 182, 0.2);
}

.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: #F0E6F6;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.nav-link:hover {
    color: #FF69B4;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
    background: rgba(255, 105, 180, 0.1);
}

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

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

/* === NOTIFICATION BAR === */
.notification-bar {
    background: linear-gradient(90deg, #FF69B4, #9B59B6, #3498DB, #9B59B6, #FF69B4);
    background-size: 300% 100%;
    animation: sweetGradient 8s ease infinite;
    overflow: hidden;
    white-space: nowrap;
    padding: 8px 0;
}

.notification-content {
    display: flex;
    gap: 50px;
    animation: notificationScroll 30s linear infinite;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #fff;
}

/* === ANNOUNCEMENT MODAL === */
.announcement-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.announcement-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 10, 30, 0.9);
    backdrop-filter: blur(5px);
}

.announcement-content {
    position: relative;
    background: linear-gradient(135deg, #2D1B3E 0%, #1A0A1E 100%);
    border: 2px solid rgba(255, 105, 180, 0.4);
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    animation: bubblegumPop 0.5s ease-out;
    box-shadow: 0 0 40px rgba(255, 105, 180, 0.2), 0 0 80px rgba(155, 89, 182, 0.1);
}

.announcement-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #FF69B4;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
}

.announcement-close:hover {
    color: #fff;
    transform: rotate(90deg);
}

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

.announcement-header-icon i {
    font-size: 50px;
    color: #FF69B4;
    animation: candySpin 3s linear infinite;
}

.announcement-title {
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
    color: #FF69B4;
}

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

.announcement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 105, 180, 0.05);
    border: 1px solid rgba(255, 105, 180, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.announcement-item:hover {
    background: rgba(255, 105, 180, 0.1);
    border-color: rgba(255, 105, 180, 0.3);
    transform: translateX(5px);
}

.announcement-badge {
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
    flex-shrink: 0;
}

.announcement-badge.hot {
    background: linear-gradient(135deg, #FF69B4, #FF1493);
    color: #fff;
}

.announcement-badge.new {
    background: linear-gradient(135deg, #9B59B6, #8E44AD);
    color: #fff;
}

.announcement-badge.info {
    background: linear-gradient(135deg, #3498DB, #2980B9);
    color: #fff;
}

.announcement-text {
    flex: 1;
    font-size: 13px;
    color: #F0E6F6;
    font-family: 'Quicksand', sans-serif;
}

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

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

.announcement-cta {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(135deg, #FF69B4, #9B59B6);
    border-radius: 30px;
    color: #fff;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 16px;
    transition: all 0.3s ease;
}

.announcement-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(255, 105, 180, 0.5);
    color: #fff;
}

/* === CANDY HERO === */
.candy-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1A0A1E 0%, #2D1B3E 30%, #3D2B4E 50%, #2D1B3E 70%, #1A0A1E 100%);
    border-radius: 0 0 30px 30px;
    margin-bottom: 50px;
}

.candy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 105, 180, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Sugar Particles */
.sugar-particle-field {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.sugar-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: sugarSprinkle 4s linear infinite;
}

.sugar-p-1 {
    background: #FF69B4;
    top: 10%;
    left: 15%;
    animation-delay: 0s;
    animation-duration: 3.5s;
}

.sugar-p-2 {
    background: #9B59B6;
    top: 20%;
    left: 35%;
    animation-delay: 0.5s;
    animation-duration: 4s;
}

.sugar-p-3 {
    background: #3498DB;
    top: 5%;
    left: 55%;
    animation-delay: 1s;
    animation-duration: 3.8s;
}

.sugar-p-4 {
    background: #FF69B4;
    top: 15%;
    left: 75%;
    animation-delay: 1.5s;
    animation-duration: 4.2s;
}

.sugar-p-5 {
    background: #9B59B6;
    top: 8%;
    left: 90%;
    animation-delay: 2s;
    animation-duration: 3.6s;
}

.sugar-p-6 {
    background: #3498DB;
    top: 25%;
    left: 5%;
    animation-delay: 2.5s;
    animation-duration: 4.5s;
}

/* Lollipop Decorations */
.lollipop-decoration {
    position: absolute;
    z-index: 2;
}

.lollipop-left {
    left: 5%;
    bottom: 10%;
}

.lollipop-right {
    right: 5%;
    top: 15%;
}

.lollipop-head {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: conic-gradient(#FF69B4, #9B59B6, #3498DB, #FF69B4);
    animation: lollipopTwirl 6s linear infinite;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.4);
}

.lollipop-stick {
    width: 6px;
    height: 80px;
    background: linear-gradient(to bottom, #D4A574, #C4956A);
    margin: 0 auto;
    border-radius: 3px;
}

/* Candy Reels */
.candy-reel {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.2), rgba(155, 89, 182, 0.2));
    border: 2px solid rgba(255, 105, 180, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    animation: floatCandy 3s ease-in-out infinite;
}

.candy-reel-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.candy-reel-2 {
    top: 30%;
    right: 12%;
    animation-delay: 1s;
}

.candy-reel-3 {
    bottom: 25%;
    right: 8%;
    animation-delay: 2s;
}

.reel-symbol {
    color: #FF69B4;
    font-size: 24px;
}

/* Hero Content */
.hero-inner-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
}

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

.hero-brand {
    display: block;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 64px;
    color: #FF69B4;
    text-shadow: 0 0 20px rgba(255, 105, 180, 0.5), 0 0 40px rgba(155, 89, 182, 0.3);
    letter-spacing: 8px;
    animation: candyPulse 3s ease-in-out infinite;
}

.hero-divider-line {
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #FF69B4, #9B59B6, #3498DB);
    margin: 15px auto;
    border-radius: 2px;
}

.hero-tagline {
    display: block;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 24px;
    color: #9B59B6;
    letter-spacing: 5px;
}

.hero-description {
    font-size: 16px;
    color: #D4C5E0;
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 600px;
    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: 'Bubblegum Sans', cursive;
    font-size: 32px;
    color: #FF69B4;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.4);
}

.hero-stat-label {
    display: block;
    font-size: 13px;
    color: #9B59B6;
    font-weight: 600;
    text-transform: uppercase;
}

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

.btn-candy-primary {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #FF69B4, #9B59B6);
    border-radius: 30px;
    color: #fff;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-candy-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.4);
    color: #fff;
}

.btn-outline-candy {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid #FF69B4;
    border-radius: 30px;
    color: #FF69B4;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 18px;
    transition: all 0.3s ease;
    background: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-outline-candy:hover {
    background: #FF69B4;
    color: #fff;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.3);
}

/* === SECTION TITLES === */
.section-title {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 32px;
    text-align: center;
    margin-bottom: 10px;
    color: #FF69B4;
    text-shadow: 0 0 15px rgba(255, 105, 180, 0.3);
}

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

.section-subtitle {
    text-align: center;
    color: #9B59B6;
    font-size: 15px;
    margin-bottom: 40px;
    font-weight: 500;
}

/* === SWEET GAMES (6 cards) === */
.sweet-games {
    padding: 50px 0;
}

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

.sweet-game-card {
    position: relative;
    display: block;
    background: linear-gradient(135deg, rgba(45, 27, 62, 0.8), rgba(26, 10, 30, 0.9));
    border: 1px solid rgba(255, 105, 180, 0.2);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
}

.sweet-game-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 105, 180, 0.5);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.2);
}

.sweet-game-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 105, 180, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.sweet-game-card:hover .sweet-game-glow {
    opacity: 1;
}

.sweet-game-icon {
    font-size: 48px;
    color: #FF69B4;
    margin-bottom: 15px;
    animation: floatCandy 3s ease-in-out infinite;
}

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

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

.sweet-game-card h3 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 20px;
    color: #FF69B4;
    margin-bottom: 10px;
}

.sweet-game-card p {
    font-size: 13px;
    color: #D4C5E0;
    line-height: 1.6;
    margin-bottom: 15px;
}

.sweet-game-players {
    font-size: 12px;
    color: #9B59B6;
    font-weight: 600;
}

.sweet-game-players i {
    margin-right: 5px;
}

/* === CANDY GRID (3x4) === */
.candy-grid {
    padding: 50px 0;
}

.candy-grid-map {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.candy-grid-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.candy-grid-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 25px;
    background: linear-gradient(135deg, rgba(45, 27, 62, 0.6), rgba(26, 10, 30, 0.8));
    border: 1px solid rgba(255, 105, 180, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    min-width: 140px;
    text-align: center;
}

.candy-grid-node:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 105, 180, 0.5);
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.2);
}

.candy-node-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.2), rgba(155, 89, 182, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #FF69B4;
    transition: all 0.3s ease;
}

.candy-grid-node:hover .candy-node-icon {
    background: linear-gradient(135deg, #FF69B4, #9B59B6);
    color: #fff;
    transform: scale(1.1);
}

.candy-node-label {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 14px;
    color: #F0E6F6;
}

/* === CANDY FEATURES (4) === */
.candy-features {
    padding: 50px 0;
}

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

.candy-feature-card {
    background: linear-gradient(135deg, rgba(45, 27, 62, 0.7), rgba(26, 10, 30, 0.9));
    border: 1px solid rgba(255, 105, 180, 0.2);
    border-radius: 20px;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.candy-feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 105, 180, 0.4);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.15);
}

.candy-feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.2), rgba(155, 89, 182, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #FF69B4;
    transition: all 0.3s ease;
}

.candy-feature-card:hover .candy-feature-icon {
    background: linear-gradient(135deg, #FF69B4, #9B59B6);
    color: #fff;
    animation: bubblegumPop 0.5s ease-out;
}

.candy-feature-card h3 {
    font-size: 18px;
    color: #FF69B4;
    margin-bottom: 12px;
}

.candy-feature-card p {
    font-size: 13px;
    color: #D4C5E0;
    line-height: 1.7;
}

/* === CANDY STATS (4 counters) === */
.candy-stats {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.candy-stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.1), rgba(255, 105, 180, 0.05));
    z-index: 0;
}

.candy-stats .section-title,
.candy-stats .section-subtitle {
    position: relative;
    z-index: 1;
}

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

.candy-stat-card {
    background: linear-gradient(135deg, rgba(45, 27, 62, 0.8), rgba(26, 10, 30, 0.9));
    border: 1px solid rgba(255, 105, 180, 0.2);
    border-radius: 20px;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.candy-stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 105, 180, 0.4);
    animation: candyPulse 2s ease-in-out infinite;
}

.stat-candy-decoration {
    margin-bottom: 15px;
}

.stat-candy-decoration i {
    font-size: 24px;
    color: #FF69B4;
    animation: floatCandy 2s ease-in-out infinite;
}

.stat-candy-decoration.bottom {
    margin-top: 15px;
    margin-bottom: 0;
}

.stat-number {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 42px;
    color: #FF69B4;
    text-shadow: 0 0 15px rgba(255, 105, 180, 0.4);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #9B59B6;
    font-weight: 600;
    text-transform: uppercase;
}

/* === CANDY PROMOTIONS (3) === */
.candy-promos {
    padding: 50px 0;
}

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

.candy-promo-card {
    position: relative;
    background: linear-gradient(135deg, rgba(45, 27, 62, 0.8), rgba(26, 10, 30, 0.9));
    border: 1px solid rgba(255, 105, 180, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.candy-promo-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 105, 180, 0.5);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.2);
}

.promo-sugar-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top right, rgba(255, 105, 180, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.candy-promo-inner {
    position: relative;
    padding: 30px 20px;
    text-align: center;
    z-index: 1;
}

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

.promo-icon i {
    font-size: 40px;
    color: #FF69B4;
    animation: floatCandy 3s ease-in-out infinite;
}

.candy-promo-inner h3 {
    font-size: 18px;
    color: #FF69B4;
    margin-bottom: 12px;
}

.candy-promo-inner p {
    font-size: 13px;
    color: #D4C5E0;
    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: #9B59B6;
}

.promo-badge {
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
}

.promo-badge.hot {
    background: linear-gradient(135deg, #FF69B4, #FF1493);
    color: #fff;
}

.promo-badge.new {
    background: linear-gradient(135deg, #9B59B6, #8E44AD);
    color: #fff;
}

.promo-badge.vip {
    background: linear-gradient(135deg, #3498DB, #2980B9);
    color: #fff;
}

.btn-promo {
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(135deg, #FF69B4, #9B59B6);
    border-radius: 25px;
    color: #fff;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-promo:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 105, 180, 0.4);
    color: #fff;
}

/* === FOOTER CTA === */
.footer-cta-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    margin: 50px 0;
}

.footer-cta-sugar-field {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.05), rgba(155, 89, 182, 0.08), rgba(52, 152, 219, 0.05));
    z-index: 0;
}

.footer-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(45, 27, 62, 0.6), rgba(26, 10, 30, 0.8));
    border: 1px solid rgba(255, 105, 180, 0.2);
    border-radius: 25px;
}

.cta-candy-decoration {
    margin-bottom: 20px;
}

.footer-cta-inner h2 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 36px;
    color: #FF69B4;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(255, 105, 180, 0.3);
}

.footer-cta-inner p {
    font-size: 15px;
    color: #D4C5E0;
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.cta-feature {
    font-size: 14px;
    color: #9B59B6;
    font-weight: 600;
}

.cta-feature i {
    color: #FF69B4;
    margin-right: 5px;
}

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

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

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

.article-card {
    display: block;
    background: linear-gradient(135deg, rgba(45, 27, 62, 0.7), rgba(26, 10, 30, 0.9));
    border: 1px solid rgba(255, 105, 180, 0.15);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 105, 180, 0.4);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.15);
}

.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.05);
}

.article-card-title {
    padding: 15px;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 16px;
    color: #FF69B4;
    line-height: 1.4;
}

.article-card-meta {
    padding: 0 15px;
    font-size: 12px;
    color: #9B59B6;
    margin-bottom: 10px;
}

.article-card-meta i {
    margin-right: 5px;
}

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

.article-card-more {
    display: inline-block;
    padding: 8px 20px;
    margin: 0 15px 15px;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.2), rgba(155, 89, 182, 0.2));
    border-radius: 20px;
    color: #FF69B4;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.article-card-more:hover {
    background: linear-gradient(135deg, #FF69B4, #9B59B6);
    color: #fff;
}

.view-more-btn {
    display: block;
    text-align: center;
    padding: 12px 30px;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.15), rgba(155, 89, 182, 0.15));
    border: 1px solid rgba(255, 105, 180, 0.3);
    border-radius: 30px;
    color: #FF69B4;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 16px;
    max-width: 300px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    background: linear-gradient(135deg, #FF69B4, #9B59B6);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 105, 180, 0.3);
}

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

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

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

.breadcrumb a {
    color: #FF69B4;
}

.breadcrumb span {
    color: #9B59B6;
}

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

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

.category-title {
    font-size: 28px;
    color: #FF69B4;
}

.category-desc {
    color: #D4C5E0;
    margin-top: 10px;
}

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

.provider-tab {
    padding: 8px 18px;
    background: rgba(45, 27, 62, 0.6);
    border: 1px solid rgba(255, 105, 180, 0.2);
    border-radius: 20px;
    color: #D4C5E0;
    font-family: 'Quicksand', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.provider-tab:hover,
.provider-tab.active {
    background: linear-gradient(135deg, #FF69B4, #9B59B6);
    color: #fff;
    border-color: transparent;
}

/* === SINGLE POST === */
.single-article {
    background: linear-gradient(135deg, rgba(45, 27, 62, 0.5), rgba(26, 10, 30, 0.7));
    border: 1px solid rgba(255, 105, 180, 0.15);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
}

.article-header {
    margin-bottom: 25px;
}

.article-title {
    font-size: 28px;
    color: #FF69B4;
    margin-bottom: 15px;
}

.article-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #9B59B6;
}

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

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

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

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

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

.article-content h2, .article-content h3 {
    color: #FF69B4;
    margin: 20px 0 10px;
}

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

.article-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 105, 180, 0.15);
    margin-top: 25px;
}

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

.article-tags span {
    padding: 4px 12px;
    background: rgba(255, 105, 180, 0.1);
    border-radius: 15px;
    font-size: 12px;
    color: #FF69B4;
}

.article-nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 105, 180, 0.15);
    margin-top: 20px;
}

.article-nav a {
    color: #FF69B4;
    font-size: 14px;
}

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

.related-posts-title {
    font-size: 22px;
    color: #FF69B4;
    margin-bottom: 20px;
}

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

.related-item {
    display: block;
    background: linear-gradient(135deg, rgba(45, 27, 62, 0.6), rgba(26, 10, 30, 0.8));
    border: 1px solid rgba(255, 105, 180, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 105, 180, 0.3);
}

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

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

.related-item-title {
    padding: 10px;
    font-size: 13px;
    color: #FF69B4;
    font-family: 'Bubblegum Sans', cursive;
}

/* === PAGE === */
.page-article {
    background: linear-gradient(135deg, rgba(45, 27, 62, 0.5), rgba(26, 10, 30, 0.7));
    border: 1px solid rgba(255, 105, 180, 0.15);
    border-radius: 20px;
    padding: 30px;
}

.page-title {
    font-size: 28px;
    color: #FF69B4;
    margin-bottom: 20px;
}

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

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

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

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

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(45, 27, 62, 0.6);
    border: 1px solid rgba(255, 105, 180, 0.2);
    color: #F0E6F6;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: linear-gradient(135deg, #FF69B4, #9B59B6);
    color: #fff;
    border-color: transparent;
}

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

.error-candy {
    margin-bottom: 20px;
}

.error-code {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 100px;
    color: #FF69B4;
    text-shadow: 0 0 30px rgba(255, 105, 180, 0.4);
    line-height: 1;
}

.error-title {
    font-size: 28px;
    color: #9B59B6;
    margin-bottom: 15px;
}

.error-desc {
    font-size: 15px;
    color: #D4C5E0;
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

/* === NO POSTS === */
.no-posts {
    text-align: center;
    padding: 60px 20px;
    color: #9B59B6;
}

/* === FOOTER === */
.site-footer {
    background: linear-gradient(135deg, #1A0A1E 0%, #2D1B3E 50%, #1A0A1E 100%);
    border-top: 2px solid rgba(255, 105, 180, 0.3);
    padding: 50px 0 30px;
    margin-top: 50px;
}

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

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

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

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

.footer-18plus {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF69B4, #9B59B6);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    line-height: 40px;
    margin-bottom: 15px;
}

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

.footer-social-links a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 105, 180, 0.1);
    border: 1px solid rgba(255, 105, 180, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF69B4;
    transition: all 0.3s ease;
}

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

.footer-col h4 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 16px;
    color: #FF69B4;
    margin-bottom: 15px;
}

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

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

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

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

/* License Bar */
.footer-license-bar {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 105, 180, 0.15);
    border-bottom: 1px solid rgba(255, 105, 180, 0.15);
    margin-bottom: 20px;
}

.footer-license-bar h4 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 16px;
    color: #FF69B4;
    margin-bottom: 15px;
}

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

.license-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.license-item i {
    font-size: 24px;
    color: #9B59B6;
}

.license-item span {
    font-size: 11px;
    color: #D4C5E0;
    font-weight: 600;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-copyright {
    font-size: 13px;
    color: #9B59B6;
}

/* === FLOATING SIDEBAR === */
.floating-sidebar {
    position: fixed;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    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, #FF69B4, #9B59B6);
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
}

.sidebar-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 105, 180, 0.4);
    color: #fff;
}

.sidebar-btn-facebook {
    background: linear-gradient(135deg, #1877F2, #0D65D9);
}

.sidebar-btn-telegram {
    background: linear-gradient(135deg, #0088CC, #006699);
}

.sidebar-label {
    display: none;
    position: absolute;
    right: 55px;
    background: #1A0A1E;
    color: #FF69B4;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 12px;
    white-space: nowrap;
    border: 1px solid rgba(255, 105, 180, 0.3);
}

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

/* === SWIPER OVERRIDES === */
.swiper-pagination-bullet {
    background: #FF69B4;
}

.swiper-pagination-bullet-active {
    background: #FF69B4;
}

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