/* ============================================
   PANTHER88 THEME - main.css (moban-66)
   Panther Totem Theme with Glowing Eyes
   Colors: #0A0A0A→#1A1A2E, #A0A0A0, #7B2D8E
   ============================================ */

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

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

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

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

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

a:hover {
    color: #B060D0;
    text-shadow: 0 0 10px rgba(123, 45, 142, 0.5);
}

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

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

.purple-text {
    color: #7B2D8E;
}

/* === KEYFRAME ANIMATIONS === */
@keyframes eyeGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(123, 45, 142, 0.6), 0 0 30px rgba(123, 45, 142, 0.3), inset 0 0 10px rgba(123, 45, 142, 0.4);
        opacity: 1;
    }
    50% {
        box-shadow: 0 0 25px rgba(123, 45, 142, 0.9), 0 0 50px rgba(123, 45, 142, 0.5), inset 0 0 20px rgba(123, 45, 142, 0.6);
        opacity: 0.85;
    }
}

@keyframes shadowProwl {
    0% {
        transform: translateX(-100%) scaleX(1);
        opacity: 0;
    }
    20% {
        opacity: 0.6;
    }
    50% {
        transform: translateX(0%) scaleX(1.2);
        opacity: 0.8;
    }
    80% {
        opacity: 0.6;
    }
    100% {
        transform: translateX(100%) scaleX(1);
        opacity: 0;
    }
}

@keyframes stealthFade {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
        filter: blur(4px);
    }
    60% {
        opacity: 0.7;
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes clawSlash {
    0% {
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        opacity: 0.7;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(123, 45, 142, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(123, 45, 142, 0.8), 0 0 40px rgba(123, 45, 142, 0.4);
    }
}

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

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

@keyframes pantherBlink {
    0%, 90%, 100% { opacity: 1; }
    95% { opacity: 0.1; }
}

@keyframes shadowTendrilWave {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(2deg) scale(1.05); }
    50% { transform: rotate(0deg) scale(1.1); }
    75% { transform: rotate(-2deg) scale(1.05); }
    100% { transform: rotate(0deg) scale(1); }
}

/* === HEADER === */
.site-header {
    background: linear-gradient(180deg, #0D0D1A 0%, #0A0A0A 100%);
    border-bottom: 2px solid rgba(123, 45, 142, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(123, 45, 142, 0.4));
}

.header-time {
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    color: #A0A0A0;
    background: rgba(123, 45, 142, 0.1);
    padding: 6px 15px;
    border-radius: 20px;
    border: 1px solid rgba(123, 45, 142, 0.2);
}

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

.btn-login {
    padding: 8px 20px;
    border: 1px solid #7B2D8E;
    color: #7B2D8E;
    border-radius: 4px;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: rgba(123, 45, 142, 0.1);
    color: #B060D0;
}

.btn-register {
    padding: 8px 20px;
    background: linear-gradient(135deg, #7B2D8E, #9B4DCA);
    color: #fff;
    border-radius: 4px;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s ease;
}

.btn-register:hover {
    background: linear-gradient(135deg, #9B4DCA, #B060D0);
    box-shadow: 0 0 15px rgba(123, 45, 142, 0.5);
    color: #fff;
}

.btn-demo {
    padding: 8px 20px;
    border: 1px solid #A0A0A0;
    color: #A0A0A0;
    border-radius: 4px;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s ease;
}

.btn-demo:hover {
    background: rgba(160, 160, 160, 0.1);
    color: #fff;
}

/* === NAVIGATION === */
.main-navigation {
    background: rgba(10, 10, 10, 0.95);
    border-top: 1px solid rgba(123, 45, 142, 0.2);
    border-bottom: 1px solid rgba(123, 45, 142, 0.2);
}

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

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 12px 18px;
    color: #A0A0A0;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: #7B2D8E;
    background: rgba(123, 45, 142, 0.1);
    border-bottom-color: #7B2D8E;
    text-shadow: 0 0 8px rgba(123, 45, 142, 0.3);
}

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

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

/* === NOTIFICATION BAR === */
.notification-bar {
    background: rgba(123, 45, 142, 0.15);
    border-bottom: 1px solid rgba(123, 45, 142, 0.2);
    overflow: hidden;
    padding: 8px 0;
}

.notification-content {
    display: flex;
    gap: 50px;
    animation: notificationScroll 25s linear infinite;
    white-space: nowrap;
}

.notification-content span {
    color: #B060D0;
    font-size: 13px;
}

/* === ANNOUNCEMENT MODAL === */
.announcement-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
    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, #1A1A2E 0%, #0D0D1A 100%);
    border: 2px solid rgba(123, 45, 142, 0.5);
    border-radius: 16px;
    padding: 40px 30px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 0 50px rgba(123, 45, 142, 0.3);
    animation: stealthFade 0.5s ease;
}

.announcement-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #A0A0A0;
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s;
}

.announcement-close:hover {
    color: #7B2D8E;
}

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

.announcement-header-icon i {
    font-size: 48px;
    color: #7B2D8E;
    animation: eyeGlow 2s infinite;
    border-radius: 50%;
    padding: 15px;
}

.announcement-title {
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
    animation: pulseGlow 2s infinite;
}

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

.announcement-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(123, 45, 142, 0.1);
    border: 1px solid rgba(123, 45, 142, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #A0A0A0;
}

.announcement-item:hover {
    background: rgba(123, 45, 142, 0.2);
    border-color: #7B2D8E;
    transform: translateX(5px);
    color: #fff;
}

.announcement-badge {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    min-width: 40px;
    text-align: center;
}

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

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

.announcement-badge.info {
    background: #3498db;
    color: #fff;
}

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

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

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

.announcement-cta {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(135deg, #7B2D8E, #9B4DCA);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.announcement-cta:hover {
    box-shadow: 0 0 25px rgba(123, 45, 142, 0.6);
    transform: translateY(-2px);
    color: #fff;
}

/* === PANTHER HERO SECTION === */
.panther-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, #1A1A2E 0%, #0A0A0A 70%);
    overflow: hidden;
    margin: 20px 0;
    border-radius: 16px;
    border: 1px solid rgba(123, 45, 142, 0.2);
}

.panther-darkness {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shadow-tendril {
    position: absolute;
    background: radial-gradient(ellipse, rgba(123, 45, 142, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: shadowTendrilWave 8s ease-in-out infinite;
}

.shadow-tendril-1 {
    width: 400px;
    height: 200px;
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.shadow-tendril-2 {
    width: 300px;
    height: 150px;
    top: 60%;
    right: -5%;
    animation-delay: 2s;
}

.shadow-tendril-3 {
    width: 500px;
    height: 250px;
    bottom: -10%;
    left: 30%;
    animation-delay: 4s;
}

.shadow-tendril-4 {
    width: 350px;
    height: 180px;
    top: 30%;
    right: 20%;
    animation-delay: 6s;
}

.panther-eyes-container {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 80px;
    z-index: 2;
}

.panther-eye {
    width: 50px;
    height: 25px;
    border-radius: 50%;
    position: relative;
    animation: pantherBlink 5s infinite;
}

.panther-eye-left {
    animation-delay: 0s;
}

.panther-eye-right {
    animation-delay: 0.1s;
}

.eye-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(ellipse, #7B2D8E 0%, #9B4DCA 40%, transparent 70%);
    animation: eyeGlow 2.5s ease-in-out infinite;
}

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

.claw-mark {
    position: absolute;
    width: 3px;
    background: linear-gradient(180deg, transparent, rgba(123, 45, 142, 0.6), transparent);
    animation: clawSlash 3s ease-out infinite;
}

.claw-mark-1 {
    height: 120px;
    top: 20%;
    right: 15%;
    transform: rotate(-15deg);
    animation-delay: 0s;
}

.claw-mark-2 {
    height: 100px;
    top: 25%;
    right: 13%;
    transform: rotate(-15deg);
    animation-delay: 0.3s;
}

.claw-mark-3 {
    height: 90px;
    top: 30%;
    right: 11%;
    transform: rotate(-15deg);
    animation-delay: 0.6s;
}

.hero-inner-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
}

.stealth-fade-in {
    animation: stealthFade 1.5s ease forwards;
}

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

.hero-brand {
    display: block;
    font-size: 52px;
    font-weight: 700;
    color: #7B2D8E;
    text-shadow: 0 0 30px rgba(123, 45, 142, 0.6), 0 0 60px rgba(123, 45, 142, 0.3);
    animation: pulseGlow 3s infinite;
    letter-spacing: 4px;
}

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

.hero-tagline {
    display: block;
    font-size: 18px;
    color: #A0A0A0;
    letter-spacing: 3px;
    font-weight: 400;
}

.hero-description {
    font-size: 16px;
    color: #A0A0A0;
    max-width: 700px;
    margin: 0 auto 25px;
    line-height: 1.8;
}

.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: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 700;
    color: #7B2D8E;
    text-shadow: 0 0 15px rgba(123, 45, 142, 0.4);
}

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

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

.btn-purple-primary {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #7B2D8E, #9B4DCA);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-purple-primary:hover {
    box-shadow: 0 0 30px rgba(123, 45, 142, 0.6);
    transform: translateY(-3px);
    color: #fff;
}

.btn-outline-purple {
    display: inline-block;
    padding: 14px 40px;
    border: 2px solid #7B2D8E;
    color: #7B2D8E;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline-purple:hover {
    background: rgba(123, 45, 142, 0.15);
    color: #B060D0;
    box-shadow: 0 0 20px rgba(123, 45, 142, 0.3);
}

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

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

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

/* === PANTHER STAR GAMES === */
.panther-star-games {
    padding: 50px 0;
}

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

.panther-game-card {
    position: relative;
    background: linear-gradient(135deg, #141428 0%, #0D0D1A 100%);
    border: 1px solid rgba(123, 45, 142, 0.2);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
    display: block;
    color: #A0A0A0;
}

.panther-game-card:hover {
    transform: translateY(-8px);
    border-color: #7B2D8E;
    box-shadow: 0 10px 40px rgba(123, 45, 142, 0.3);
    color: #fff;
}

.panther-game-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(123, 45, 142, 0.05) 0%, transparent 60%);
    transition: all 0.5s ease;
    pointer-events: none;
}

.panther-game-card:hover .panther-game-glow {
    background: radial-gradient(circle, rgba(123, 45, 142, 0.15) 0%, transparent 60%);
}

.claw-decoration {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-right: 2px solid rgba(123, 45, 142, 0.3);
    border-top: 2px solid rgba(123, 45, 142, 0.3);
    border-radius: 0 8px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.panther-game-card:hover .claw-decoration {
    opacity: 1;
}

.panther-game-icon {
    font-size: 42px;
    color: #7B2D8E;
    margin-bottom: 15px;
    animation: floatShadow 3s ease-in-out infinite;
}

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

.panther-game-rating i {
    color: #7B2D8E;
    font-size: 12px;
}

.panther-game-card h3 {
    font-size: 18px;
    color: #E0E0E0;
    margin-bottom: 10px;
}

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

.panther-game-players {
    font-size: 12px;
    color: #7B2D8E;
}

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

/* === GAME MATRIX GRID === */
.panther-game-matrix {
    padding: 50px 0;
}

.game-matrix-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.matrix-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px 15px;
    background: linear-gradient(135deg, #141428 0%, #0D0D1A 100%);
    border: 1px solid rgba(123, 45, 142, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    color: #A0A0A0;
}

.matrix-node:hover {
    border-color: #7B2D8E;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(123, 45, 142, 0.3);
    color: #fff;
}

.node-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(123, 45, 142, 0.15);
    color: #7B2D8E;
    font-size: 20px;
    animation: eyeGlow 3s infinite;
}

.node-label {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}

/* === PANTHER FEATURES === */
.panther-features {
    padding: 50px 0;
}

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

.panther-feature-card {
    background: linear-gradient(135deg, #141428 0%, #0D0D1A 100%);
    border: 1px solid rgba(123, 45, 142, 0.2);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
}

.panther-feature-card:hover {
    border-color: #7B2D8E;
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(123, 45, 142, 0.2);
}

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

.eye-icon-glow {
    width: 60px;
    height: 30px;
    border-radius: 50%;
    background: radial-gradient(ellipse, #7B2D8E 0%, #9B4DCA 40%, transparent 70%);
    margin: 0 auto;
    animation: eyeGlow 2.5s ease-in-out infinite;
}

.panther-feature-card h3 {
    font-size: 16px;
    color: #E0E0E0;
    margin-bottom: 12px;
}

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

/* === PANTHER STATS === */
.panther-stats {
    padding: 50px 0;
    position: relative;
}

.panther-stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.shadow-prowl-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(123, 45, 142, 0.08), transparent);
    animation: shadowProwl 8s linear infinite;
}

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

.panther-stat-card {
    background: linear-gradient(135deg, #141428 0%, #0D0D1A 100%);
    border: 1px solid rgba(123, 45, 142, 0.2);
    border-radius: 16px;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.panther-stat-card:hover {
    border-color: #7B2D8E;
    box-shadow: 0 5px 25px rgba(123, 45, 142, 0.2);
}

.stat-eye-decoration {
    color: #7B2D8E;
    font-size: 16px;
    margin-bottom: 10px;
    opacity: 0.5;
}

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

.stat-number {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    font-weight: 700;
    color: #7B2D8E;
    text-shadow: 0 0 15px rgba(123, 45, 142, 0.4);
    margin-bottom: 8px;
}

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

/* === PANTHER PROMOTIONS === */
.panther-promos {
    padding: 50px 0;
}

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

.panther-promo-card {
    position: relative;
    background: linear-gradient(135deg, #141428 0%, #0D0D1A 100%);
    border: 1px solid rgba(123, 45, 142, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.panther-promo-card:hover {
    border-color: #7B2D8E;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(123, 45, 142, 0.2);
}

.promo-shadow-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top, rgba(123, 45, 142, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

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

.promo-icon {
    font-size: 36px;
    color: #7B2D8E;
    margin-bottom: 15px;
}

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

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

.promo-badge {
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
}

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

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

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

.btn-promo {
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(135deg, #7B2D8E, #9B4DCA);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-promo:hover {
    box-shadow: 0 0 20px rgba(123, 45, 142, 0.5);
    color: #fff;
}

/* === FOOTER CTA === */
.panther-footer-cta {
    position: relative;
    padding: 60px 0;
    margin: 30px 0;
    background: linear-gradient(135deg, #141428 0%, #0D0D1A 100%);
    border: 1px solid rgba(123, 45, 142, 0.3);
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
}

.panther-cta-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.panther-cta-inner {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.cta-panther-eyes {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 25px;
}

.cta-eye {
    width: 30px;
    height: 15px;
    border-radius: 50%;
    background: radial-gradient(ellipse, #7B2D8E 0%, #9B4DCA 40%, transparent 70%);
    animation: eyeGlow 2.5s ease-in-out infinite;
}

.cta-eye-right {
    animation-delay: 0.2s;
}

.panther-footer-cta h2 {
    font-size: 32px;
    color: #7B2D8E;
    margin-bottom: 15px;
    animation: pulseGlow 3s infinite;
}

.panther-footer-cta p {
    font-size: 16px;
    color: #A0A0A0;
    max-width: 600px;
    margin: 0 auto 25px;
}

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

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

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

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

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

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

.panther-article-card {
    display: block;
    background: linear-gradient(135deg, #141428 0%, #0D0D1A 100%);
    border: 1px solid rgba(123, 45, 142, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #A0A0A0;
}

.panther-article-card:hover {
    border-color: #7B2D8E;
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(123, 45, 142, 0.2);
    color: #fff;
}

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

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

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

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

.article-card-title span,
.article-card-title a {
    font-size: 15px;
    font-weight: 600;
    color: #E0E0E0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-meta {
    padding: 0 15px;
    font-size: 12px;
    color: #666;
}

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

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

.view-more-btn {
    display: block;
    text-align: center;
    padding: 12px 30px;
    border: 2px solid #7B2D8E;
    color: #7B2D8E;
    border-radius: 8px;
    font-weight: 600;
    max-width: 200px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    background: rgba(123, 45, 142, 0.15);
    color: #B060D0;
}

.purple-view-more i {
    margin-left: 5px;
}

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

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

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

.breadcrumb a {
    color: #7B2D8E;
}

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

.breadcrumb span {
    color: #666;
}

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

.article-card {
    background: linear-gradient(135deg, #141428 0%, #0D0D1A 100%);
    border: 1px solid rgba(123, 45, 142, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.article-card:hover {
    border-color: #7B2D8E;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(123, 45, 142, 0.15);
}

.article-card h3 {
    padding: 12px 15px 5px;
}

.article-card h3 a {
    font-size: 15px;
    color: #E0E0E0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card h3 a:hover {
    color: #7B2D8E;
}

.article-card .article-card-meta {
    padding: 0 15px;
    font-size: 12px;
    color: #666;
}

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

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

.article-card-more {
    display: inline-block;
    padding: 8px 15px 15px;
    font-size: 13px;
    color: #7B2D8E;
    font-weight: 500;
}

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

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

/* === CATEGORY HEADER === */
.category-header {
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #141428 0%, #0D0D1A 100%);
    border: 1px solid rgba(123, 45, 142, 0.2);
    border-radius: 12px;
}

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

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

.category-desc {
    color: #888;
    font-size: 14px;
    margin-top: 8px;
}

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

.provider-tab {
    padding: 8px 16px;
    background: rgba(123, 45, 142, 0.1);
    border: 1px solid rgba(123, 45, 142, 0.2);
    border-radius: 20px;
    color: #A0A0A0;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.provider-tab:hover,
.provider-tab.active {
    background: #7B2D8E;
    color: #fff;
    border-color: #7B2D8E;
}

/* === 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: 8px;
    background: rgba(123, 45, 142, 0.1);
    border: 1px solid rgba(123, 45, 142, 0.2);
    color: #A0A0A0;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: #7B2D8E;
    color: #fff;
    border-color: #7B2D8E;
}

/* === SINGLE ARTICLE === */
.single-article {
    background: linear-gradient(135deg, #141428 0%, #0D0D1A 100%);
    border: 1px solid rgba(123, 45, 142, 0.2);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
}

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

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

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

.article-meta i {
    color: #7B2D8E;
    margin-right: 4px;
}

.article-meta a {
    color: #7B2D8E;
}

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

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

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

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

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

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

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

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

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

.article-content blockquote {
    border-left: 3px solid #7B2D8E;
    padding: 15px 20px;
    margin: 20px 0;
    background: rgba(123, 45, 142, 0.08);
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

/* === ARTICLE TAGS === */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(123, 45, 142, 0.15);
}

.article-tags i {
    color: #7B2D8E;
}

.article-tags span {
    padding: 4px 12px;
    background: rgba(123, 45, 142, 0.1);
    border-radius: 15px;
    font-size: 12px;
    color: #A0A0A0;
}

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

.article-tags span a:hover {
    color: #7B2D8E;
}

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

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

.article-nav-prev i,
.article-nav-next i {
    font-size: 12px;
}

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

.related-posts-title {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(123, 45, 142, 0.2);
}

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

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

.related-item {
    background: linear-gradient(135deg, #141428 0%, #0D0D1A 100%);
    border: 1px solid rgba(123, 45, 142, 0.15);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
    color: #A0A0A0;
}

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

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

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

.related-item-title {
    padding: 10px;
    font-size: 13px;
    color: #E0E0E0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* === PAGE ARTICLE === */
.page-article {
    background: linear-gradient(135deg, #141428 0%, #0D0D1A 100%);
    border: 1px solid rgba(123, 45, 142, 0.2);
    border-radius: 16px;
    padding: 30px;
}

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

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

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

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

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

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

.error-panther-eyes {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 30px;
}

.error-eye {
    width: 40px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(ellipse, #7B2D8E 0%, #9B4DCA 40%, transparent 70%);
    animation: eyeGlow 2s ease-in-out infinite;
}

.error-eye-right {
    animation-delay: 0.2s;
}

.error-code {
    font-size: 80px;
    color: #7B2D8E;
    text-shadow: 0 0 30px rgba(123, 45, 142, 0.5);
    margin-bottom: 10px;
}

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

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

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

.no-posts p {
    font-size: 16px;
    color: #888;
}

/* === 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, #141428 0%, #0D0D1A 100%);
    border: 1px solid rgba(123, 45, 142, 0.3);
    color: #7B2D8E;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
}

.sidebar-btn:hover {
    background: #7B2D8E;
    color: #fff;
    transform: scale(1.15);
    box-shadow: 0 0 15px rgba(123, 45, 142, 0.5);
}

.sidebar-label {
    display: none;
    position: absolute;
    right: 55px;
    background: #141428;
    color: #A0A0A0;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    border: 1px solid rgba(123, 45, 142, 0.3);
}

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

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

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

/* === FOOTER === */
.site-footer {
    background: linear-gradient(180deg, #0D0D1A 0%, #050510 100%);
    border-top: 2px solid rgba(123, 45, 142, 0.3);
    padding: 50px 0 30px;
    margin-top: 50px;
}

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

.footer-col h4 {
    font-size: 16px;
    color: #7B2D8E;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

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

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

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

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

.footer-brand-logo img {
    height: 40px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 8px rgba(123, 45, 142, 0.4));
}

.footer-brand-text {
    font-size: 13px;
    color: #888;
    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 #e74c3c;
    border-radius: 50%;
    color: #e74c3c;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 15px;
}

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

.footer-social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(123, 45, 142, 0.15);
    border: 1px solid rgba(123, 45, 142, 0.3);
    color: #7B2D8E;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background: #7B2D8E;
    color: #fff;
}

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

.footer-license-bar h4 {
    color: #7B2D8E;
    font-size: 14px;
    margin-bottom: 15px;
}

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

.license-item span {
    font-size: 11px;
    color: #888;
}

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

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

/* === HOME NEWS SECTION (front-page) === */
.home-news-section,
.panther-news-section {
    padding: 50px 0;
}

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

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

.gold-view-more,
.purple-view-more {
    border-color: #7B2D8E;
    color: #7B2D8E;
}
