/* ============================================
   TAPWIN THEME - main.css (moban-120)
   Tap Interactions Theme with Ripple Buttons
   Colors: #7B1FA2 (Purple), #E91E63 (Pink), #FFFFFF (White)
   Fonts: Nunito (headings) + Roboto (body)
   ============================================ */

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    line-height: 1.3;
}

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

a:hover {
    color: #fff;
    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;
}

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

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

/* === KEYFRAME ANIMATIONS === */
@keyframes tapRipple {
    0% {
        transform: scale(0);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.4;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

@keyframes buttonBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    15% {
        transform: translateY(-6px) scale(1.03);
    }
    30% {
        transform: translateY(0) scale(1);
    }
    45% {
        transform: translateY(-3px) scale(1.01);
    }
    60% {
        transform: translateY(0) scale(1);
    }
}

@keyframes winPop {
    0% {
        transform: scale(0) rotate(-10deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.15) rotate(3deg);
        opacity: 1;
    }
    70% {
        transform: scale(0.95) rotate(-1deg);
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes tapGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(123, 31, 162, 0.3), 0 0 20px rgba(233, 30, 99, 0.1);
    }
    50% {
        box-shadow: 0 0 25px rgba(123, 31, 162, 0.6), 0 0 50px rgba(233, 30, 99, 0.3);
    }
}

@keyframes rippleExpand {
    0% {
        width: 0;
        height: 0;
        opacity: 0.6;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

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

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

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

@keyframes pulseGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(233, 30, 99, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(233, 30, 99, 0.8), 0 0 40px rgba(123, 31, 162, 0.3);
    }
}

@keyframes rippleCircle {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.6;
        border-width: 4px;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
        border-width: 1px;
    }
}

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

/* === HEADER === */
.site-header {
    background: linear-gradient(180deg, #0D0015 0%, #1A0A2E 100%);
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, #7B1FA2, #E91E63, #7B1FA2) 1;
    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;
    filter: drop-shadow(0 0 10px rgba(233, 30, 99, 0.5));
    transition: all 0.3s ease;
}

.logo img:hover {
    filter: drop-shadow(0 0 15px rgba(233, 30, 99, 0.8));
    transform: scale(1.05);
}

.header-time {
    font-family: 'Nunito', sans-serif;
    color: #E91E63;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

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

.btn-login {
    padding: 8px 18px;
    border: 1px solid #E91E63;
    color: #E91E63;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    font-family: 'Nunito', sans-serif;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.btn-register {
    padding: 8px 18px;
    background: linear-gradient(135deg, #7B1FA2, #E91E63);
    color: #fff;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    font-family: 'Nunito', sans-serif;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-register:hover {
    background: linear-gradient(135deg, #E91E63, #7B1FA2);
    box-shadow: 0 0 15px rgba(233, 30, 99, 0.5);
    color: #fff;
}

.btn-demo {
    padding: 8px 18px;
    border: 1px solid #7B1FA2;
    color: #CE93D8;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    font-family: 'Nunito', sans-serif;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

/* === NAVIGATION === */
.main-navigation {
    background: #120020;
    border-top: 1px solid rgba(123, 31, 162, 0.3);
}

.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-weight: 600;
    font-size: 13px;
    font-family: 'Nunito', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

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

/* === NOTIFICATION BAR === */
.notification-bar {
    background: linear-gradient(90deg, rgba(123, 31, 162, 0.15), rgba(233, 30, 99, 0.15), rgba(123, 31, 162, 0.15));
    overflow: hidden;
    padding: 8px 0;
    border-top: 1px solid rgba(233, 30, 99, 0.2);
}

.notification-content {
    display: flex;
    gap: 50px;
    white-space: nowrap;
    animation: notificationScroll 30s linear infinite;
    color: #E91E63;
    font-size: 13px;
    font-family: 'Nunito', sans-serif;
}

/* === 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(0, 0, 0, 0.85);
}

.announcement-content {
    position: relative;
    background: linear-gradient(135deg, #1A0A2E 0%, #0D0015 100%);
    border: 2px solid;
    border-image: linear-gradient(90deg, #7B1FA2, #E91E63, #7B1FA2) 1;
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    animation: winPop 0.6s ease;
}

.announcement-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #E91E63;
    font-size: 28px;
    cursor: pointer;
}

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

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

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

.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(123, 31, 162, 0.12);
    border: 1px solid rgba(233, 30, 99, 0.25);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.announcement-badge {
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    min-width: 40px;
    text-align: center;
    font-family: 'Nunito', sans-serif;
}

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

.announcement-badge.new {
    background: #7B1FA2;
    color: #fff;
}

.announcement-badge.info {
    background: linear-gradient(135deg, #7B1FA2, #E91E63);
    color: #fff;
}

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

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

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

.announcement-cta {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(135deg, #7B1FA2, #E91E63);
    color: #fff;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Nunito', sans-serif;
    animation: tapGlow 2s ease infinite;
}

.announcement-cta:hover {
    color: #fff;
    transform: scale(1.05);
}

/* === HERO SECTION - Tap Ripple === */
.tapwin-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, #1A0A2E 0%, #0D0015 70%);
    border-radius: 15px;
    margin: 20px 0;
    overflow: hidden;
    border: 1px solid rgba(233, 30, 99, 0.25);
}

/* Ripple Background */
.ripple-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.ripple-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 2px solid;
    animation: rippleCircle 4s ease-out infinite;
}

.ripple-circle.ripple-1 {
    width: 100px;
    height: 100px;
    border-color: rgba(123, 31, 162, 0.5);
    animation-delay: 0s;
}

.ripple-circle.ripple-2 {
    width: 100px;
    height: 100px;
    border-color: rgba(233, 30, 99, 0.4);
    animation-delay: 1s;
}

.ripple-circle.ripple-3 {
    width: 100px;
    height: 100px;
    border-color: rgba(123, 31, 162, 0.3);
    animation-delay: 2s;
}

.ripple-circle.ripple-4 {
    width: 100px;
    height: 100px;
    border-color: rgba(233, 30, 99, 0.2);
    animation-delay: 3s;
}

/* Tap Finger Icon */
.tap-finger-icon {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatUp 3s ease infinite;
}

.tap-finger-icon i {
    font-size: 80px;
    background: linear-gradient(135deg, #7B1FA2, #E91E63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fingerTap 2s ease infinite;
}

.tap-ripple-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(233, 30, 99, 0.25);
    animation: tapRipple 2s ease-out infinite;
    transform: translate(-50%, -50%);
}

/* Hero Content */
.hero-inner-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    padding: 40px;
}

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

.hero-brand {
    display: block;
    font-family: 'Nunito', sans-serif;
    font-size: 56px;
    font-weight: 800;
    letter-spacing: 8px;
    background: linear-gradient(90deg, #7B1FA2, #E91E63, #FFFFFF, #E91E63);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulseGlow 4s ease infinite;
    text-shadow: none;
}

.hero-divider-line {
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #7B1FA2, #E91E63, #fff);
    margin: 15px 0;
    border-radius: 2px;
}

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

.hero-description {
    color: #ccc;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.hero-stats-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

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

.hero-stat-number {
    display: block;
    font-family: 'Nunito', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #E91E63;
    animation: pulseGlow 3s ease infinite;
}

.hero-stat-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

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

.btn-tap-primary {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, #7B1FA2, #E91E63);
    color: #fff;
    border-radius: 25px;
    font-weight: 700;
    font-size: 15px;
    font-family: 'Nunito', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: buttonBounce 3s ease infinite;
}

.btn-tap-primary:hover {
    background: linear-gradient(135deg, #E91E63, #7B1FA2);
    box-shadow: 0 0 20px rgba(233, 30, 99, 0.5);
    transform: translateY(-2px);
    color: #fff;
}

.btn-outline-tap {
    display: inline-block;
    padding: 14px 35px;
    border: 2px solid #E91E63;
    color: #E91E63;
    border-radius: 25px;
    font-weight: 700;
    font-size: 15px;
    font-family: 'Nunito', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline-tap:hover {
    background: #E91E63;
    color: #fff;
    box-shadow: 0 0 20px rgba(233, 30, 99, 0.3);
}

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

.section-title i {
    margin-right: 10px;
    animation: buttonBounce 2s ease infinite;
}

.section-subtitle {
    text-align: center;
    color: #999;
    font-size: 14px;
    margin-bottom: 40px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

/* === TAP STAR GAMES (6 cards) === */
.tap-star-games {
    padding: 60px 0;
}

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

.tap-star-game-card {
    position: relative;
    display: block;
    background: linear-gradient(135deg, #1A0A2E, #150025);
    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;
}

.tap-star-game-card:hover {
    border-color: #E91E63;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
    animation: tapGlow 2s ease infinite;
}

.tap-card-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(233, 30, 99, 0.08);
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.tap-star-game-card:hover .tap-card-ripple {
    width: 400px;
    height: 400px;
}

.tap-star-game-icon {
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.tap-star-game-icon i {
    font-size: 40px;
    color: #E91E63;
    animation: buttonBounce 3s ease infinite;
}

.tap-star-game-rating {
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.tap-star-game-rating i {
    color: #E91E63;
    font-size: 12px;
}

.tap-star-game-card h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.tap-star-game-card p {
    color: #aaa;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.tap-star-game-players {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(233, 30, 99, 0.15);
    border-radius: 20px;
    font-size: 11px;
    color: #E91E63;
    position: relative;
    z-index: 2;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
}

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

/* === TAP GRID (3x4) === */
.tap-grid-section {
    padding: 60px 0;
}

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

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

.tap-grid-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 15px;
    background: linear-gradient(135deg, #1A0A2E, #150025);
    border: 1px solid rgba(123, 31, 162, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tap-grid-node:hover {
    border-color: #E91E63;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.25);
}

.tap-grid-node::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(233, 30, 99, 0.1);
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
}

.tap-grid-node:hover::after {
    width: 200px;
    height: 200px;
}

.tap-node-icon {
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.tap-node-icon i {
    font-size: 28px;
    background: linear-gradient(135deg, #7B1FA2, #E91E63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tap-node-label {
    color: #F0E6F6;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Nunito', sans-serif;
    position: relative;
    z-index: 2;
}

/* === TAP FEATURES === */
.tap-features {
    padding: 60px 0;
}

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

.tap-feature-card {
    background: linear-gradient(135deg, #1A0A2E, #150025);
    border: 1px solid rgba(233, 30, 99, 0.15);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tap-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #7B1FA2, #E91E63, #fff);
    background-size: 200% 100%;
}

.tap-feature-card:hover {
    transform: translateY(-5px);
    border-color: #E91E63;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.2);
    animation: tapGlow 2s ease infinite;
}

.tap-feature-icon {
    margin-bottom: 15px;
}

.tap-feature-icon i {
    font-size: 36px;
    background: linear-gradient(135deg, #7B1FA2, #E91E63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tap-feature-card h3 {
    color: #fff;
    font-size: 17px;
    margin-bottom: 12px;
}

.tap-feature-card p {
    color: #aaa;
    font-size: 13px;
    line-height: 1.7;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

/* === TAP STATS === */
.tap-stats {
    padding: 60px 0;
    position: relative;
}

.tap-stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(123, 31, 162, 0.06), rgba(233, 30, 99, 0.04));
    pointer-events: none;
}

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

.tap-stat-card {
    background: linear-gradient(135deg, #1A0A2E, #150025);
    border: 2px solid rgba(233, 30, 99, 0.25);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tap-stat-card:hover {
    border-color: #E91E63;
    box-shadow: 0 0 30px rgba(233, 30, 99, 0.2);
    transform: translateY(-3px);
    animation: tapGlow 2s ease infinite;
}

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

.stat-icon-decoration i {
    font-size: 20px;
    color: #E91E63;
    animation: buttonBounce 2s ease infinite;
}

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

.stat-number {
    font-family: 'Nunito', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #E91E63;
    animation: pulseGlow 3s ease infinite;
    margin-bottom: 5px;
}

.stat-label {
    color: #aaa;
    font-size: 13px;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

/* === TAP PROMOTIONS === */
.tap-promos {
    padding: 60px 0;
}

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

.tap-promo-card {
    position: relative;
    background: linear-gradient(135deg, #1A0A2E, #150025);
    border: 1px solid rgba(233, 30, 99, 0.25);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.tap-promo-card:hover {
    border-color: #E91E63;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
}

.promo-ripple-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(233, 30, 99, 0.08), transparent);
    pointer-events: none;
}

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

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

.promo-icon i {
    font-size: 36px;
    color: #E91E63;
    animation: buttonBounce 2s ease infinite;
}

.tap-promo-inner h3 {
    color: #fff;
    font-size: 17px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.tap-promo-inner p {
    color: #aaa;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

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

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

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

.promo-badge.new {
    background: #7B1FA2;
    color: #fff;
}

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

.btn-promo {
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(135deg, #7B1FA2, #E91E63);
    color: #fff;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Nunito', sans-serif;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-promo:hover {
    background: linear-gradient(135deg, #E91E63, #7B1FA2);
    box-shadow: 0 0 15px rgba(233, 30, 99, 0.5);
    color: #fff;
    transform: scale(1.05);
}

/* === FOOTER CTA SECTION === */
.footer-cta-section {
    position: relative;
    padding: 80px 0;
    margin: 40px 0;
    background: linear-gradient(135deg, #1A0A2E, #0D0015);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(233, 30, 99, 0.25);
}

.footer-cta-ripplefield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.footer-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
}

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

.cta-tap-circle {
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7B1FA2, #E91E63);
    animation: buttonBounce 3s ease infinite;
    box-shadow: 0 0 20px rgba(233, 30, 99, 0.3);
}

.footer-cta-inner h2 {
    font-size: 32px;
    color: #E91E63;
    margin-bottom: 15px;
    letter-spacing: 3px;
    font-family: 'Nunito', sans-serif;
}

.footer-cta-inner p {
    color: #ccc;
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto 25px;
    line-height: 1.8;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

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

.cta-feature {
    color: #F0E6F6;
    font-size: 14px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
}

.cta-feature i {
    color: #E91E63;
    margin-right: 8px;
}

.cta-main-btn {
    padding: 16px 50px;
    font-size: 18px;
    animation: tapGlow 2s ease infinite;
}

/* === NEWS SECTION === */
.home-news-section {
    padding: 60px 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, #1A0A2E, #150025);
    border: 1px solid rgba(233, 30, 99, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

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

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

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

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

.article-card-title span,
.article-card-title a {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    display: block;
    font-family: 'Nunito', sans-serif;
}

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

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

.article-card-excerpt {
    padding: 0 15px 15px;
    font-size: 13px;
    color: #aaa;
    line-height: 1.6;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.article-card-more {
    display: inline-block;
    padding: 8px 20px;
    color: #E91E63;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Nunito', sans-serif;
    border: 1px solid #E91E63;
    border-radius: 20px;
    margin: 0 15px 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.view-more-btn {
    display: block;
    text-align: center;
    padding: 12px 30px;
    border: 2px solid #E91E63;
    color: #E91E63;
    border-radius: 25px;
    font-weight: 600;
    font-family: 'Nunito', sans-serif;
    max-width: 200px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

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

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

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

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

.floating-sidebar {
    position: fixed;
    right: 10px;
    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: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7B1FA2, #E91E63);
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

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

.sidebar-label {
    display: none;
}

/* === FOOTER === */
.site-footer {
    background: linear-gradient(180deg, #150025 0%, #0D0015 100%);
    border-top: 2px solid;
    border-image: linear-gradient(90deg, #7B1FA2, #E91E63, #7B1FA2) 1;
    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: 45px;
    filter: drop-shadow(0 0 10px rgba(233, 30, 99, 0.5));
}

.footer-brand-text {
    color: #aaa;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.footer-18plus {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #E91E63;
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Nunito', 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: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(123, 31, 162, 0.2);
    color: #E91E63;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background: #E91E63;
    color: #fff;
    transform: scale(1.1);
}

.footer-col h4 {
    color: #E91E63;
    font-size: 15px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-family: 'Nunito', sans-serif;
}

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

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

.footer-col ul li a {
    color: #aaa;
    font-size: 13px;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

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

.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 {
    color: #E91E63;
    margin-bottom: 15px;
    font-size: 14px;
    font-family: 'Nunito', sans-serif;
}

.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(123, 31, 162, 0.1);
    border: 1px solid rgba(233, 30, 99, 0.15);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.license-item:hover {
    border-color: #E91E63;
    background: rgba(233, 30, 99, 0.15);
}

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

.license-item span {
    font-size: 11px;
    color: #aaa;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-copyright {
    color: #666;
    font-size: 13px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

/* === BREADCRUMB === */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 0;
    font-size: 13px;
    color: #999;
    border-bottom: 1px solid rgba(233, 30, 99, 0.1);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #E91E63;
}

.breadcrumb a:hover {
    color: #7B1FA2;
}

.breadcrumb span {
    color: #666;
}

/* === CATEGORY === */
.category-header {
    padding: 20px 0;
    margin-bottom: 20px;
}

.category-title {
    font-size: 26px;
    letter-spacing: 2px;
}

.category-title i {
    margin-right: 10px;
    animation: buttonBounce 2s ease infinite;
}

.category-desc {
    color: #aaa;
    margin-top: 10px;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.provider-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.provider-tab {
    padding: 8px 16px;
    background: rgba(123, 31, 162, 0.12);
    border: 1px solid rgba(233, 30, 99, 0.25);
    border-radius: 20px;
    color: #F0E6F6;
    font-size: 13px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

/* === SINGLE ARTICLE === */
.single-article {
    background: linear-gradient(135deg, #1A0A2E, #150025);
    border: 1px solid rgba(233, 30, 99, 0.15);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

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

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

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

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

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

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

.article-featured-img img {
    width: 100%;
    height: auto;
}

.article-content {
    color: #ddd;
    font-size: 15px;
    line-height: 1.8;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    color: #E91E63;
    margin: 20px 0 10px;
    font-family: 'Nunito', sans-serif;
}

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

.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 #E91E63;
    padding: 15px 20px;
    background: rgba(233, 30, 99, 0.05);
    margin: 20px 0;
    border-radius: 0 10px 10px 0;
}

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

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

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

.article-tags span {
    padding: 5px 12px;
    background: rgba(123, 31, 162, 0.12);
    border-radius: 15px;
    font-size: 12px;
    color: #F0E6F6;
}

.article-tags span a {
    color: #F0E6F6;
}

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

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

.article-nav a:hover {
    color: #7B1FA2;
}

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

.related-posts-title {
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

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

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

.related-item {
    display: block;
    background: linear-gradient(135deg, #1A0A2E, #150025);
    border: 1px solid rgba(233, 30, 99, 0.15);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.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: #fff;
    line-height: 1.4;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
}

/* === PAGE === */
.page-article {
    background: linear-gradient(135deg, #1A0A2E, #150025);
    border: 1px solid rgba(233, 30, 99, 0.15);
    border-radius: 15px;
    padding: 30px;
}

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

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

.page-content {
    color: #ddd;
    line-height: 1.8;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

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

/* === PAGINATION === */
.pagination {
    text-align: center;
    margin: 30px 0;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(123, 31, 162, 0.12);
    border: 1px solid rgba(233, 30, 99, 0.25);
    color: #F0E6F6;
    font-size: 14px;
    transition: all 0.3s ease;
}

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

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

.error-tap-icon {
    margin-bottom: 20px;
}

.error-tap-circle {
    display: inline-block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7B1FA2, #E91E63);
    animation: buttonBounce 2s ease infinite;
    box-shadow: 0 0 30px rgba(233, 30, 99, 0.3);
}

.error-code {
    font-size: 100px;
    background: linear-gradient(135deg, #7B1FA2, #E91E63, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    font-family: 'Nunito', sans-serif;
}

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

.error-desc {
    color: #aaa;
    font-size: 15px;
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.8;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

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

.no-posts i {
    display: block;
    margin-bottom: 15px;
}
