/* ============================================
   ONEHAND THEME - main.css (moban-126)
   One-Hand Operation Mobile-First Theme
   Colors: Green(#2E7D32) Black(#1A1A1A) Silver(#BDBDBD)
   ============================================ */

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

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

body {
    font-family: 'DM Sans', sans-serif;
    background: #1A1A1A;
    color: #E0E0E0;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    padding-bottom: 70px;
}

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

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

a:hover {
    color: #81C784;
    text-shadow: 0 0 10px rgba(46, 125, 50, 0.5);
}

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

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

.green-text {
    color: #2E7D32;
    background: linear-gradient(90deg, #2E7D32, #4CAF50, #2E7D32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.silver-text {
    color: #BDBDBD;
    background: linear-gradient(90deg, #BDBDBD, #E0E0E0, #BDBDBD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === KEYFRAME ANIMATIONS === */
@keyframes bottomSlide {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    60% {
        transform: translateY(-5px);
        opacity: 0.9;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes oneHandReach {
    0% {
        transform: scale(0.8) translateY(20px);
        opacity: 0;
    }
    50% {
        transform: scale(1.05) translateY(-5px);
        opacity: 0.8;
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

@keyframes navRise {
    0% {
        transform: translateY(100%);
        box-shadow: none;
    }
    70% {
        transform: translateY(-3px);
        box-shadow: 0 -5px 20px rgba(46, 125, 50, 0.3);
    }
    100% {
        transform: translateY(0);
        box-shadow: 0 -4px 15px rgba(46, 125, 50, 0.2);
    }
}

@keyframes thumbArc {
    0% {
        transform: rotate(-30deg) scale(0.9);
        opacity: 0.3;
    }
    25% {
        transform: rotate(-15deg) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: rotate(0deg) scale(1.1);
        opacity: 1;
    }
    75% {
        transform: rotate(15deg) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: rotate(30deg) scale(0.9);
        opacity: 0.3;
    }
}

@keyframes greenPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(46, 125, 50, 0.3), 0 0 40px rgba(46, 125, 50, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(46, 125, 50, 0.6), 0 0 60px rgba(46, 125, 50, 0.3);
    }
}

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

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

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

@keyframes counterGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(46, 125, 50, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(46, 125, 50, 0.8), 0 0 40px rgba(76, 175, 80, 0.3);
    }
}

@keyframes greenBorder {
    0% { border-color: #2E7D32; }
    50% { border-color: #4CAF50; }
    100% { border-color: #2E7D32; }
}

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

/* === HEADER === */
.site-header {
    background: linear-gradient(180deg, #111111 0%, #1A1A1A 100%);
    border-bottom: 2px solid #2E7D32;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 45px;
    width: auto;
}

.header-time {
    font-family: 'Catamaran', sans-serif;
    font-size: 14px;
    color: #BDBDBD;
    background: rgba(46, 125, 50, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid rgba(46, 125, 50, 0.3);
}

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

.btn-login {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid #2E7D32;
    border-radius: 25px;
    color: #4CAF50;
    font-family: 'Catamaran', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-login:hover {
    background: rgba(46, 125, 50, 0.15);
    color: #81C784;
}

.btn-register {
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    border-radius: 25px;
    color: #fff;
    font-family: 'Catamaran', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
}

.btn-register:hover {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.4);
}

.btn-demo {
    display: inline-block;
    padding: 8px 18px;
    background: transparent;
    border: 1px solid #BDBDBD;
    border-radius: 25px;
    color: #BDBDBD;
    font-family: 'Catamaran', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-demo:hover {
    border-color: #4CAF50;
    color: #4CAF50;
    background: rgba(46, 125, 50, 0.1);
}

/* === MAIN NAVIGATION === */
.main-navigation {
    background: #111111;
    border-top: 1px solid rgba(46, 125, 50, 0.2);
    border-bottom: 1px solid rgba(46, 125, 50, 0.2);
}

.main-navigation .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 12px 15px;
    color: #BDBDBD;
    font-family: 'Catamaran', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #4CAF50;
    text-shadow: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #2E7D32;
    transition: width 0.3s ease;
}

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

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

/* === NOTIFICATION BAR === */
.notification-bar {
    background: linear-gradient(90deg, rgba(46, 125, 50, 0.1), rgba(46, 125, 50, 0.2), rgba(46, 125, 50, 0.1));
    padding: 8px 0;
    overflow: hidden;
    border-top: 1px solid rgba(46, 125, 50, 0.1);
}

.notification-content {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: notificationScroll 25s linear infinite;
    color: #BDBDBD;
    font-size: 13px;
}

.notification-content span {
    color: #4CAF50;
}

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

.announcement-modal.active {
    display: flex;
    animation: fadeInUp 0.4s ease;
}

.announcement-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.announcement-content {
    position: relative;
    background: #1A1A1A;
    border: 2px solid #2E7D32;
    border-radius: 20px;
    padding: 30px 25px;
    max-width: 480px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    z-index: 1;
    animation: oneHandReach 0.5s ease;
}

.announcement-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #BDBDBD;
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 2;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.announcement-close:hover {
    color: #4CAF50;
    background: rgba(46, 125, 50, 0.1);
}

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

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

.announcement-title {
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.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: rgba(46, 125, 50, 0.05);
    border: 1px solid rgba(46, 125, 50, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
    color: #E0E0E0;
}

.announcement-item:hover {
    background: rgba(46, 125, 50, 0.15);
    border-color: #2E7D32;
    color: #fff;
    text-shadow: none;
    transform: translateX(5px);
}

.announcement-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    flex-shrink: 0;
}

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

.announcement-badge.new {
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    color: #fff;
}

.announcement-badge.info {
    background: linear-gradient(135deg, #1565C0, #42A5F5);
    color: #fff;
}

.announcement-text {
    flex: 1;
    font-size: 13px;
    line-height: 1.5;
}

.announcement-item i {
    color: #4CAF50;
    flex-shrink: 0;
}

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

.announcement-cta {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    border-radius: 30px;
    color: #fff;
    font-family: 'Catamaran', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.announcement-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(46, 125, 50, 0.5);
    color: #fff;
}

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

.breadcrumb a {
    color: #4CAF50;
}

.breadcrumb span {
    color: #757575;
}

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

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

/* === HERO SECTION === */
.onehand-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0D1F0D 0%, #1A1A1A 50%, #0D1F0D 100%);
    border-radius: 20px;
    margin-bottom: 40px;
    overflow: hidden;
    padding: 40px 30px;
}

.hero-thumb-zone {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    pointer-events: none;
}

.thumb-arc-ring {
    position: absolute;
    width: 250px;
    height: 250px;
    border: 2px solid rgba(46, 125, 50, 0.2);
    border-radius: 50%;
    bottom: 0;
    right: 0;
    animation: thumbArc 4s ease-in-out infinite;
}

.thumb-arc-ring.ring-2 {
    width: 200px;
    height: 200px;
    border-color: rgba(46, 125, 50, 0.3);
    animation-delay: 0.5s;
    bottom: 25px;
    right: 25px;
}

.thumb-arc-ring.ring-3 {
    width: 150px;
    height: 150px;
    border-color: rgba(46, 125, 50, 0.4);
    animation-delay: 1s;
    bottom: 50px;
    right: 50px;
}

.hero-inner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    animation: oneHandReach 0.8s ease;
}

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

.hero-brand {
    display: block;
    font-family: 'Catamaran', sans-serif;
    font-size: 64px;
    font-weight: 700;
    letter-spacing: 10px;
    color: #2E7D32;
    text-shadow: 0 0 30px rgba(46, 125, 50, 0.5);
}

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

.hero-tagline {
    display: block;
    font-size: 20px;
    color: #BDBDBD;
    letter-spacing: 4px;
    font-weight: 500;
}

.hero-description {
    color: #BDBDBD;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

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

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

.hero-stat-number {
    display: block;
    font-family: 'Catamaran', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #4CAF50;
}

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

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

.btn-green-primary {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    border-radius: 30px;
    color: #fff;
    font-family: 'Catamaran', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-green-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.5);
    color: #fff;
}

.btn-outline-green {
    display: inline-block;
    padding: 14px 35px;
    border: 2px solid #2E7D32;
    border-radius: 30px;
    color: #4CAF50;
    font-family: 'Catamaran', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline-green:hover {
    background: rgba(46, 125, 50, 0.15);
    color: #81C784;
    transform: translateY(-3px);
}

/* === SECTION TITLES === */
.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

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

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

/* === QUICK ACCESS GAMES === */
.quick-access-games {
    margin-bottom: 50px;
    padding: 30px 0;
}

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

.quick-game-card {
    position: relative;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.05), rgba(26, 26, 26, 0.9));
    border: 1px solid rgba(46, 125, 50, 0.2);
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
    display: block;
    color: #E0E0E0;
    animation: bottomSlide 0.6s ease backwards;
}

.quick-game-card:nth-child(1) { animation-delay: 0.1s; }
.quick-game-card:nth-child(2) { animation-delay: 0.15s; }
.quick-game-card:nth-child(3) { animation-delay: 0.2s; }
.quick-game-card:nth-child(4) { animation-delay: 0.25s; }
.quick-game-card:nth-child(5) { animation-delay: 0.3s; }
.quick-game-card:nth-child(6) { animation-delay: 0.35s; }

.quick-game-card:hover {
    transform: translateY(-8px);
    border-color: #2E7D32;
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.2);
    color: #fff;
    text-shadow: none;
}

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

.quick-game-icon i {
    font-size: 42px;
    color: #4CAF50;
    animation: floatUp 3s ease infinite;
}

.quick-game-rating {
    margin-bottom: 10px;
}

.quick-game-rating i {
    color: #FFC107;
    font-size: 12px;
}

.quick-game-card h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 8px;
}

.quick-game-card p {
    font-size: 13px;
    color: #BDBDBD;
    line-height: 1.6;
    margin-bottom: 12px;
}

.quick-game-players {
    display: inline-block;
    font-size: 12px;
    color: #4CAF50;
    background: rgba(46, 125, 50, 0.1);
    padding: 4px 12px;
    border-radius: 12px;
}

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

/* === GAME GRID SECTION === */
.game-grid-section {
    margin-bottom: 50px;
    padding: 30px 0;
}

.game-grid-map {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.game-grid-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 15px;
    background: rgba(46, 125, 50, 0.05);
    border: 1px solid rgba(46, 125, 50, 0.15);
    border-radius: 14px;
    transition: all 0.3s ease;
    color: #E0E0E0;
}

.game-grid-node:hover {
    background: rgba(46, 125, 50, 0.15);
    border-color: #2E7D32;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.15);
    color: #fff;
    text-shadow: none;
}

.game-node-icon i {
    font-size: 28px;
    color: #4CAF50;
}

.game-node-label {
    font-family: 'Catamaran', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-align: center;
}

/* === FEATURES SECTION === */
.onehand-features {
    margin-bottom: 50px;
    padding: 30px 0;
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.05), rgba(26, 26, 26, 0.8));
    border: 1px solid rgba(46, 125, 50, 0.15);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s ease;
}

.feature-card:hover {
    border-color: #2E7D32;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(46, 125, 50, 0.15);
}

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

.feature-icon i {
    font-size: 40px;
    color: #4CAF50;
}

.feature-card h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: #BDBDBD;
    line-height: 1.7;
}

/* === STATS SECTION === */
.onehand-stats {
    position: relative;
    margin-bottom: 50px;
    padding: 50px 0;
    border-radius: 20px;
    overflow: hidden;
}

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

.green-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(46, 125, 50, 0.15) 0%, transparent 70%);
}

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

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

.stat-card {
    text-align: center;
    padding: 30px 15px;
    background: rgba(46, 125, 50, 0.05);
    border: 1px solid rgba(46, 125, 50, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: #2E7D32;
    transform: translateY(-5px);
    animation: greenPulse 2s ease infinite;
}

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

.stat-decoration i {
    font-size: 20px;
    color: rgba(46, 125, 50, 0.3);
}

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

.stat-number {
    font-family: 'Catamaran', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #4CAF50;
    animation: counterGlow 3s ease infinite;
}

.stat-label {
    font-size: 13px;
    color: #BDBDBD;
    margin-top: 8px;
}

/* === PROMOTIONS SECTION === */
.onehand-promos {
    margin-bottom: 50px;
    padding: 30px 0;
}

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

.promo-card {
    position: relative;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.05), rgba(26, 26, 26, 0.9));
    border: 1px solid rgba(46, 125, 50, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.promo-card:hover {
    border-color: #2E7D32;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.2);
}

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

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

.promo-icon i {
    font-size: 36px;
    color: #4CAF50;
}

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

.promo-card p {
    font-size: 14px;
    color: #BDBDBD;
    line-height: 1.7;
    margin-bottom: 15px;
}

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

.promo-badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

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

.promo-badge.new {
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    color: #fff;
}

.promo-badge.vip {
    background: linear-gradient(135deg, #F9A825, #FFD54F);
    color: #1A1A1A;
}

.btn-promo {
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    border-radius: 25px;
    color: #fff;
    font-family: 'Catamaran', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-promo:hover {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.4);
    color: #fff;
}

/* === BOTTOM CTA SECTION === */
.bottom-cta-section {
    position: relative;
    margin-bottom: 50px;
    border-radius: 20px;
    overflow: hidden;
    padding: 60px 30px;
    text-align: center;
}

.cta-greenfield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0D1F0D, #1A1A1A);
    z-index: 0;
}

.bottom-cta-section .cta-inner {
    position: relative;
    z-index: 1;
}

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

.cta-hand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(46, 125, 50, 0.15);
    border: 2px solid #2E7D32;
    animation: floatUp 2s ease infinite;
}

.cta-hand-icon i {
    font-size: 36px;
    color: #4CAF50;
}

.cta-inner h2 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.cta-inner p {
    color: #BDBDBD;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 25px;
    line-height: 1.8;
}

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

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

.cta-feature i {
    color: #4CAF50;
}

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

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

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

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

/* === ARTICLE CARDS === */
.article-card {
    display: block;
    background: rgba(46, 125, 50, 0.03);
    border: 1px solid rgba(46, 125, 50, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #E0E0E0;
}

.article-card:hover {
    border-color: #2E7D32;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(46, 125, 50, 0.15);
    color: #fff;
    text-shadow: none;
}

.article-card-thumb {
    width: 100%;
    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.08);
}

.article-card-title {
    padding: 15px 15px 10px;
    font-family: 'Catamaran', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    line-height: 1.4;
    min-height: 55px;
}

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

.article-card-title a:hover {
    color: #4CAF50;
    text-shadow: none;
}

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

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

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

.article-card-more {
    display: inline-block;
    padding: 0 15px 15px;
    color: #4CAF50;
    font-size: 13px;
    font-weight: 600;
}

.article-card-more:hover {
    color: #81C784;
    text-shadow: none;
}

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

.view-more-btn {
    display: inline-block;
    padding: 12px 35px;
    border-radius: 30px;
    font-family: 'Catamaran', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-align: center;
}

.green-view-more {
    border: 2px solid #2E7D32;
    color: #4CAF50;
    background: transparent;
}

.green-view-more:hover {
    background: rgba(46, 125, 50, 0.15);
    color: #81C784;
    text-shadow: none;
}

.view-more-btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* === BOTTOM NAVIGATION BAR === */
.bottom-nav-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, #111111, #0A0A0A);
    border-top: 2px solid #2E7D32;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 8px 0;
    z-index: 9998;
    animation: navRise 0.6s ease;
    box-shadow: 0 -4px 15px rgba(46, 125, 50, 0.2);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 5px 12px;
    color: #BDBDBD;
    font-size: 11px;
    font-family: 'Catamaran', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    min-width: 55px;
}

.bottom-nav-item i {
    font-size: 20px;
    transition: all 0.3s ease;
}

.bottom-nav-item:hover,
.bottom-nav-item.active {
    color: #4CAF50;
    text-shadow: none;
}

.bottom-nav-item.active i {
    color: #4CAF50;
    transform: scale(1.15);
}

.bottom-nav-center {
    position: relative;
    margin-top: -25px;
}

.bottom-nav-center i {
    font-size: 28px;
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.4);
}

.bottom-nav-center span {
    margin-top: 5px;
}

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

.category-title {
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

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

.category-desc {
    color: #BDBDBD;
    font-size: 15px;
    margin-top: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.provider-tab {
    padding: 8px 20px;
    background: rgba(46, 125, 50, 0.05);
    border: 1px solid rgba(46, 125, 50, 0.2);
    border-radius: 25px;
    color: #BDBDBD;
    font-family: 'Catamaran', sans-serif;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.provider-tab:hover {
    border-color: #2E7D32;
    color: #4CAF50;
    background: rgba(46, 125, 50, 0.1);
}

.provider-tab.active {
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    color: #fff;
    border-color: #2E7D32;
}

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

.pagination .nav-links {
    display: flex;
    gap: 8px;
    list-style: none;
}

.pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(46, 125, 50, 0.3);
    color: #BDBDBD;
    font-family: 'Catamaran', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    color: #fff;
    border-color: #2E7D32;
}

/* === SINGLE ARTICLE === */
.single-article {
    background: rgba(46, 125, 50, 0.03);
    border: 1px solid rgba(46, 125, 50, 0.15);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
}

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

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

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

.article-meta a {
    color: #4CAF50;
}

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

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

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

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

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

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

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

.article-content blockquote {
    border-left: 4px solid #2E7D32;
    padding: 15px 20px;
    background: rgba(46, 125, 50, 0.05);
    border-radius: 0 12px 12px 0;
    margin: 20px 0;
    font-style: italic;
    color: #BDBDBD;
}

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

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

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(46, 125, 50, 0.15);
    margin-top: 25px;
}

.article-tags i {
    color: #4CAF50;
}

.article-tags span {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(46, 125, 50, 0.1);
    border-radius: 15px;
    font-size: 12px;
    color: #4CAF50;
}

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

.article-nav {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid rgba(46, 125, 50, 0.15);
}

.article-nav-prev,
.article-nav-next {
    flex: 1;
}

.article-nav-next {
    text-align: right;
}

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

.article-nav a:hover {
    color: #81C784;
}

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

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

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

.related-item {
    display: block;
    background: rgba(46, 125, 50, 0.03);
    border: 1px solid rgba(46, 125, 50, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #E0E0E0;
}

.related-item:hover {
    border-color: #2E7D32;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.1);
    color: #fff;
    text-shadow: none;
}

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

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

.related-item-title {
    padding: 10px 12px;
    font-size: 14px;
    color: #fff;
    line-height: 1.4;
}

/* === PAGE ARTICLE === */
.page-article {
    background: rgba(46, 125, 50, 0.03);
    border: 1px solid rgba(46, 125, 50, 0.15);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
}

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

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

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

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

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

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

.error-hand {
    margin-bottom: 30px;
}

.error-hand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(46, 125, 50, 0.1);
    border: 3px solid #2E7D32;
    animation: greenPulse 2s ease infinite;
}

.error-hand-icon i {
    font-size: 60px;
    color: #4CAF50;
}

.error-code {
    font-size: 100px;
    color: #2E7D32;
    font-family: 'Catamaran', sans-serif;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(46, 125, 50, 0.3);
}

.error-title {
    font-size: 24px;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

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

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

.no-posts p {
    font-size: 16px;
    margin-top: 10px;
}

/* === FLOATING SIDEBAR === */
.floating-sidebar {
    position: fixed;
    right: 10px;
    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, #2E7D32, #4CAF50);
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 3px 10px rgba(46, 125, 50, 0.3);
}

.sidebar-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.5);
    color: #fff;
}

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

.sidebar-btn-telegram {
    background: linear-gradient(135deg, #0088cc, #29B6F6);
}

.sidebar-label {
    display: none;
    position: absolute;
    right: 55px;
    top: 50%;
    transform: translateY(-50%);
    background: #1A1A1A;
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    white-space: nowrap;
    border: 1px solid rgba(46, 125, 50, 0.3);
}

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

/* === FOOTER === */
.site-footer {
    background: linear-gradient(180deg, #111111, #0A0A0A);
    border-top: 2px solid #2E7D32;
    padding: 50px 0 30px;
    margin-top: 40px;
}

.footer-columns-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: 'Catamaran', sans-serif;
    font-size: 16px;
    color: #4CAF50;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

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

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

.footer-col ul li a:hover {
    color: #4CAF50;
    padding-left: 5px;
    text-shadow: none;
}

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

.footer-brand-logo img {
    height: 50px;
    width: auto;
}

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

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

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

.footer-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(46, 125, 50, 0.1);
    color: #4CAF50;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(46, 125, 50, 0.2);
}

.footer-social-links a:hover {
    background: #2E7D32;
    color: #fff;
    transform: translateY(-3px);
    text-shadow: none;
}

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

.footer-license-bar h4 {
    font-family: 'Catamaran', sans-serif;
    font-size: 16px;
    color: #4CAF50;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

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

.license-item i {
    font-size: 24px;
    color: #4CAF50;
}

.license-item span {
    font-size: 12px;
    color: #BDBDBD;
    font-family: 'Catamaran', sans-serif;
    font-weight: 600;
}

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

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