/* ============================================
   WOLFPLAY THEME - main.css (moban-63)
   Wolf Totem Theme with Moon Howling Silhouette
   Colors: #0D1117 bg, #C0C0C0 silver, #4A6FA5 blue-gray, #F0F0F0 white
   ============================================ */

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

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

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

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

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

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

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

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

.silver-text {
    color: #C0C0C0;
}

/* === KEYFRAME ANIMATIONS === */
@keyframes moonHowl {
    0%, 100% {
        box-shadow: 0 0 30px rgba(192, 192, 192, 0.3), 0 0 60px rgba(74, 111, 165, 0.15);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 50px rgba(192, 192, 192, 0.5), 0 0 100px rgba(74, 111, 165, 0.3);
        transform: scale(1.02);
    }
}

@keyframes packRun {
    0% { transform: translateX(-100%); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateX(100vw); opacity: 0; }
}

@keyframes frostBreath {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-20px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-40px) scale(1.5);
    }
}

@keyframes pawAppear {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-20deg);
    }
    60% {
        opacity: 1;
        transform: scale(1.2) rotate(5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes moonGlowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(192, 192, 192, 0.2), 0 0 40px rgba(74, 111, 165, 0.1);
    }
    50% {
        box-shadow: 0 0 40px rgba(192, 192, 192, 0.4), 0 0 80px rgba(74, 111, 165, 0.2);
    }
}

@keyframes frostFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-15px) translateX(5px);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-25px) translateX(-5px);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-10px) translateX(8px);
        opacity: 0.8;
    }
}

@keyframes wolfEyeGlow {
    0%, 100% {
        fill: #4A6FA5;
        filter: drop-shadow(0 0 3px #4A6FA5);
    }
    50% {
        fill: #7BA3D4;
        filter: drop-shadow(0 0 8px #7BA3D4);
    }
}

@keyframes silverShimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* === HEADER === */
.site-header {
    background: linear-gradient(180deg, rgba(13, 17, 23, 0.98) 0%, rgba(13, 17, 23, 0.95) 100%);
    border-bottom: 1px solid rgba(192, 192, 192, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(192, 192, 192, 0.3));
}

.header-time {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    color: #C0C0C0;
    background: rgba(74, 111, 165, 0.1);
    padding: 6px 15px;
    border-radius: 20px;
    border: 1px solid rgba(192, 192, 192, 0.15);
}

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

.btn-login {
    padding: 8px 20px;
    border: 1px solid #C0C0C0;
    border-radius: 6px;
    color: #C0C0C0;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
}

.btn-login:hover {
    background: rgba(192, 192, 192, 0.1);
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.2);
}

.btn-register {
    padding: 8px 20px;
    background: linear-gradient(135deg, #4A6FA5, #6B8FC5);
    border-radius: 6px;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    border: none;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
}

.btn-register:hover {
    background: linear-gradient(135deg, #5A7FB5, #7BA3D4);
    box-shadow: 0 0 20px rgba(74, 111, 165, 0.4);
    color: #fff;
}

.btn-demo {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid #4A6FA5;
    border-radius: 6px;
    color: #4A6FA5;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
}

.btn-demo:hover {
    background: rgba(74, 111, 165, 0.1);
    color: #7BA3D4;
}

/* === NAVIGATION === */
.main-navigation {
    background: rgba(13, 17, 23, 0.9);
    border-top: 1px solid rgba(192, 192, 192, 0.08);
}

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

.nav-item {
    position: relative;
}

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

.nav-link:hover {
    color: #fff;
    background: rgba(74, 111, 165, 0.15);
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.3);
}

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

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

/* === NOTIFICATION BAR === */
.notification-bar {
    background: linear-gradient(90deg, rgba(74, 111, 165, 0.15), rgba(192, 192, 192, 0.08), rgba(74, 111, 165, 0.15));
    overflow: hidden;
    padding: 8px 0;
    border-top: 1px solid rgba(192, 192, 192, 0.08);
}

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

.notification-content span {
    font-size: 13px;
    color: #C0C0C0;
    font-weight: 500;
}

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

/* === ANNOUNCEMENT MODAL === */
.announcement-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    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(13, 17, 23, 0.85);
    backdrop-filter: blur(5px);
}

.announcement-content {
    position: relative;
    background: linear-gradient(135deg, #151B25, #1A2332);
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-radius: 16px;
    padding: 35px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 0 40px rgba(74, 111, 165, 0.2);
    animation: modalSlideIn 0.4s ease;
}

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

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

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

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

.announcement-header-icon i {
    font-size: 40px;
    color: #4A6FA5;
    filter: drop-shadow(0 0 10px rgba(74, 111, 165, 0.5));
}

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

.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(74, 111, 165, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(192, 192, 192, 0.08);
    transition: all 0.3s ease;
    color: #F0F0F0;
}

.announcement-item:hover {
    background: rgba(74, 111, 165, 0.15);
    border-color: rgba(192, 192, 192, 0.2);
    color: #fff;
}

.announcement-badge {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    flex-shrink: 0;
}

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

.announcement-badge.new {
    background: linear-gradient(135deg, #4A6FA5, #6B8FC5);
    color: #fff;
}

.announcement-badge.info {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: #fff;
}

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

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

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

.announcement-cta {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(135deg, #4A6FA5, #6B8FC5);
    border-radius: 8px;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
}

.announcement-cta:hover {
    background: linear-gradient(135deg, #5A7FB5, #7BA3D4);
    box-shadow: 0 0 25px rgba(74, 111, 165, 0.4);
    color: #fff;
}

/* === WOLFPLAY HERO SECTION === */
.wolfplay-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, #0D1117 0%, #151B25 50%, #0D1117 100%);
    margin-bottom: 60px;
    border-radius: 0 0 30px 30px;
}

.wolfplay-moon {
    position: absolute;
    top: 40px;
    right: 15%;
    width: 180px;
    height: 180px;
    animation: moonHowl 6s ease-in-out infinite;
}

.moon-glow-outer {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(192, 192, 192, 0.15) 0%, rgba(74, 111, 165, 0.05) 60%, transparent 70%);
}

.moon-disc {
    position: absolute;
    top: 0;
    left: 0;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, #F0F0F0 0%, #C0C0C0 40%, #8899AA 70%, #4A6FA5 100%);
    box-shadow: 0 0 40px rgba(192, 192, 192, 0.3), 0 0 80px rgba(74, 111, 165, 0.15);
}

.moon-glow-inner {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
}

.wolf-silhouette {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    color: #0D1117;
    filter: drop-shadow(0 0 20px rgba(74, 111, 165, 0.3));
    z-index: 2;
}

.wolf-svg {
    width: 100%;
    height: 100%;
}

.wolf-svg circle {
    animation: wolfEyeGlow 3s ease-in-out infinite;
}

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

.frost-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(192, 192, 192, 0.5);
    border-radius: 50%;
    animation: frostFloat 4s ease-in-out infinite;
}

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

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

.hero-brand {
    display: block;
    font-size: 56px;
    font-weight: 700;
    color: #C0C0C0;
    text-shadow: 0 0 30px rgba(192, 192, 192, 0.3);
    letter-spacing: 8px;
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(90deg, #C0C0C0, #F0F0F0, #C0C0C0);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: silverShimmer 4s linear infinite;
}

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

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

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

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

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

.hero-stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #C0C0C0;
    font-family: 'Space Grotesk', sans-serif;
}

.hero-stat-label {
    font-size: 13px;
    color: rgba(240, 240, 240, 0.6);
}

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

.btn-silver-primary {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, #4A6FA5, #6B8FC5);
    border-radius: 8px;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
    border: none;
    cursor: pointer;
}

.btn-silver-primary:hover {
    background: linear-gradient(135deg, #5A7FB5, #7BA3D4);
    box-shadow: 0 0 25px rgba(74, 111, 165, 0.4);
    transform: translateY(-2px);
    color: #fff;
}

.btn-outline-silver {
    display: inline-block;
    padding: 14px 35px;
    border: 2px solid #C0C0C0;
    border-radius: 8px;
    color: #C0C0C0;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
    background: transparent;
}

.btn-outline-silver:hover {
    background: rgba(192, 192, 192, 0.1);
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.2);
    color: #fff;
}

.paw-trail-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 3;
}

.paw-mark {
    width: 12px;
    height: 12px;
    background: rgba(192, 192, 192, 0.3);
    border-radius: 50%;
    animation: pawAppear 0.6s ease forwards;
}

.paw-mark:nth-child(1) { animation-delay: 0.1s; }
.paw-mark:nth-child(2) { animation-delay: 0.3s; }
.paw-mark:nth-child(3) { animation-delay: 0.5s; }
.paw-mark:nth-child(4) { animation-delay: 0.7s; }
.paw-mark:nth-child(5) { animation-delay: 0.9s; }

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

.section-title i {
    margin-right: 10px;
    color: #4A6FA5;
}

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

/* === WOLFPACK GAMES SECTION === */
.wolfpack-games {
    padding: 60px 0;
}

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

.wolfpack-card {
    position: relative;
    background: linear-gradient(135deg, rgba(21, 27, 37, 0.9), rgba(26, 35, 50, 0.9));
    border: 1px solid rgba(192, 192, 192, 0.1);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s ease;
    display: block;
    color: #F0F0F0;
    overflow: hidden;
}

.wolfpack-card:hover {
    transform: translateY(-8px);
    border-color: rgba(74, 111, 165, 0.4);
    box-shadow: 0 15px 40px rgba(74, 111, 165, 0.15);
    color: #fff;
}

.wolfpack-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(74, 111, 165, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.wolfpack-card:hover .wolfpack-card-glow {
    opacity: 1;
}

.wolfpack-card-icon {
    font-size: 40px;
    color: #4A6FA5;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(74, 111, 165, 0.3));
}

.wolfpack-card-rating {
    margin-bottom: 12px;
    color: #C0C0C0;
    font-size: 12px;
}

.wolfpack-card-rating i {
    margin: 0 1px;
}

.wolfpack-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #C0C0C0;
    font-family: 'Space Grotesk', sans-serif;
}

.wolfpack-card p {
    font-size: 13px;
    color: rgba(240, 240, 240, 0.7);
    line-height: 1.6;
    margin-bottom: 15px;
}

.wolfpack-card-players {
    font-size: 12px;
    color: #4A6FA5;
    font-weight: 600;
}

.wolfpack-card-players i {
    margin-right: 5px;
}

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

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

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

.wolf-grid-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px 15px;
    background: linear-gradient(135deg, rgba(21, 27, 37, 0.8), rgba(26, 35, 50, 0.8));
    border: 1px solid rgba(192, 192, 192, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
    color: #F0F0F0;
}

.wolf-grid-node:hover {
    border-color: rgba(74, 111, 165, 0.3);
    background: linear-gradient(135deg, rgba(74, 111, 165, 0.1), rgba(26, 35, 50, 0.9));
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(74, 111, 165, 0.1);
    color: #fff;
}

.node-paw {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 111, 165, 0.15);
    border-radius: 50%;
    color: #4A6FA5;
    font-size: 20px;
    transition: all 0.3s ease;
}

.wolf-grid-node:hover .node-paw {
    background: rgba(74, 111, 165, 0.3);
    box-shadow: 0 0 15px rgba(74, 111, 165, 0.3);
}

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

/* === WOLF FEATURES SECTION === */
.wolf-features {
    padding: 60px 0;
}

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

.wolf-feature-card {
    background: linear-gradient(135deg, rgba(21, 27, 37, 0.9), rgba(26, 35, 50, 0.9));
    border: 1px solid rgba(192, 192, 192, 0.08);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
}

.wolf-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(74, 111, 165, 0.3);
    box-shadow: 0 12px 35px rgba(74, 111, 165, 0.1);
}

.wolf-feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 111, 165, 0.12);
    border-radius: 50%;
    font-size: 28px;
    color: #4A6FA5;
    transition: all 0.3s ease;
}

.wolf-feature-card:hover .wolf-feature-icon {
    background: rgba(74, 111, 165, 0.2);
    box-shadow: 0 0 20px rgba(74, 111, 165, 0.2);
}

.wolf-feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #C0C0C0;
    font-family: 'Space Grotesk', sans-serif;
}

.wolf-feature-card p {
    font-size: 13px;
    color: rgba(240, 240, 240, 0.65);
    line-height: 1.7;
}

/* === WOLF STATS SECTION === */
.wolf-stats {
    position: relative;
    padding: 60px 0;
    margin: 40px 0;
}

.wolf-stats-bg {
    position: absolute;
    top: 0;
    left: -50px;
    right: -50px;
    bottom: 0;
    background: linear-gradient(135deg, rgba(21, 27, 37, 0.95), rgba(26, 35, 50, 0.95));
    border-radius: 20px;
    border: 1px solid rgba(192, 192, 192, 0.08);
    z-index: 0;
}

.frost-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(74, 111, 165, 0.05) 0%, transparent 60%);
    border-radius: 20px;
}

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

.wolf-stat-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(13, 17, 23, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(192, 192, 192, 0.06);
    transition: all 0.3s ease;
}

.wolf-stat-card:hover {
    border-color: rgba(74, 111, 165, 0.2);
    transform: translateY(-4px);
}

.stat-paw-decoration {
    color: rgba(74, 111, 165, 0.3);
    font-size: 16px;
    margin-bottom: 10px;
}

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

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

.stat-label {
    font-size: 13px;
    color: rgba(240, 240, 240, 0.6);
    font-weight: 500;
}

/* === WOLF PROMOTIONS SECTION === */
.wolf-promos {
    padding: 60px 0;
}

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

.wolf-promo-card {
    position: relative;
    background: linear-gradient(135deg, rgba(21, 27, 37, 0.95), rgba(26, 35, 50, 0.95));
    border: 1px solid rgba(192, 192, 192, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.wolf-promo-card:hover {
    transform: translateY(-6px);
    border-color: rgba(74, 111, 165, 0.3);
    box-shadow: 0 15px 40px rgba(74, 111, 165, 0.12);
}

.promo-frost-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(74, 111, 165, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

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

.promo-icon {
    font-size: 36px;
    color: #4A6FA5;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 8px rgba(74, 111, 165, 0.3));
}

.wolf-promo-inner h3 {
    font-size: 18px;
    font-weight: 700;
    color: #C0C0C0;
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
}

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

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

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

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

.promo-badge.new {
    background: linear-gradient(135deg, #4A6FA5, #6B8FC5);
    color: #fff;
}

.promo-badge.vip {
    background: linear-gradient(135deg, #C0C0C0, #8899AA);
    color: #0D1117;
}

.btn-promo {
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(135deg, #4A6FA5, #6B8FC5);
    border-radius: 8px;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
}

.btn-promo:hover {
    background: linear-gradient(135deg, #5A7FB5, #7BA3D4);
    box-shadow: 0 0 20px rgba(74, 111, 165, 0.3);
    color: #fff;
}

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

.footer-cta-frost {
    position: absolute;
    top: 0;
    left: -50px;
    right: -50px;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 111, 165, 0.08), rgba(21, 27, 37, 0.95));
    border-radius: 20px;
    border: 1px solid rgba(192, 192, 192, 0.08);
    z-index: 0;
}

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

.cta-moon-decoration {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    position: relative;
    animation: moonGlowPulse 4s ease-in-out infinite;
}

.cta-moon-outer {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, #F0F0F0, #C0C0C0 50%, #4A6FA5 100%);
    box-shadow: 0 0 25px rgba(192, 192, 192, 0.2);
}

.cta-moon-inner {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
}

.footer-cta-inner h2 {
    font-size: 32px;
    font-weight: 700;
    color: #C0C0C0;
    margin-bottom: 15px;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-cta-inner p {
    font-size: 16px;
    color: rgba(240, 240, 240, 0.7);
    max-width: 600px;
    margin: 0 auto 25px;
    line-height: 1.7;
}

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

.cta-feature {
    font-size: 14px;
    color: rgba(240, 240, 240, 0.7);
    font-weight: 500;
}

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

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

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

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

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

.article-card {
    background: linear-gradient(135deg, rgba(21, 27, 37, 0.9), rgba(26, 35, 50, 0.9));
    border: 1px solid rgba(192, 192, 192, 0.08);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
    color: #F0F0F0;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: rgba(74, 111, 165, 0.3);
    box-shadow: 0 10px 30px rgba(74, 111, 165, 0.1);
    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;
}

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

.article-card-title {
    padding: 15px 18px 8px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    font-family: 'Space Grotesk', sans-serif;
}

.article-card-title a {
    color: #C0C0C0;
    transition: color 0.3s;
}

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

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

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

.article-card-excerpt {
    padding: 10px 18px 18px;
    font-size: 13px;
    color: rgba(240, 240, 240, 0.6);
    line-height: 1.6;
}

.article-card-more {
    display: inline-block;
    padding: 8px 18px;
    margin: 0 18px 18px;
    font-size: 12px;
    font-weight: 600;
    color: #4A6FA5;
    border: 1px solid rgba(74, 111, 165, 0.3);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.article-card-more:hover {
    background: rgba(74, 111, 165, 0.1);
    color: #7BA3D4;
}

.view-more-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
}

.silver-view-more {
    color: #C0C0C0;
}

.view-more-btn:hover {
    background: rgba(192, 192, 192, 0.1);
    border-color: #C0C0C0;
    color: #fff;
}

/* === FOOTER === */
.site-footer {
    background: linear-gradient(180deg, rgba(13, 17, 23, 0.98), #080B10);
    border-top: 1px solid rgba(192, 192, 192, 0.1);
    padding: 50px 0 30px;
    margin-top: 60px;
}

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

.footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    color: #C0C0C0;
    margin-bottom: 18px;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 1px;
}

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

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

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

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

.footer-brand-logo img {
    height: 45px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 5px rgba(192, 192, 192, 0.2));
}

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

.footer-18plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(231, 76, 60, 0.15);
    border: 1px solid rgba(231, 76, 60, 0.3);
    border-radius: 8px;
    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;
    background: rgba(74, 111, 165, 0.1);
    border: 1px solid rgba(192, 192, 192, 0.1);
    border-radius: 8px;
    color: #C0C0C0;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background: rgba(74, 111, 165, 0.2);
    border-color: #4A6FA5;
    color: #fff;
}

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

.footer-license-bar h4 {
    font-size: 14px;
    font-weight: 700;
    color: #C0C0C0;
    margin-bottom: 15px;
    font-family: 'Space Grotesk', sans-serif;
}

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

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

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

.license-item span {
    font-size: 11px;
    color: rgba(240, 240, 240, 0.5);
    font-weight: 600;
}

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

.footer-copyright {
    font-size: 13px;
    color: rgba(240, 240, 240, 0.4);
}

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

.breadcrumb a {
    color: #4A6FA5;
}

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

.breadcrumb span {
    color: rgba(240, 240, 240, 0.3);
}

/* === CONTENT AREA === */
.content-area {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

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

/* === CATEGORY HEADER === */
.category-header {
    margin-bottom: 30px;
}

.category-title {
    font-size: 26px;
    font-weight: 700;
    color: #C0C0C0;
    font-family: 'Space Grotesk', sans-serif;
}

.category-title i {
    color: #4A6FA5;
}

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

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

.provider-tab {
    padding: 8px 18px;
    background: rgba(74, 111, 165, 0.08);
    border: 1px solid rgba(192, 192, 192, 0.1);
    border-radius: 20px;
    color: rgba(240, 240, 240, 0.6);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
}

.provider-tab:hover {
    background: rgba(74, 111, 165, 0.15);
    color: #C0C0C0;
}

.provider-tab.active {
    background: linear-gradient(135deg, #4A6FA5, #6B8FC5);
    color: #fff;
    border-color: #4A6FA5;
}

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

/* === SINGLE ARTICLE === */
.single-article {
    background: linear-gradient(135deg, rgba(21, 27, 37, 0.8), rgba(26, 35, 50, 0.8));
    border: 1px solid rgba(192, 192, 192, 0.08);
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 40px;
}

.article-title {
    font-size: 28px;
    font-weight: 700;
    color: #C0C0C0;
    margin-bottom: 15px;
    font-family: 'Space Grotesk', sans-serif;
}

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

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

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

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

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

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

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

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

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

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

.article-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid rgba(192, 192, 192, 0.08);
    margin-top: 25px;
}

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

.article-tags span {
    padding: 4px 12px;
    background: rgba(74, 111, 165, 0.1);
    border-radius: 15px;
    font-size: 12px;
    color: #C0C0C0;
}

.article-nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid rgba(192, 192, 192, 0.08);
}

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

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

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

.related-posts-title {
    font-size: 20px;
    font-weight: 700;
    color: #C0C0C0;
    margin-bottom: 20px;
    font-family: 'Space Grotesk', sans-serif;
}

.related-posts-title i {
    color: #4A6FA5;
}

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

.related-item {
    background: linear-gradient(135deg, rgba(21, 27, 37, 0.8), rgba(26, 35, 50, 0.8));
    border: 1px solid rgba(192, 192, 192, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
    color: #F0F0F0;
}

.related-item:hover {
    transform: translateY(-3px);
    border-color: rgba(74, 111, 165, 0.2);
    color: #fff;
}

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

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

.related-item-title {
    padding: 12px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    font-family: 'Space Grotesk', sans-serif;
}

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

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

.pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(74, 111, 165, 0.08);
    border: 1px solid rgba(192, 192, 192, 0.1);
    border-radius: 8px;
    color: #C0C0C0;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* === NO POSTS === */
.no-posts {
    text-align: center;
    padding: 60px 20px;
    color: rgba(240, 240, 240, 0.5);
}

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

.error-wolf {
    font-size: 80px;
    color: #4A6FA5;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(74, 111, 165, 0.3));
}

.error-code {
    font-size: 100px;
    font-weight: 700;
    color: #C0C0C0;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
    margin-bottom: 15px;
}

.error-title {
    font-size: 24px;
    font-weight: 700;
    color: #C0C0C0;
    margin-bottom: 15px;
    font-family: 'Space Grotesk', sans-serif;
}

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

/* === PAGE ARTICLE === */
.page-article {
    background: linear-gradient(135deg, rgba(21, 27, 37, 0.8), rgba(26, 35, 50, 0.8));
    border: 1px solid rgba(192, 192, 192, 0.08);
    border-radius: 16px;
    padding: 35px;
}

.page-title {
    font-size: 28px;
    font-weight: 700;
    color: #C0C0C0;
    margin-bottom: 25px;
    font-family: 'Space Grotesk', sans-serif;
}

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

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

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

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

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(21, 27, 37, 0.95), rgba(26, 35, 50, 0.95));
    border: 1px solid rgba(192, 192, 192, 0.15);
    border-radius: 10px;
    color: #C0C0C0;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.sidebar-btn:hover {
    background: rgba(74, 111, 165, 0.2);
    border-color: #4A6FA5;
    color: #fff;
    transform: scale(1.1);
}

.sidebar-btn-facebook:hover {
    background: rgba(24, 119, 242, 0.2);
    border-color: #1877f2;
}

.sidebar-btn-telegram:hover {
    background: rgba(0, 136, 204, 0.2);
    border-color: #0088cc;
}

.sidebar-label {
    display: none;
}

/* === SCROLL ANIMATIONS === */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}
