/* ============================================
   WOLFPLAY THEME - responsive.css (moban-63)
   Responsive Breakpoints: 1024px, 768px, 480px
   ============================================ */

/* === TABLET: max-width 1024px === */
@media (max-width: 1024px) {
    .container {
        max-width: 960px;
        padding: 0 20px;
    }

    /* Header */
    .header-top {
        flex-wrap: wrap;
        gap: 10px;
    }

    .header-time {
        display: none;
    }

    .header-btn-group {
        gap: 8px;
    }

    .btn-login,
    .btn-register,
    .btn-demo {
        padding: 7px 14px;
        font-size: 12px;
    }

    /* Navigation */
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 3px;
    }

    .nav-link {
        padding: 10px 12px;
        font-size: 12px;
    }

    /* Hero */
    .wolfplay-hero {
        min-height: 500px;
    }

    .wolfplay-moon {
        width: 140px;
        height: 140px;
        top: 30px;
        right: 10%;
    }

    .moon-glow-outer {
        width: 190px;
        height: 190px;
        top: -25px;
        left: -25px;
    }

    .moon-disc {
        width: 140px;
        height: 140px;
    }

    .moon-glow-inner {
        width: 110px;
        height: 110px;
        top: 15px;
        left: 15px;
    }

    .wolf-silhouette {
        width: 160px;
        height: 160px;
        bottom: 60px;
    }

    .hero-brand {
        font-size: 42px;
        letter-spacing: 5px;
    }

    .hero-tagline {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .hero-description {
        font-size: 14px;
        max-width: 500px;
    }

    .hero-stats-row {
        gap: 25px;
    }

    .hero-stat-number {
        font-size: 24px;
    }

    /* Wolfpack Games */
    .wolfpack-games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Wolf Grid */
    .wolf-grid-row {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }

    .wolf-grid-node {
        padding: 20px 10px;
    }

    .node-paw {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .node-label {
        font-size: 11px;
    }

    /* Features */
    .wolf-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Stats */
    .wolf-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 30px;
    }

    /* Promos */
    .wolf-promos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    /* Footer */
    .footer-columns-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* News */
    .home-news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .home-news-placeholder {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Article Grid */
    .article-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Related Posts */
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* Single Article */
    .single-article {
        padding: 25px;
    }

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

    /* CTA */
    .footer-cta-inner h2 {
        font-size: 26px;
    }

    .cta-features {
        gap: 20px;
    }

    /* Section Titles */
    .section-title {
        font-size: 24px;
    }

    /* Floating Sidebar */
    .floating-sidebar {
        right: 10px;
    }

    .sidebar-btn {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    /* License */
    .license-icons {
        gap: 15px;
    }
}

/* === MOBILE: max-width 768px === */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Header */
    .header-top {
        padding: 10px 0;
    }

    .logo img {
        height: 40px;
    }

    .header-btn-group {
        gap: 6px;
    }

    .btn-login,
    .btn-register,
    .btn-demo {
        padding: 6px 12px;
        font-size: 11px;
    }

    /* Mobile Menu */
    .mobile-menu-toggle {
        display: block;
    }

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

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(13, 17, 23, 0.98);
        flex-direction: column;
        padding: 15px;
        gap: 0;
        border-bottom: 1px solid rgba(192, 192, 192, 0.1);
        z-index: 1000;
        max-height: 70vh;
        overflow-y: auto;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 12px 15px;
        font-size: 13px;
        border-bottom: 1px solid rgba(192, 192, 192, 0.05);
    }

    .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    /* Notification Bar */
    .notification-content {
        gap: 30px;
    }

    .notification-content span {
        font-size: 12px;
    }

    /* Hero */
    .wolfplay-hero {
        min-height: 450px;
    }

    .wolfplay-moon {
        width: 100px;
        height: 100px;
        top: 20px;
        right: 5%;
    }

    .moon-glow-outer {
        width: 140px;
        height: 140px;
        top: -20px;
        left: -20px;
    }

    .moon-disc {
        width: 100px;
        height: 100px;
    }

    .moon-glow-inner {
        width: 80px;
        height: 80px;
        top: 10px;
        left: 10px;
    }

    .wolf-silhouette {
        width: 120px;
        height: 120px;
        bottom: 50px;
        opacity: 0.7;
    }

    .hero-brand {
        font-size: 32px;
        letter-spacing: 3px;
    }

    .hero-tagline {
        font-size: 15px;
        letter-spacing: 1px;
    }

    .hero-description {
        font-size: 13px;
        padding: 0 10px;
    }

    .hero-stats-row {
        gap: 15px;
        flex-wrap: wrap;
    }

    .hero-stat {
        min-width: 70px;
    }

    .hero-stat-number {
        font-size: 20px;
    }

    .hero-stat-label {
        font-size: 11px;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .btn-silver-primary,
    .btn-outline-silver {
        padding: 12px 30px;
        font-size: 14px;
        width: 80%;
        text-align: center;
    }

    .paw-trail-nav {
        gap: 12px;
    }

    .paw-mark {
        width: 8px;
        height: 8px;
    }

    /* Section Titles */
    .section-title {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .section-subtitle {
        font-size: 13px;
        margin-bottom: 25px;
    }

    /* Wolfpack Games */
    .wolfpack-games-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .wolfpack-card {
        padding: 25px 20px;
    }

    .wolfpack-card-icon {
        font-size: 32px;
    }

    /* Wolf Grid */
    .wolf-grid-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .wolf-grid-node {
        padding: 18px 10px;
    }

    .node-paw {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .node-label {
        font-size: 11px;
    }

    /* Features */
    .wolf-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .wolf-feature-card {
        padding: 25px 20px;
    }

    .wolf-feature-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    /* Stats */
    .wolf-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .wolf-stat-card {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 26px;
    }

    .stat-label {
        font-size: 11px;
    }

    .stat-paw-decoration {
        font-size: 12px;
    }

    .wolf-stats-bg {
        left: -15px;
        right: -15px;
    }

    /* Promos */
    .wolf-promos-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .wolf-promo-inner {
        padding: 25px 20px;
    }

    .promo-icon {
        font-size: 28px;
    }

    .wolf-promo-inner h3 {
        font-size: 16px;
    }

    /* Footer CTA */
    .footer-cta-section {
        padding: 50px 0;
    }

    .footer-cta-inner h2 {
        font-size: 22px;
    }

    .footer-cta-inner p {
        font-size: 14px;
    }

    .cta-features {
        flex-direction: column;
        gap: 10px;
    }

    .cta-feature {
        font-size: 13px;
    }

    .cta-moon-decoration {
        width: 60px;
        height: 60px;
    }

    .cta-moon-outer {
        width: 60px;
        height: 60px;
    }

    .cta-moon-inner {
        width: 45px;
        height: 45px;
        top: 8px;
        left: 8px;
    }

    .cta-main-btn {
        padding: 14px 35px;
        font-size: 14px;
    }

    /* News */
    .home-news-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .home-news-placeholder {
        grid-template-columns: 1fr;
    }

    .article-card-thumb {
        height: 160px;
    }

    /* Footer */
    .footer-columns-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-col h4 {
        font-size: 14px;
        margin-bottom: 12px;
    }

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

    .footer-license-bar {
        padding: 20px 0;
    }

    .license-icons {
        gap: 12px;
    }

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

    .license-item span {
        font-size: 10px;
    }

    /* Article Grid */
    .article-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

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

    /* Single Article */
    .single-article {
        padding: 20px;
        border-radius: 12px;
    }

    .article-title {
        font-size: 20px;
    }

    .article-meta {
        gap: 12px;
        font-size: 12px;
    }

    .article-content {
        font-size: 14px;
    }

    .article-nav {
        flex-direction: column;
        gap: 10px;
    }

    /* Related Posts */
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

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

    .related-item-title {
        font-size: 12px;
        padding: 10px;
    }

    .related-posts-title {
        font-size: 18px;
    }

    /* Category */
    .category-title {
        font-size: 22px;
    }

    .provider-tabs {
        gap: 6px;
    }

    .provider-tab {
        padding: 6px 14px;
        font-size: 12px;
    }

    /* Error Page */
    .error-code {
        font-size: 70px;
    }

    .error-title {
        font-size: 20px;
    }

    .error-wolf {
        font-size: 60px;
    }

    /* Page */
    .page-article {
        padding: 20px;
    }

    .page-title {
        font-size: 22px;
    }

    /* Floating Sidebar */
    .floating-sidebar {
        right: 8px;
        gap: 6px;
    }

    .sidebar-btn {
        width: 36px;
        height: 36px;
        font-size: 13px;
        border-radius: 8px;
    }

    /* Pagination */
    .pagination .page-numbers {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    /* Announcement Modal */
    .announcement-content {
        padding: 25px 20px;
        width: 95%;
    }

    .announcement-title {
        font-size: 17px;
    }

    .announcement-header-icon i {
        font-size: 32px;
    }

    .announcement-item {
        padding: 10px 12px;
    }

    .announcement-text {
        font-size: 12px;
    }

    .announcement-cta {
        padding: 10px 30px;
        font-size: 14px;
    }

    /* Breadcrumb */
    .breadcrumb {
        font-size: 12px;
        padding: 15px 0;
    }

    /* Wolfpack Games Section Padding */
    .wolfpack-games,
    .wolf-grid-section,
    .wolf-features,
    .wolf-stats,
    .wolf-promos,
    .home-news-section {
        padding: 40px 0;
    }
}

/* === SMALL MOBILE: max-width 480px === */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    /* Header */
    .logo img {
        height: 35px;
    }

    .btn-login,
    .btn-register,
    .btn-demo {
        padding: 5px 10px;
        font-size: 10px;
    }

    .mobile-menu-toggle {
        font-size: 20px;
    }

    /* Hero */
    .wolfplay-hero {
        min-height: 400px;
    }

    .wolfplay-moon {
        width: 80px;
        height: 80px;
        top: 15px;
        right: 3%;
    }

    .moon-glow-outer {
        width: 110px;
        height: 110px;
        top: -15px;
        left: -15px;
    }

    .moon-disc {
        width: 80px;
        height: 80px;
    }

    .moon-glow-inner {
        width: 60px;
        height: 60px;
        top: 10px;
        left: 10px;
    }

    .wolf-silhouette {
        width: 100px;
        height: 100px;
        bottom: 40px;
        opacity: 0.5;
    }

    .hero-brand {
        font-size: 26px;
        letter-spacing: 2px;
    }

    .hero-tagline {
        font-size: 13px;
    }

    .hero-description {
        font-size: 12px;
    }

    .hero-stats-row {
        gap: 10px;
    }

    .hero-stat-number {
        font-size: 18px;
    }

    .hero-stat-label {
        font-size: 10px;
    }

    .btn-silver-primary,
    .btn-outline-silver {
        padding: 10px 20px;
        font-size: 13px;
        width: 90%;
    }

    /* Section Titles */
    .section-title {
        font-size: 18px;
    }

    .section-subtitle {
        font-size: 12px;
    }

    /* Wolf Grid */
    .wolf-grid-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .wolf-grid-node {
        padding: 15px 8px;
    }

    .node-paw {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .node-label {
        font-size: 10px;
    }

    /* Stats */
    .wolf-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .stat-number {
        font-size: 22px;
    }

    .stat-label {
        font-size: 10px;
    }

    /* News Cards */
    .article-card-thumb {
        height: 140px;
    }

    .article-card-title {
        font-size: 14px;
        padding: 12px 15px 6px;
    }

    .article-card-meta {
        padding: 0 15px;
        font-size: 11px;
    }

    .article-card-excerpt {
        padding: 8px 15px 15px;
        font-size: 12px;
    }

    /* Footer */
    .footer-copyright {
        font-size: 11px;
    }

    .footer-brand-text {
        font-size: 12px;
    }

    .footer-social-links a {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    /* Single Article */
    .article-title {
        font-size: 18px;
    }

    .article-content {
        font-size: 13px;
    }

    .article-tags {
        gap: 6px;
    }

    .article-tags span {
        font-size: 11px;
        padding: 3px 10px;
    }

    /* Related Posts */
    .related-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .related-item-thumb {
        height: 80px;
    }

    .related-item-title {
        font-size: 11px;
        padding: 8px;
    }

    /* Category */
    .category-title {
        font-size: 18px;
    }

    .provider-tabs {
        gap: 5px;
    }

    .provider-tab {
        padding: 5px 12px;
        font-size: 11px;
    }

    /* Error Page */
    .error-code {
        font-size: 60px;
    }

    .error-title {
        font-size: 18px;
    }

    .error-desc {
        font-size: 13px;
    }

    .error-wolf {
        font-size: 50px;
    }

    /* Announcement Modal */
    .announcement-content {
        padding: 20px 15px;
    }

    .announcement-title {
        font-size: 15px;
    }

    .announcement-header-icon i {
        font-size: 28px;
    }

    /* Floating Sidebar */
    .floating-sidebar {
        right: 5px;
    }

    .sidebar-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    /* Page */
    .page-title {
        font-size: 18px;
    }

    .page-content {
        font-size: 13px;
    }

    /* Wolf Features */
    .wolf-feature-card h3 {
        font-size: 15px;
    }

    .wolf-feature-card p {
        font-size: 12px;
    }

    /* Promo Cards */
    .wolf-promo-inner h3 {
        font-size: 15px;
    }

    .wolf-promo-inner p {
        font-size: 12px;
    }

    .btn-promo {
        padding: 8px 24px;
        font-size: 12px;
    }

    /* Footer CTA */
    .footer-cta-inner h2 {
        font-size: 18px;
    }

    .footer-cta-inner p {
        font-size: 13px;
    }

    /* Wolfpack Card */
    .wolfpack-card h3 {
        font-size: 16px;
    }

    .wolfpack-card p {
        font-size: 12px;
    }

    .wolfpack-card-icon {
        font-size: 28px;
    }

    /* Notification */
    .notification-content span {
        font-size: 11px;
    }

    /* View More Button */
    .view-more-btn {
        padding: 10px 24px;
        font-size: 13px;
    }

    /* Pagination */
    .pagination .page-numbers {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}
