/* ============================================
   TIGERWIN THEME - main.css (moban-60)
   Tiger Totem Theme with Diagonal Stripes
   Colors: #0A0A0A, #FF6B35, #F5F5F5, #1A1A1A
   ============================================ */

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

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

body {
    font-family: 'Exo 2', sans-serif;
    background: #0A0A0A;
    color: #F5F5F5;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

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

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

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

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

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

.tiger-orange-text {
    color: #FF6B35;
}

/* === KEYFRAME ANIMATIONS === */
@keyframes stripePulse {
    0%, 100% {
        background-position: 0 0;
        opacity: 0.7;
    }
    50% {
        background-position: 40px 40px;
        opacity: 1;
    }
}

@keyframes clawSwipe {
    0% {
        transform: translateX(-100%) skewX(-15deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) skewX(-15deg);
        opacity: 0;
    }
}

@keyframes pawTrail {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-10deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: scale(0.8) rotate(10deg);
    }
}

@keyframes tigerGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.3), 0 0 40px rgba(255, 107, 53, 0.1);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 107, 53, 0.6), 0 0 80px rgba(255, 107, 53, 0.3);
    }
}

@keyframes eyeGlow {
    0%, 100% {
        box-shadow: 0 0 15px #FF6B35, 0 0 30px #FF6B35, 0 0 45px rgba(255, 107, 53, 0.5);
        background: #FF6B35;
    }
    50% {
        box-shadow: 0 0 25px #FF8C00, 0 0 50px #FF6B35, 0 0 75px rgba(255, 107, 53, 0.8);
        background: #FF8C00;
    }
}

@keyframes powerRadiate {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

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

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

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

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

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

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

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

.header-time {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    color: #FF6B35;
    background: rgba(255, 107, 53, 0.1);
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

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

.btn-login {
    padding: 8px 20px;
    border: 2px solid #FF6B35;
    color: #FF6B35;
    border-radius: 4px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: #FF6B35;
    color: #0A0A0A;
}

.btn-register {
    padding: 8px 20px;
    background: linear-gradient(135deg, #FF6B35, #FF8C00);
    color: #0A0A0A;
    border-radius: 4px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 14px;
    border: none;
    transition: all 0.3s ease;
}

.btn-register:hover {
    background: linear-gradient(135deg, #FF8C00, #FFa500);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-demo {
    padding: 8px 20px;
    background: transparent;
    border: 2px solid #F5F5F5;
    color: #F5F5F5;
    border-radius: 4px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-demo:hover {
    background: #F5F5F5;
    color: #0A0A0A;
}

/* === NAVIGATION === */
.main-navigation {
    background: #1A1A1A;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
}

.main-navigation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(255, 107, 53, 0.03) 10px,
        rgba(255, 107, 53, 0.03) 20px
    );
    pointer-events: none;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 12px 18px;
    color: #F5F5F5;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #FF6B35;
    background: rgba(255, 107, 53, 0.1);
    text-shadow: none;
}

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

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

/* === NOTIFICATION BAR === */
.notification-bar {
    background: linear-gradient(90deg, #0A0A0A, #1A1A1A, #0A0A0A);
    padding: 8px 0;
    overflow: hidden;
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
}

.notification-content {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    color: #FF6B35;
}

/* === ANNOUNCEMENT MODAL === */
.announcement-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    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.85);
    backdrop-filter: blur(5px);
}

.announcement-content {
    position: relative;
    background: linear-gradient(135deg, #0A0A0A, #1A1A1A);
    border: 2px solid #FF6B35;
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    animation: tigerGlow 2s ease-in-out infinite;
}

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

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

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

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

.announcement-title {
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

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

.announcement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #F5F5F5;
}

.announcement-item:hover {
    background: rgba(255, 107, 53, 0.15);
    border-color: #FF6B35;
    transform: translateX(5px);
    color: #F5F5F5;
    text-shadow: none;
}

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

.announcement-badge.hot {
    background: #FF6B35;
    color: #0A0A0A;
}

.announcement-badge.new {
    background: #00C853;
    color: #0A0A0A;
}

.announcement-badge.info {
    background: #2196F3;
    color: #fff;
}

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

.announcement-item i.fa-chevron-right {
    color: #FF6B35;
    flex-shrink: 0;
}

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

.announcement-cta {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(135deg, #FF6B35, #FF8C00);
    color: #0A0A0A;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 16px;
    border-radius: 6px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.announcement-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: #0A0A0A;
    text-shadow: none;
}

/* === TIGER HERO SECTION === */
.tiger-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(ellipse at center, #2A1A0A 0%, #0A0A0A 70%);
    padding: 60px 20px;
    margin: 0 -15px;
}

.tiger-stripe-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.stripe-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.stripe-layer-1 {
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 30px,
        rgba(255, 107, 53, 0.08) 30px,
        rgba(255, 107, 53, 0.08) 35px
    );
    animation: stripePulse 4s ease-in-out infinite;
}

.stripe-layer-2 {
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 40px,
        rgba(255, 107, 53, 0.05) 40px,
        rgba(255, 107, 53, 0.05) 45px
    );
    animation: stripePulse 6s ease-in-out infinite reverse;
}

.stripe-layer-3 {
    background: repeating-linear-gradient(
        -60deg,
        transparent,
        transparent 50px,
        rgba(255, 107, 53, 0.03) 50px,
        rgba(255, 107, 53, 0.03) 55px
    );
    animation: stripePulse 8s ease-in-out infinite;
}

/* Tiger Face CSS Art */
.tiger-face-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.3;
}

.tiger-face {
    position: relative;
    width: 200px;
    height: 180px;
}

.tiger-eye {
    position: absolute;
    width: 40px;
    height: 25px;
    border-radius: 50%;
    top: 50px;
}

.tiger-eye-left {
    left: 40px;
}

.tiger-eye-right {
    right: 40px;
}

.tiger-eye-glow {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: eyeGlow 2s ease-in-out infinite;
    background: #FF6B35;
}

.tiger-eye-pupil {
    position: absolute;
    width: 12px;
    height: 20px;
    background: #0A0A0A;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tiger-nose {
    position: absolute;
    width: 20px;
    height: 15px;
    background: #FF6B35;
    border-radius: 50% 50% 40% 40%;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.7;
}

.tiger-whiskers-left,
.tiger-whiskers-right {
    position: absolute;
    width: 60px;
    height: 2px;
    background: rgba(255, 107, 53, 0.4);
    bottom: 55px;
}

.tiger-whiskers-left {
    left: 10px;
    transform: rotate(-5deg);
}

.tiger-whiskers-right {
    right: 10px;
    transform: rotate(5deg);
}

.tiger-power-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 2px solid rgba(255, 107, 53, 0.2);
    animation: powerRadiate 3s ease-out infinite;
}

.hero-inner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

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

.hero-brand {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 72px;
    font-weight: 700;
    color: #FF6B35;
    text-transform: uppercase;
    letter-spacing: 8px;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5), 0 0 60px rgba(255, 107, 53, 0.3);
}

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

.hero-tagline {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    color: #F5F5F5;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.hero-description {
    font-size: 16px;
    color: rgba(245, 245, 245, 0.8);
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.hero-stat-label {
    display: block;
    font-size: 13px;
    color: rgba(245, 245, 245, 0.6);
    text-transform: uppercase;
}

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

.btn-tiger-primary {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #FF6B35, #FF8C00);
    color: #0A0A0A;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 16px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-tiger-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-tiger-primary:hover::after {
    left: 100%;
}

.btn-tiger-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
    color: #0A0A0A;
    text-shadow: none;
}

.btn-outline-tiger {
    display: inline-block;
    padding: 14px 40px;
    border: 2px solid #FF6B35;
    color: #FF6B35;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline-tiger:hover {
    background: #FF6B35;
    color: #0A0A0A;
    transform: translateY(-3px);
    text-shadow: none;
}

/* === PAW SEPARATOR === */
.paw-separator {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 25px 0;
    position: relative;
}

.paw-separator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
}

.paw-print {
    position: relative;
    z-index: 1;
    background: #0A0A0A;
    padding: 0 5px;
}

.paw-print i {
    font-size: 20px;
    color: #FF6B35;
    animation: pawTrail 3s ease-in-out infinite;
}

.paw-print:nth-child(1) i { animation-delay: 0s; }
.paw-print:nth-child(2) i { animation-delay: 0.3s; }
.paw-print:nth-child(3) i { animation-delay: 0.6s; }
.paw-print:nth-child(4) i { animation-delay: 0.9s; }
.paw-print:nth-child(5) i { animation-delay: 1.2s; }

/* === SECTION TITLES === */
.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    position: relative;
}

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

.section-subtitle {
    text-align: center;
    color: rgba(245, 245, 245, 0.6);
    font-size: 15px;
    margin-bottom: 40px;
}

/* === TIGER GAMES SECTION (6 Cards) === */
.tiger-games {
    padding: 40px 0;
}

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

.tiger-game-card {
    position: relative;
    background: #1A1A1A;
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
    display: block;
    color: #F5F5F5;
}

.tiger-game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        #FF6B35,
        #FF6B35 10px,
        transparent 10px,
        transparent 20px
    );
}

.tiger-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.tiger-card-stripe {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.05), transparent);
    transform: skewX(-15deg);
    transition: left 0.6s ease;
    pointer-events: none;
}

.tiger-game-card:hover {
    border-color: #FF6B35;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
    color: #F5F5F5;
    text-shadow: none;
}

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

.tiger-game-card:hover .tiger-card-stripe {
    left: 150%;
}

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

.tiger-game-icon i {
    font-size: 42px;
    color: #FF6B35;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.3));
}

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

.tiger-game-rating i {
    color: #FF6B35;
    font-size: 12px;
}

.tiger-game-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    color: #F5F5F5;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.tiger-game-card p {
    font-size: 13px;
    color: rgba(245, 245, 245, 0.6);
    margin-bottom: 12px;
    line-height: 1.6;
}

.tiger-game-players {
    display: inline-block;
    font-size: 12px;
    color: #FF6B35;
    background: rgba(255, 107, 53, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
}

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

/* === TIGER GRID SECTION (3x4) === */
.tiger-grid {
    padding: 40px 0;
}

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

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

.tiger-grid-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 10px;
    background: #1A1A1A;
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 10px;
    transition: all 0.3s ease;
    color: #F5F5F5;
    position: relative;
    overflow: hidden;
}

.tiger-grid-node::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 8px,
        rgba(255, 107, 53, 0.02) 8px,
        rgba(255, 107, 53, 0.02) 16px
    );
    pointer-events: none;
}

.grid-node-icon i {
    font-size: 28px;
    color: #FF6B35;
    transition: all 0.3s ease;
}

.grid-node-label {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tiger-grid-node:hover {
    border-color: #FF6B35;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.15);
    color: #FF6B35;
    text-shadow: none;
}

.tiger-grid-node:hover .grid-node-icon i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.5));
}

/* === TIGER FEATURES SECTION === */
.tiger-features {
    padding: 40px 0;
}

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

.tiger-feature-card {
    background: #1A1A1A;
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tiger-feature-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        #FF6B35,
        #FF6B35 8px,
        transparent 8px,
        transparent 16px
    );
}

.tiger-feature-card:hover {
    border-color: #FF6B35;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

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

.tiger-paw-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.tiger-paw-icon::before {
    content: '\f1b0';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 28px;
    color: #FF6B35;
}

.tiger-feature-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    color: #FF6B35;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.tiger-feature-card p {
    font-size: 13px;
    color: rgba(245, 245, 245, 0.6);
    line-height: 1.7;
}

/* === TIGER STATS SECTION === */
.tiger-stats {
    position: relative;
    padding: 60px 0;
    margin: 20px -15px;
    overflow: hidden;
}

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

.stripe-layer-stats {
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 20px,
        rgba(255, 107, 53, 0.05) 20px,
        rgba(255, 107, 53, 0.05) 25px
    );
    animation: stripePulse 5s ease-in-out infinite;
}

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

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

.tiger-stat-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 30px 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.tiger-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FF6B35, transparent);
}

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

.stat-paw-decoration i {
    font-size: 24px;
    color: rgba(255, 107, 53, 0.3);
}

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

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 5px;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.stat-label {
    font-size: 13px;
    color: rgba(245, 245, 245, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === TIGER PROMOTIONS SECTION === */
.tiger-promos {
    padding: 40px 0;
}

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

.tiger-promo-card {
    position: relative;
    background: #1A1A1A;
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.tiger-promo-card:hover {
    border-color: #FF6B35;
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.2);
}

.promo-tiger-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 15px,
        rgba(255, 107, 53, 0.03) 15px,
        rgba(255, 107, 53, 0.03) 20px
    );
    pointer-events: none;
}

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

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

.promo-icon i {
    font-size: 36px;
    color: #FF6B35;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.3));
}

.tiger-promo-inner h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    color: #FF6B35;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.tiger-promo-inner p {
    font-size: 13px;
    color: rgba(245, 245, 245, 0.6);
    margin-bottom: 15px;
    line-height: 1.7;
}

.promo-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 12px;
    color: rgba(245, 245, 245, 0.5);
}

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

.promo-badge.hot {
    background: #FF6B35;
    color: #0A0A0A;
}

.promo-badge.new {
    background: #00C853;
    color: #0A0A0A;
}

.promo-badge.vip {
    background: #FFD700;
    color: #0A0A0A;
}

.btn-promo {
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(135deg, #FF6B35, #FF8C00);
    color: #0A0A0A;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 14px;
    border-radius: 6px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-promo:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: #0A0A0A;
    text-shadow: none;
}

/* === FOOTER CTA SECTION === */
.footer-cta-section {
    position: relative;
    padding: 60px 20px;
    margin: 20px -15px;
    overflow: hidden;
    text-align: center;
}

.footer-cta-tiger-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, #2A1A0A 0%, #0A0A0A 70%);
}

.stripe-layer-cta {
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 25px,
        rgba(255, 107, 53, 0.06) 25px,
        rgba(255, 107, 53, 0.06) 30px
    );
    animation: stripePulse 6s ease-in-out infinite;
}

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

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

.cta-tiger-paw {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: tigerGlow 3s ease-in-out infinite;
}

.cta-tiger-paw::before {
    content: '\f1b0';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 36px;
    color: #FF6B35;
}

.footer-cta-inner h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    color: #FF6B35;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.footer-cta-inner > p {
    font-size: 15px;
    color: rgba(245, 245, 245, 0.7);
    margin-bottom: 25px;
    line-height: 1.7;
}

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

.cta-feature {
    font-size: 14px;
    color: #F5F5F5;
}

.cta-feature i {
    color: #FF6B35;
    margin-right: 6px;
}

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

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

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

.article-card {
    background: #1A1A1A;
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
    color: #F5F5F5;
}

.article-card:hover {
    border-color: #FF6B35;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
    color: #F5F5F5;
    text-shadow: none;
}

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

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

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

.article-card-title {
    padding: 15px 15px 8px;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: #F5F5F5;
}

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

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

.article-card-title span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-meta {
    padding: 0 15px;
    font-size: 12px;
    color: rgba(245, 245, 245, 0.4);
    display: flex;
    gap: 15px;
    margin-bottom: 8px;
}

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

.article-card-excerpt {
    padding: 0 15px 15px;
    font-size: 13px;
    color: rgba(245, 245, 245, 0.5);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-more {
    display: block;
    padding: 12px 15px;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
    color: #FF6B35;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.article-card-more:hover {
    background: rgba(255, 107, 53, 0.1);
    color: #FF6B35;
    text-shadow: none;
}

.view-more-btn {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid #FF6B35;
    border-radius: 6px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-align: center;
}

.tiger-view-more {
    display: block;
    width: fit-content;
    margin: 0 auto;
    color: #FF6B35;
}

.tiger-view-more:hover {
    background: #FF6B35;
    color: #0A0A0A;
    text-shadow: none;
}

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

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

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

/* === BREADCRUMB === */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 0;
    font-size: 13px;
    color: rgba(245, 245, 245, 0.5);
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #FF6B35;
}

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

.breadcrumb span {
    color: rgba(245, 245, 245, 0.4);
}

/* === CATEGORY HEADER === */
.category-header {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    margin-bottom: 20px;
}

.category-title {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    text-transform: uppercase;
}

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

.category-desc {
    font-size: 14px;
    color: rgba(245, 245, 245, 0.6);
    margin-top: 8px;
}

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

.provider-tab {
    padding: 8px 18px;
    background: #1A1A1A;
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 6px;
    color: #F5F5F5;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

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

.provider-tab.active {
    background: #FF6B35;
    color: #0A0A0A;
    border-color: #FF6B35;
}

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

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

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

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #1A1A1A;
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 6px;
    color: #F5F5F5;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: #FF6B35;
    color: #0A0A0A;
    border-color: #FF6B35;
}

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

.no-posts p {
    color: rgba(245, 245, 245, 0.5);
    font-size: 16px;
}

/* === SINGLE ARTICLE === */
.single-article {
    background: #1A1A1A;
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.article-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 107, 53, 0.15);
}

.article-title {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    color: #F5F5F5;
    margin-bottom: 12px;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(245, 245, 245, 0.5);
}

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

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

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

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

.article-content {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(245, 245, 245, 0.8);
}

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

.article-content h2,
.article-content h3,
.article-content h4 {
    color: #FF6B35;
    margin: 25px 0 10px;
}

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

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

.article-content blockquote {
    border-left: 3px solid #FF6B35;
    padding: 15px 20px;
    margin: 20px 0;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

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

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

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.article-content th,
.article-content td {
    border: 1px solid rgba(255, 107, 53, 0.2);
    padding: 10px 15px;
    text-align: left;
}

.article-content th {
    background: rgba(255, 107, 53, 0.1);
    color: #FF6B35;
    font-family: 'Oswald', sans-serif;
}

/* === ARTICLE TAGS === */
.article-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 107, 53, 0.15);
    margin-top: 20px;
}

.article-tags i {
    color: #FF6B35;
    line-height: 28px;
}

.article-tags a {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 4px;
    font-size: 12px;
    color: #FF6B35;
    transition: all 0.3s ease;
}

.article-tags a:hover {
    background: #FF6B35;
    color: #0A0A0A;
    text-shadow: none;
}

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

.article-nav-prev,
.article-nav-next {
    max-width: 45%;
}

.article-nav-prev a,
.article-nav-next a {
    font-size: 14px;
    color: #FF6B35;
}

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

/* === RELATED POSTS === */
.related-posts {
    padding: 30px 0;
}

.related-posts-title {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
}

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

.related-item {
    display: block;
    background: #1A1A1A;
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #F5F5F5;
}

.related-item:hover {
    border-color: #FF6B35;
    transform: translateY(-3px);
    color: #F5F5F5;
    text-shadow: none;
}

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

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

.related-item-title {
    padding: 10px;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* === PAGE ARTICLE === */
.page-article {
    background: #1A1A1A;
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 12px;
    padding: 30px;
}

.page-title {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    color: #FF6B35;
    margin-bottom: 20px;
}

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

.page-content {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(245, 245, 245, 0.8);
}

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

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

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

.error-tiger-paw {
    margin-bottom: 20px;
}

.error-tiger-paw i {
    font-size: 80px;
    color: #FF6B35;
    animation: floatUp 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.4));
}

.error-code {
    font-family: 'Oswald', sans-serif;
    font-size: 100px;
    font-weight: 700;
    color: #FF6B35;
    text-shadow: 0 0 40px rgba(255, 107, 53, 0.3);
    line-height: 1;
}

.error-title {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    color: #F5F5F5;
    text-transform: uppercase;
    margin: 10px 0 15px;
}

.error-desc {
    font-size: 15px;
    color: rgba(245, 245, 245, 0.6);
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

/* === 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: 44px;
    height: 44px;
    background: #1A1A1A;
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    color: #FF6B35;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
}

.sidebar-btn:hover {
    background: #FF6B35;
    color: #0A0A0A;
    transform: scale(1.1);
    text-shadow: none;
}

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

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

.sidebar-label {
    display: none;
    position: absolute;
    right: 54px;
    background: #1A1A1A;
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    color: #F5F5F5;
}

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

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

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 20px,
        rgba(255, 107, 53, 0.015) 20px,
        rgba(255, 107, 53, 0.015) 40px
    );
    pointer-events: none;
}

.footer-columns-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.footer-col h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    color: #FF6B35;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
}

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

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

.footer-col ul li a {
    color: rgba(245, 245, 245, 0.6);
    font-size: 13px;
    transition: all 0.3s ease;
}

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

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

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

.footer-brand-text {
    font-size: 13px;
    color: rgba(245, 245, 245, 0.5);
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-18plus {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 2px solid #FF6B35;
    border-radius: 50%;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #FF6B35;
    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;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    color: #FF6B35;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background: #FF6B35;
    color: #0A0A0A;
    transform: translateY(-3px);
    text-shadow: none;
}

/* === FOOTER LICENSE BAR === */
.footer-license-bar {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 107, 53, 0.15);
    border-bottom: 1px solid rgba(255, 107, 53, 0.15);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.footer-license-bar h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    color: #FF6B35;
    text-transform: uppercase;
    margin-bottom: 15px;
}

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

.license-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(245, 245, 245, 0.5);
    font-size: 12px;
}

.license-item i {
    color: #FF6B35;
    font-size: 18px;
}

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

.footer-copyright {
    font-size: 13px;
    color: rgba(245, 245, 245, 0.4);
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.5px;
}

/* === SWIPER OVERRIDES === */
.swiper-pagination-bullet {
    background: rgba(255, 107, 53, 0.4);
    opacity: 1;
}

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

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

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

::-webkit-scrollbar-track {
    background: #0A0A0A;
}

::-webkit-scrollbar-thumb {
    background: #FF6B35;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FF8C00;
}

/* === SELECTION === */
::selection {
    background: #FF6B35;
    color: #0A0A0A;
}

::-moz-selection {
    background: #FF6B35;
    color: #0A0A0A;
}
