/* ============================================
   FALCONBET THEME - responsive.css (moban-67)
   Responsive breakpoints: 1024px, 768px, 480px
   ============================================ */

/* === TABLET LANDSCAPE (max-width: 1024px) === */
@media (max-width: 1024px) {
    
    /* === HEADER === */
    .header-top {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .header-time {
        order: 3;
        width: 100%;
        text-align: center;
        font-size: 12px;
    }
    
    .header-btn-group {
        gap: 8px;
    }
    
    .btn-login,
    .btn-register,
    .btn-demo {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    /* === NAVIGATION === */
    .nav-link {
        padding: 12px 12px;
        font-size: 13px;
    }
    
    /* === HERO === */
    .falcon-hero {
        min-height: 600px;
    }
    
    .hero-brand {
        font-size: 56px;
        letter-spacing: 5px;
    }
    
    .hero-tagline {
        font-size: 20px;
        letter-spacing: 2px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-stats-row {
        gap: 25px;
    }
    
    .hero-stat-number {
        font-size: 28px;
    }
    
    .hero-stat-label {
        font-size: 12px;
    }
    
    /* === FALCON GAMES === */
    .falcon-games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .falcon-game-card {
        padding: 25px 20px;
    }
    
    .falcon-game-icon {
        font-size: 36px;
    }
    
    .falcon-game-card h3 {
        font-size: 18px;
    }
    
    /* === FALCON GRID === */
    .falcon-grid-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .falcon-grid-node {
        padding: 20px 10px;
    }
    
    .node-talon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .node-label {
        font-size: 12px;
    }
    
    /* === FEATURES === */
    .falcon-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .falcon-feature-card {
        padding: 25px 20px;
    }
    
    .falcon-feature-card h3 {
        font-size: 18px;
    }
    
    /* === STATS === */
    .falcon-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 34px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    /* === PROMOTIONS === */
    .falcon-promos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .falcon-promo-inner {
        padding: 25px 20px;
    }
    
    .falcon-promo-inner h3 {
        font-size: 18px;
    }
    
    /* === NEWS === */
    .home-news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .article-card-thumb {
        height: 180px;
    }
    
    .article-card-title {
        font-size: 15px;
        padding: 15px 15px 6px;
    }
    
    /* === FOOTER === */
    .footer-columns-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-col h4 {
        font-size: 16px;
    }
    
    .footer-col ul li {
        margin-bottom: 8px;
    }
    
    .license-icons {
        gap: 20px;
    }
    
    /* === ARTICLE GRID === */
    .article-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* === RELATED POSTS === */
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* === SECTION TITLES === */
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 14px;
        margin-bottom: 35px;
    }
    
    /* === FLOATING SIDEBAR === */
    .floating-sidebar {
        right: 10px;
    }
    
    .sidebar-btn {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
    
    /* === CTA SECTION === */
    .footer-cta-inner h2 {
        font-size: 28px;
    }
    
    .footer-cta-inner p {
        font-size: 16px;
    }
    
    .cta-features {
        gap: 20px;
    }
    
    /* === SINGLE ARTICLE === */
    .single-article {
        padding: 25px;
    }
    
    .article-title {
        font-size: 26px;
    }
    
    /* === PAGE ARTICLE === */
    .page-article {
        padding: 25px;
    }
    
    .page-title {
        font-size: 26px;
    }
    
    /* === ERROR PAGE === */
    .error-code {
        font-size: 80px;
    }
    
    .error-title {
        font-size: 22px;
    }
}

/* === TABLET PORTRAIT (max-width: 768px) === */
@media (max-width: 768px) {
    
    /* === GENERAL === */
    .container {
        padding: 0 12px;
    }
    
    /* === HEADER === */
    .site-header {
        position: sticky;
    }
    
    .header-top {
        padding: 10px 0;
    }
    
    .logo img {
        height: 40px;
    }
    
    .header-btn-group .btn-demo {
        display: none;
    }
    
    .btn-login,
    .btn-register {
        padding: 8px 12px;
        font-size: 11px;
    }
    
    /* === MOBILE NAVIGATION === */
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-navigation {
        position: relative;
    }
    
    .main-navigation .container {
        position: relative;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #0f1923;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 100;
        border-top: 1px solid rgba(30, 64, 175, 0.3);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-item {
        border-bottom: 1px solid rgba(30, 64, 175, 0.1);
    }
    
    .nav-link {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .nav-link:hover {
        background: rgba(30, 64, 175, 0.1);
    }
    
    /* === NOTIFICATION BAR === */
    .notification-content {
        font-size: 12px;
        gap: 30px;
    }
    
    /* === HERO === */
    .falcon-hero {
        min-height: 550px;
    }
    
    .falcon-diving {
        top: 10%;
    }
    
    .falcon-body {
        width: 80px;
        height: 60px;
    }
    
    .falcon-wing {
        width: 60px;
        height: 25px;
    }
    
    .hero-brand {
        font-size: 42px;
        letter-spacing: 3px;
    }
    
    .hero-tagline {
        font-size: 16px;
        letter-spacing: 1px;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .hero-stats-row {
        gap: 15px;
    }
    
    .hero-stat-number {
        font-size: 24px;
    }
    
    .hero-stat-label {
        font-size: 11px;
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-blue-primary,
    .btn-outline-blue {
        padding: 12px 30px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }
    
    .speed-line {
        opacity: 0.5;
    }
    
    /* === SECTIONS PADDING === */
    .falcon-games,
    .falcon-grid,
    .falcon-features,
    .falcon-stats,
    .falcon-promos,
    .home-news-section,
    .footer-cta-section {
        padding: 50px 0;
    }
    
    /* === FALCON GAMES === */
    .falcon-games-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .falcon-game-card {
        padding: 25px;
    }
    
    .falcon-game-icon {
        font-size: 40px;
    }
    
    /* === FALCON GRID === */
    .falcon-grid-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .falcon-grid-node {
        padding: 18px 8px;
    }
    
    .node-talon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .node-label {
        font-size: 11px;
    }
    
    /* === FEATURES === */
    .falcon-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .falcon-feature-card {
        padding: 25px;
    }
    
    /* === STATS === */
    .falcon-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .falcon-stat-card {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    /* === PROMOTIONS === */
    .falcon-promos-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .falcon-promo-inner {
        padding: 25px;
    }
    
    /* === NEWS === */
    .home-news-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .article-card-thumb {
        height: 200px;
    }
    
    .article-card-title {
        font-size: 16px;
        padding: 15px;
    }
    
    .article-card-excerpt {
        padding: 8px 15px 15px;
    }
    
    .article-card-meta {
        padding: 0 15px;
    }
    
    /* === FOOTER === */
    .site-footer {
        padding: 40px 0 20px;
    }
    
    .footer-columns-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-col h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-brand-text {
        font-size: 13px;
    }
    
    .footer-social-links {
        gap: 10px;
    }
    
    .footer-social-links a {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .license-icons {
        gap: 15px;
    }
    
    .license-item i {
        font-size: 24px;
    }
    
    .license-item span {
        font-size: 11px;
    }
    
    /* === ARTICLE GRID === */
    .article-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* === CONTENT AREA === */
    .content-area {
        padding: 15px 0 40px;
    }
    
    /* === CATEGORY HEADER === */
    .category-title {
        font-size: 24px;
    }
    
    .category-desc {
        font-size: 14px;
    }
    
    /* === PROVIDER TABS === */
    .provider-tabs {
        gap: 8px;
    }
    
    .provider-tab {
        padding: 6px 14px;
        font-size: 12px;
    }
    
    /* === RELATED POSTS === */
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .related-item-thumb {
        height: 100px;
    }
    
    .related-item-title {
        padding: 10px;
        font-size: 13px;
    }
    
    /* === SINGLE ARTICLE === */
    .single-article {
        padding: 20px;
    }
    
    .article-title {
        font-size: 22px;
    }
    
    .article-meta {
        gap: 12px;
        font-size: 12px;
    }
    
    .article-content {
        font-size: 15px;
    }
    
    .article-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    /* === PAGE ARTICLE === */
    .page-article {
        padding: 20px;
    }
    
    .page-title {
        font-size: 22px;
    }
    
    .page-content {
        font-size: 15px;
    }
    
    /* === ERROR PAGE === */
    .error-page {
        padding: 50px 15px;
    }
    
    .error-code {
        font-size: 60px;
    }
    
    .error-title {
        font-size: 18px;
    }
    
    .error-desc {
        font-size: 14px;
    }
    
    /* === FLOATING SIDEBAR === */
    .floating-sidebar {
        right: 8px;
        gap: 6px;
    }
    
    .sidebar-btn {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
    
    /* === CTA SECTION === */
    .footer-cta-inner h2 {
        font-size: 24px;
    }
    
    .footer-cta-inner p {
        font-size: 14px;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-main-btn {
        font-size: 16px;
        padding: 14px 35px;
    }
    
    /* === SECTION TITLES === */
    .section-title {
        font-size: 24px;
        letter-spacing: 2px;
    }
    
    .section-subtitle {
        font-size: 13px;
        margin-bottom: 30px;
    }
    
    /* === ANNOUNCEMENT MODAL === */
    .announcement-content {
        padding: 25px;
    }
    
    .announcement-title {
        font-size: 18px;
    }
    
    .announcement-header-icon {
        font-size: 36px;
    }
    
    .announcement-item {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .announcement-text {
        font-size: 13px;
    }
    
    /* === BREADCRUMB === */
    .breadcrumb {
        font-size: 12px;
        gap: 6px;
    }
    
    /* === PAGINATION === */
    .pagination .page-numbers {
        min-width: 35px;
        height: 35px;
        font-size: 13px;
    }
}

/* === MOBILE (max-width: 480px) === */
@media (max-width: 480px) {
    
    /* === GENERAL === */
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    /* === HEADER === */
    .logo img {
        height: 35px;
    }
    
    .header-time {
        display: none;
    }
    
    .btn-login,
    .btn-register {
        padding: 6px 10px;
        font-size: 10px;
    }
    
    /* === NAVIGATION === */
    .nav-link {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    /* === HERO === */
    .falcon-hero {
        min-height: 500px;
    }
    
    .falcon-diving {
        top: 8%;
    }
    
    .falcon-body {
        width: 60px;
        height: 45px;
    }
    
    .falcon-wing {
        width: 45px;
        height: 20px;
    }
    
    .falcon-tail {
        width: 30px;
        height: 22px;
    }
    
    .hero-brand {
        font-size: 32px;
        letter-spacing: 2px;
    }
    
    .hero-tagline {
        font-size: 13px;
    }
    
    .hero-divider-line {
        width: 60px;
        margin: 12px auto;
    }
    
    .hero-description {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .hero-stats-row {
        gap: 10px;
    }
    
    .hero-stat-number {
        font-size: 20px;
    }
    
    .hero-stat-label {
        font-size: 10px;
    }
    
    .hero-cta-group {
        gap: 8px;
    }
    
    .btn-blue-primary,
    .btn-outline-blue {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .speed-line {
        display: none;
    }
    
    /* === SECTIONS === */
    .falcon-games,
    .falcon-grid,
    .falcon-features,
    .falcon-stats,
    .falcon-promos,
    .home-news-section,
    .footer-cta-section {
        padding: 35px 0;
    }
    
    .section-title {
        font-size: 20px;
        letter-spacing: 1px;
    }
    
    .section-subtitle {
        font-size: 12px;
        margin-bottom: 25px;
    }
    
    /* === FALCON GAMES === */
    .falcon-game-card {
        padding: 20px;
    }
    
    .falcon-game-icon {
        font-size: 32px;
    }
    
    .falcon-game-card h3 {
        font-size: 16px;
    }
    
    .falcon-game-card p {
        font-size: 13px;
    }
    
    .falcon-game-players {
        font-size: 11px;
    }
    
    /* === FALCON GRID === */
    .falcon-grid-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .falcon-grid-node {
        padding: 15px 5px;
    }
    
    .node-talon {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .node-label {
        font-size: 10px;
    }
    
    /* === FEATURES === */
    .falcon-feature-card {
        padding: 20px;
    }
    
    .falcon-feature-card h3 {
        font-size: 16px;
    }
    
    .falcon-feature-card p {
        font-size: 13px;
    }
    
    .talon-icon {
        width: 45px;
        height: 45px;
    }
    
    .talon-icon::before {
        font-size: 18px;
    }
    
    /* === STATS === */
    .falcon-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .falcon-stat-card {
        padding: 20px 10px;
    }
    
    .stat-number {
        font-size: 22px;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .stat-talon-decoration {
        font-size: 14px;
    }
    
    /* === PROMOTIONS === */
    .promo-icon {
        font-size: 30px;
    }
    
    .falcon-promo-inner h3 {
        font-size: 16px;
    }
    
    .falcon-promo-inner p {
        font-size: 13px;
    }
    
    .btn-promo {
        padding: 8px 20px;
        font-size: 12px;
    }
    
    /* === NEWS === */
    .article-card-thumb {
        height: 160px;
    }
    
    .article-card-title {
        font-size: 14px;
        padding: 12px;
    }
    
    .article-card-excerpt {
        font-size: 13px;
        padding: 6px 12px 12px;
    }
    
    .article-card-meta {
        font-size: 11px;
        padding: 0 12px;
    }
    
    .view-more-btn {
        padding: 10px 25px;
        font-size: 12px;
    }
    
    /* === FOOTER === */
    .site-footer {
        padding: 30px 0 15px;
    }
    
    .footer-col h4 {
        font-size: 14px;
    }
    
    .footer-col ul li {
        margin-bottom: 6px;
    }
    
    .footer-col ul li a {
        font-size: 13px;
    }
    
    .footer-brand-logo img {
        height: 35px;
    }
    
    .footer-brand-text {
        font-size: 12px;
    }
    
    .footer-18plus {
        width: 35px;
        height: 35px;
        font-size: 14px;
        line-height: 31px;
    }
    
    .footer-social-links a {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    
    .license-icons {
        gap: 10px;
    }
    
    .license-item i {
        font-size: 20px;
    }
    
    .license-item span {
        font-size: 10px;
    }
    
    .footer-copyright {
        font-size: 12px;
    }
    
    /* === CTA SECTION === */
    .footer-cta-inner h2 {
        font-size: 20px;
    }
    
    .footer-cta-inner p {
        font-size: 13px;
    }
    
    .cta-falcon-wing {
        width: 60px;
        height: 30px;
    }
    
    .cta-main-btn {
        font-size: 14px;
        padding: 12px 25px;
    }
    
    .cta-feature {
        font-size: 12px;
    }
    
    /* === ARTICLE GRID === */
    .article-card-thumb {
        height: 180px;
    }
    
    /* === SINGLE ARTICLE === */
    .single-article {
        padding: 15px;
    }
    
    .article-title {
        font-size: 20px;
    }
    
    .article-meta {
        gap: 8px;
        font-size: 11px;
    }
    
    .article-content {
        font-size: 14px;
    }
    
    .article-tags {
        font-size: 12px;
    }
    
    .article-tags span {
        padding: 4px 8px;
        font-size: 11px;
    }
    
    /* === RELATED POSTS === */
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .related-posts-title {
        font-size: 20px;
    }
    
    .related-item-thumb {
        height: 120px;
    }
    
    /* === PAGE ARTICLE === */
    .page-article {
        padding: 15px;
    }
    
    .page-title {
        font-size: 20px;
    }
    
    .page-content {
        font-size: 14px;
    }
    
    /* === ERROR PAGE === */
    .error-page {
        padding: 40px 10px;
    }
    
    .error-code {
        font-size: 48px;
    }
    
    .error-title {
        font-size: 16px;
    }
    
    .error-desc {
        font-size: 13px;
    }
    
    .error-falcon-wing {
        width: 60px;
        height: 40px;
    }
    
    .btn-blue-primary {
        padding: 10px 25px;
        font-size: 13px;
    }
    
    /* === FLOATING SIDEBAR === */
    .floating-sidebar {
        right: 5px;
        gap: 5px;
    }
    
    .sidebar-btn {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }
    
    /* === PROVIDER TABS === */
    .provider-tabs {
        gap: 5px;
    }
    
    .provider-tab {
        padding: 5px 10px;
        font-size: 11px;
    }
    
    /* === CATEGORY HEADER === */
    .category-title {
        font-size: 20px;
    }
    
    .category-desc {
        font-size: 13px;
    }
    
    /* === BREADCRUMB === */
    .breadcrumb {
        font-size: 11px;
        padding: 10px 0;
    }
    
    /* === PAGINATION === */
    .pagination .page-numbers {
        min-width: 32px;
        height: 32px;
        font-size: 12px;
        padding: 0 8px;
    }
    
    /* === ANNOUNCEMENT MODAL === */
    .announcement-content {
        padding: 20px;
        max-height: 85vh;
    }
    
    .announcement-title {
        font-size: 16px;
        margin-bottom: 18px;
    }
    
    .announcement-header-icon {
        font-size: 30px;
        margin-bottom: 15px;
    }
    
    .announcement-item {
        padding: 8px 10px;
        gap: 8px;
    }
    
    .announcement-text {
        font-size: 12px;
    }
    
    .announcement-badge {
        padding: 3px 8px;
        font-size: 10px;
    }
    
    .announcement-cta {
        padding: 10px 30px;
        font-size: 13px;
    }
}

/* === SMALL MOBILE (max-width: 360px) === */
@media (max-width: 360px) {
    .hero-brand {
        font-size: 28px;
    }
    
    .hero-tagline {
        font-size: 12px;
    }
    
    .hero-stats-row {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-login,
    .btn-register {
        padding: 5px 8px;
        font-size: 9px;
    }
    
    .nav-link {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .floating-sidebar {
        display: none;
    }
}

