/* ============================================
   SOFTWIN THEME - main.css (moban-135)
   Soft & Gentle Theme with Rounded Corners
   Colors: #F8BBD0 (Pink), #FFFFFF (White), #F5F5F5 (LightGray)
   Fonts: Quicksand + Nunito
   ============================================ */

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

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

body {
    font-family: 'Nunito', sans-serif;
    background: #FFFFFF;
    color: #4A4A4A;
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: #3A3A3A;
}

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

a:hover {
    color: #F8BBD0;
}

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

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

.pink-text {
    color: #E91E63;
    background: linear-gradient(90deg, #F8BBD0, #E91E63, #F8BBD0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === KEYFRAME ANIMATIONS === */
@keyframes softBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    25% {
        transform: translateY(-8px) scale(1.02);
    }
    50% {
        transform: translateY(-15px) scale(1.04);
    }
    75% {
        transform: translateY(-8px) scale(1.02);
    }
}

@keyframes gentleGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(248, 189, 208, 0.3), 0 0 10px rgba(248, 189, 208, 0.1);
        opacity: 1;
    }
    50% {
        box-shadow: 0 0 20px rgba(248, 189, 208, 0.6), 0 0 40px rgba(248, 189, 208, 0.3), 0 0 60px rgba(248, 189, 208, 0.1);
        opacity: 0.95;
    }
}

@keyframes roundPulse {
    0%, 100% {
        transform: scale(1);
        border-radius: 50%;
        opacity: 0.8;
    }
    25% {
        transform: scale(1.05);
        border-radius: 45%;
        opacity: 0.9;
    }
    50% {
        transform: scale(1.1);
        border-radius: 50%;
        opacity: 1;
    }
    75% {
        transform: scale(1.05);
        border-radius: 45%;
        opacity: 0.9;
    }
}

@keyframes floatSoft {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(2deg);
    }
    50% {
        transform: translateY(-10px) translateX(-5px) rotate(-1deg);
    }
    75% {
        transform: translateY(-25px) translateX(15px) rotate(3deg);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes softPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

/* === HEADER === */
.site-header {
    background: #FFFFFF;
    box-shadow: 0 2px 20px rgba(248, 189, 208, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #F8BBD0;
}

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

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

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

.header-time {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    color: #888;
    background: #F5F5F5;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
}

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

.btn-login {
    display: inline-block;
    padding: 10px 24px;
    background: #F5F5F5;
    color: #E91E63;
    border-radius: 25px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid #F8BBD0;
}

.btn-login:hover {
    background: #F8BBD0;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(248, 189, 208, 0.4);
}

.btn-register {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, #F8BBD0, #E91E63);
    color: #FFFFFF;
    border-radius: 25px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
}

.btn-register:hover {
    background: linear-gradient(135deg, #E91E63, #F8BBD0);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.3);
    color: #FFFFFF;
}

.btn-demo {
    display: inline-block;
    padding: 10px 24px;
    background: transparent;
    color: #E91E63;
    border-radius: 25px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid #E91E63;
}

.btn-demo:hover {
    background: #E91E63;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

/* === NAVIGATION === */
.main-navigation {
    background: #F5F5F5;
    border-top: 1px solid rgba(248, 189, 208, 0.3);
    border-bottom: 1px solid rgba(248, 189, 208, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 12px 16px;
    color: #555;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.nav-link:hover {
    color: #E91E63;
    background: rgba(248, 189, 208, 0.2);
}

.nav-link i {
    margin-right: 5px;
    font-size: 12px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #E91E63;
    font-size: 24px;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(248, 189, 208, 0.2);
}

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

.notification-content {
    display: flex;
    gap: 40px;
    animation: notificationScroll 25s linear infinite;
    white-space: nowrap;
    font-family: 'Quicksand', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #C2185B;
}

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

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

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

.announcement-content {
    position: relative;
    background: #FFFFFF;
    border-radius: 24px;
    padding: 35px;
    max-width: 480px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(248, 189, 208, 0.3);
    border: 2px solid #F8BBD0;
    animation: fadeInUp 0.4s ease;
}

.announcement-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: #F5F5F5;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.announcement-close:hover {
    background: #F8BBD0;
    color: #FFFFFF;
}

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

.announcement-header-icon i {
    font-size: 48px;
    color: #F8BBD0;
    animation: softBounce 2s ease infinite;
}

.announcement-title {
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}

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

.announcement-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #F5F5F5;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.announcement-item:hover {
    background: #FCE4EC;
    border-color: #F8BBD0;
    transform: translateX(5px);
}

.announcement-badge {
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
    white-space: nowrap;
}

.announcement-badge.hot {
    background: #FF5252;
    color: #FFFFFF;
}

.announcement-badge.new {
    background: #F8BBD0;
    color: #C2185B;
}

.announcement-badge.info {
    background: #81D4FA;
    color: #0277BD;
}

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

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

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

.announcement-cta {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #F8BBD0, #E91E63);
    color: #FFFFFF;
    border-radius: 25px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    animation: gentleGlow 2s ease infinite;
}

.announcement-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
    color: #FFFFFF;
}

/* === BUTTONS === */
.btn-pink-primary {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, #F8BBD0, #E91E63);
    color: #FFFFFF;
    border-radius: 30px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    animation: gentleGlow 3s ease infinite;
}

.btn-pink-primary:hover {
    background: linear-gradient(135deg, #E91E63, #F8BBD0);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.3);
    color: #FFFFFF;
}

.btn-outline-pink {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    color: #E91E63;
    border-radius: 30px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #F8BBD0;
    cursor: pointer;
}

.btn-outline-pink:hover {
    background: #F8BBD0;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(248, 189, 208, 0.4);
}

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

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

/* === HERO SECTION === */
.softwin-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #FCE4EC 0%, #FFFFFF 40%, #F5F5F5 70%, #FCE4EC 100%);
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 40px;
    padding: 60px 30px;
}

.soft-clouds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.soft-cloud {
    position: absolute;
    background: rgba(248, 189, 208, 0.15);
    border-radius: 50%;
    filter: blur(40px);
}

.cloud-1 {
    width: 300px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation: floatSoft 12s ease infinite;
}

.cloud-2 {
    width: 250px;
    height: 180px;
    top: 60%;
    right: 10%;
    animation: floatSoft 15s ease infinite;
    animation-delay: 2s;
}

.cloud-3 {
    width: 200px;
    height: 150px;
    bottom: 15%;
    left: 20%;
    animation: floatSoft 10s ease infinite;
    animation-delay: 4s;
}

.cloud-4 {
    width: 180px;
    height: 120px;
    top: 30%;
    right: 25%;
    animation: floatSoft 14s ease infinite;
    animation-delay: 1s;
}

.cloud-5 {
    width: 220px;
    height: 160px;
    top: 50%;
    left: 50%;
    animation: floatSoft 11s ease infinite;
    animation-delay: 3s;
}

.soft-floating-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    animation: roundPulse 4s ease infinite;
}

.orb-1 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(248, 189, 208, 0.4), transparent);
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.orb-2 {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.2), transparent);
    top: 40%;
    right: 20%;
    animation-delay: 1.5s;
}

.orb-3 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(248, 189, 208, 0.3), transparent);
    bottom: 25%;
    right: 35%;
    animation-delay: 3s;
}

.hero-inner-content {
    position: relative;
    z-index: 5;
    max-width: 800px;
}

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

.hero-brand {
    display: block;
    font-family: 'Quicksand', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #E91E63;
    letter-spacing: 8px;
    text-shadow: 0 2px 10px rgba(233, 30, 99, 0.15);
    animation: softBounce 3s ease infinite;
}

.hero-divider-line {
    display: block;
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #F8BBD0, transparent);
    margin: 15px auto;
    border-radius: 2px;
}

.hero-tagline {
    display: block;
    font-family: 'Quicksand', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #C2185B;
    letter-spacing: 4px;
}

.hero-description {
    font-size: 16px;
    color: #666;
    max-width: 650px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.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: 'Quicksand', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #E91E63;
}

.hero-stat-label {
    display: block;
    font-size: 13px;
    color: #888;
    font-weight: 600;
    margin-top: 5px;
}

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

/* === SECTION TITLES === */
.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 10px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}

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

.section-subtitle {
    text-align: center;
    color: #888;
    font-size: 15px;
    margin-bottom: 35px;
    font-weight: 400;
}

/* === SOFT STAR GAMES === */
.soft-star-games {
    padding: 50px 0;
    position: relative;
}

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

.soft-star-game-card {
    position: relative;
    background: #FFFFFF;
    border-radius: 24px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid #F5F5F5;
    overflow: hidden;
    display: block;
    color: #4A4A4A;
}

.soft-star-game-card:hover {
    transform: translateY(-8px);
    border-color: #F8BBD0;
    box-shadow: 0 15px 40px rgba(248, 189, 208, 0.25);
    color: #4A4A4A;
}

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

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

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

.soft-star-game-icon i {
    font-size: 40px;
    color: #F8BBD0;
    transition: all 0.3s ease;
}

.soft-star-game-card:hover .soft-star-game-icon i {
    color: #E91E63;
    animation: softBounce 1s ease;
}

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

.soft-star-game-rating i {
    color: #FFB74D;
    font-size: 13px;
    margin: 0 1px;
}

.soft-star-game-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #3A3A3A;
    font-weight: 700;
}

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

.soft-star-game-players {
    font-size: 12px;
    color: #E91E63;
    font-weight: 600;
    font-family: 'Quicksand', sans-serif;
}

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

/* === SOFT GRID SECTION === */
.soft-grid-section {
    padding: 50px 0;
    background: #F5F5F5;
    border-radius: 30px;
    margin-bottom: 40px;
}

.soft-grid-map {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.soft-grid-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.soft-grid-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 15px;
    background: #FFFFFF;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    color: #4A4A4A;
}

.soft-grid-node:hover {
    border-color: #F8BBD0;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(248, 189, 208, 0.2);
    color: #4A4A4A;
}

.soft-node-icon {
    margin-bottom: 10px;
}

.soft-node-icon i {
    font-size: 28px;
    color: #F8BBD0;
    transition: color 0.3s ease;
}

.soft-grid-node:hover .soft-node-icon i {
    color: #E91E63;
}

.soft-node-label {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #555;
    text-align: center;
}

/* === SOFT FEATURES === */
.soft-features {
    padding: 50px 0;
}

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

.soft-feature-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid #F5F5F5;
    position: relative;
    overflow: hidden;
}

.soft-feature-card:hover {
    transform: translateY(-8px);
    border-color: #F8BBD0;
    box-shadow: 0 15px 40px rgba(248, 189, 208, 0.2);
}

.soft-feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #FCE4EC, #F8BBD0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.soft-feature-icon i {
    font-size: 28px;
    color: #E91E63;
}

.soft-feature-card:hover .soft-feature-icon {
    animation: softBounce 1s ease;
    background: linear-gradient(135deg, #F8BBD0, #E91E63);
}

.soft-feature-card:hover .soft-feature-icon i {
    color: #FFFFFF;
}

.soft-feature-card h3 {
    font-size: 17px;
    margin-bottom: 12px;
    color: #3A3A3A;
}

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

/* === SOFT STATS === */
.soft-stats {
    position: relative;
    padding: 60px 30px;
    border-radius: 30px;
    overflow: hidden;
    margin: 40px 0;
}

.soft-stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FCE4EC, #F8BBD0, #FCE4EC);
    z-index: 0;
}

.soft-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.3), transparent);
}

.soft-stats .section-title,
.soft-stats .section-subtitle {
    position: relative;
    z-index: 2;
}

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

.soft-stat-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid rgba(248, 189, 208, 0.3);
}

.soft-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(248, 189, 208, 0.3);
    border-color: #F8BBD0;
}

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

.stat-soft-decoration i {
    font-size: 20px;
    color: #F8BBD0;
    animation: roundPulse 3s ease infinite;
}

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

.stat-number {
    font-family: 'Quicksand', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #E91E63;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: #888;
    font-weight: 600;
}

/* === SOFT PROMOS === */
.soft-promos {
    padding: 50px 0;
}

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

.soft-promo-card {
    position: relative;
    background: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid #F5F5F5;
}

.soft-promo-card:hover {
    transform: translateY(-8px);
    border-color: #F8BBD0;
    box-shadow: 0 15px 40px rgba(248, 189, 208, 0.25);
}

.promo-soft-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(252, 228, 236, 0.3), transparent);
    pointer-events: none;
}

.soft-promo-inner {
    position: relative;
    padding: 30px 25px;
    text-align: center;
}

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

.promo-icon i {
    font-size: 36px;
    color: #F8BBD0;
    animation: softBounce 3s ease infinite;
}

.soft-promo-inner h3 {
    font-size: 17px;
    margin-bottom: 12px;
    color: #3A3A3A;
    font-weight: 700;
}

.soft-promo-inner p {
    font-size: 13px;
    color: #888;
    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: #999;
}

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

.promo-badge.hot {
    background: #FF5252;
    color: #FFFFFF;
}

.promo-badge.new {
    background: #F8BBD0;
    color: #C2185B;
}

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

.btn-promo {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #F8BBD0, #E91E63);
    color: #FFFFFF;
    border-radius: 25px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-promo:hover {
    background: linear-gradient(135deg, #E91E63, #F8BBD0);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.3);
    color: #FFFFFF;
}

/* === FOOTER CTA === */
.footer-cta-section {
    position: relative;
    padding: 70px 30px;
    text-align: center;
    border-radius: 30px;
    overflow: hidden;
    margin: 40px 0;
}

.footer-cta-softfield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FCE4EC, #F8BBD0, #FCE4EC);
    z-index: 0;
}

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

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

.cta-soft-heart {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F8BBD0, #E91E63);
    border-radius: 50%;
    animation: roundPulse 3s ease infinite;
    box-shadow: 0 0 20px rgba(248, 189, 208, 0.4);
}

.footer-cta-inner h2 {
    font-size: 32px;
    color: #C2185B;
    margin-bottom: 15px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
}

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

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

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
    font-weight: 600;
}

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

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

/* === HOME 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 {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid #F5F5F5;
    display: block;
    color: #4A4A4A;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: #F8BBD0;
    box-shadow: 0 10px 30px rgba(248, 189, 208, 0.2);
    color: #4A4A4A;
}

.article-card-thumb {
    height: 180px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

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

.article-card-title {
    padding: 15px 18px 8px;
}

.article-card-title span {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #3A3A3A;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-meta {
    padding: 0 18px 8px;
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #999;
}

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

.article-card-excerpt {
    padding: 0 18px 18px;
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-more {
    display: inline-block;
    padding: 8px 18px;
    color: #E91E63;
    font-weight: 600;
    font-size: 13px;
    font-family: 'Quicksand', sans-serif;
    transition: all 0.3s ease;
}

.article-card-more:hover {
    color: #C2185B;
}

.article-card-more i {
    margin-left: 5px;
    font-size: 11px;
}

.view-more-btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 25px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-align: center;
}

.pink-view-more {
    background: linear-gradient(135deg, #F8BBD0, #E91E63);
    color: #FFFFFF;
}

.pink-view-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.3);
    color: #FFFFFF;
}

.view-more-btn i {
    margin-left: 8px;
    font-size: 12px;
}

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

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

.breadcrumb a {
    color: #E91E63;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

.breadcrumb span {
    color: #999;
}

/* === CATEGORY HEADER === */
.category-header {
    margin-bottom: 25px;
    padding: 25px;
    background: #F5F5F5;
    border-radius: 20px;
    border: 2px solid rgba(248, 189, 208, 0.2);
}

.category-title {
    font-size: 24px;
    margin-bottom: 10px;
}

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

.category-desc {
    font-size: 14px;
    color: #888;
    line-height: 1.7;
}

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

.provider-tab {
    padding: 8px 20px;
    background: #F5F5F5;
    border: 2px solid transparent;
    border-radius: 20px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.provider-tab:hover {
    border-color: #F8BBD0;
    color: #E91E63;
}

.provider-tab.active {
    background: linear-gradient(135deg, #F8BBD0, #E91E63);
    color: #FFFFFF;
    border-color: transparent;
}

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

.article-grid .article-card {
    display: flex;
    flex-direction: column;
}

.article-grid .article-card-thumb {
    border-radius: 16px 16px 0 0;
}

.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 15px;
}

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

.pagination .nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #F5F5F5;
    color: #666;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pagination .page-numbers:hover {
    border-color: #F8BBD0;
    color: #E91E63;
}

.pagination .page-numbers.current {
    background: linear-gradient(135deg, #F8BBD0, #E91E63);
    color: #FFFFFF;
}

/* === SINGLE ARTICLE === */
.single-article {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 35px;
    margin-bottom: 30px;
    border: 2px solid #F5F5F5;
}

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

.article-title {
    font-size: 28px;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #3A3A3A;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: #999;
}

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

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

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

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

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

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

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

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

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

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

.article-content blockquote {
    border-left: 4px solid #F8BBD0;
    padding: 15px 20px;
    margin: 20px 0;
    background: #F5F5F5;
    border-radius: 0 16px 16px 0;
    font-style: italic;
    color: #666;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid #F5F5F5;
    margin-top: 25px;
}

.article-tags i {
    color: #F8BBD0;
    margin-right: 5px;
}

.article-tags span {
    display: inline-block;
    padding: 5px 15px;
    background: #F5F5F5;
    border-radius: 15px;
    font-size: 12px;
    color: #666;
    font-weight: 600;
    transition: all 0.3s ease;
}

.article-tags span:hover {
    background: #F8BBD0;
    color: #FFFFFF;
}

.article-nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid #F5F5F5;
}

.article-nav-prev a,
.article-nav-next a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #F5F5F5;
    border-radius: 16px;
    color: #E91E63;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.article-nav-prev a:hover,
.article-nav-next a:hover {
    background: #F8BBD0;
    color: #FFFFFF;
}

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

.related-posts-title {
    font-size: 20px;
    margin-bottom: 20px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}

.related-posts-title i {
    margin-right: 8px;
}

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

.related-item {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid #F5F5F5;
    display: block;
    color: #4A4A4A;
}

.related-item:hover {
    transform: translateY(-3px);
    border-color: #F8BBD0;
    box-shadow: 0 8px 20px rgba(248, 189, 208, 0.2);
    color: #4A4A4A;
}

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

.related-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-item:hover .related-item-thumb img {
    transform: scale(1.05);
}

.related-item-title {
    padding: 12px;
    font-size: 13px;
    font-weight: 700;
    color: #3A3A3A;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* === PAGE ARTICLE === */
.page-article {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 35px;
    border: 2px solid #F5F5F5;
}

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

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

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

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

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

.error-soft {
    margin-bottom: 25px;
}

.error-soft-heart {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F8BBD0, #E91E63);
    border-radius: 50%;
    animation: softBounce 2s ease infinite;
    box-shadow: 0 0 30px rgba(248, 189, 208, 0.4);
}

.error-code {
    font-size: 80px;
    color: #F8BBD0;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
}

.error-title {
    font-size: 24px;
    color: #3A3A3A;
    margin-bottom: 15px;
}

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

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

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #FFFFFF;
    border-radius: 50%;
    color: #E91E63;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid #F5F5F5;
    position: relative;
}

.sidebar-btn:hover {
    background: #F8BBD0;
    color: #FFFFFF;
    transform: scale(1.1);
    border-color: #F8BBD0;
}

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

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

.sidebar-label {
    display: none;
}

/* === FOOTER === */
.site-footer {
    background: #F5F5F5;
    padding: 50px 0 30px;
    margin-top: 50px;
    border-top: 3px solid #F8BBD0;
}

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

.footer-col h4 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #3A3A3A;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid #F8BBD0;
}

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

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

.footer-col ul li a {
    color: #666;
    font-size: 13px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

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

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

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

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

.footer-18plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #FF5252;
    color: #FFFFFF;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Quicksand', sans-serif;
    margin-bottom: 15px;
}

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

.footer-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #FFFFFF;
    border-radius: 50%;
    color: #E91E63;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #F8BBD0;
}

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

.footer-license-bar {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(248, 189, 208, 0.3);
    border-bottom: 1px solid rgba(248, 189, 208, 0.3);
    margin-bottom: 20px;
}

.footer-license-bar h4 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #3A3A3A;
    margin-bottom: 15px;
    border-bottom: none;
    padding-bottom: 0;
}

.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: #F8BBD0;
}

.license-item span {
    font-size: 11px;
    color: #888;
    font-weight: 600;
    font-family: 'Quicksand', sans-serif;
}

.footer-bottom {
    text-align: center;
    padding: 15px 0;
}

.footer-copyright {
    font-size: 13px;
    color: #999;
    font-weight: 600;
}
