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

/* === TABLET LANDSCAPE (max-width: 1024px) === */
@media (max-width: 1024px) {
    /* Header */
    .header-top {
        padding: 12px 0;
    }

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

    .header-time {
        font-size: 12px;
        padding: 6px 12px;
    }

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

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

    /* Navigation */
    .nav-link {
        padding: 10px 12px;
        font-size: 13px;
    }

    /* Hero Section */
    .tiger-hero {
        min-height: 500px;
        padding: 50px 15px;
    }

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

    .hero-tagline {
        font-size: 20px;
        letter-spacing: 3px;
    }

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

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

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

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

    /* Tiger Face */
    .tiger-face-container {
        opacity: 0.2;
    }

    .tiger-face {
        width: 160px;
        height: 145px;
    }

    .tiger-eye {
        width: 32px;
        height: 20px;
        top: 40px;
    }

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

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

    .tiger-power-aura {
        width: 240px;
        height: 240px;
    }

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

    .tiger-game-card {
        padding: 25px 15px;
    }

    .tiger-game-icon i {
        font-size: 36px;
    }

    .tiger-game-card h3 {
        font-size: 18px;
    }

    /* Tiger Grid */
    .tiger-grid-row {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

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

    .grid-node-icon i {
        font-size: 24px;
    }

    .grid-node-label {
        font-size: 12px;
    }

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

    .tiger-feature-card {
        padding: 25px 15px;
    }

    .tiger-feature-card h3 {
        font-size: 16px;
    }

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

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

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

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

    .tiger-promo-inner {
        padding: 25px 15px;
    }

    .tiger-promo-inner h3 {
        font-size: 18px;
    }

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

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

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

    /* Content Area */
    .content-area {
        gap: 20px;
    }

    /* Article Grid */
    .article-grid {
        gap: 20px;
    }

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

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

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

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

    .footer-col h4 {
        font-size: 15px;
    }

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

    .sidebar-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

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

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

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

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

    .cta-features {
        gap: 20px;
    }

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

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

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

    .provider-tabs {
        gap: 6px;
    }

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

    /* Paw Separator */
    .paw-separator {
        gap: 15px;
        padding: 20px 0;
    }

    .paw-print i {
        font-size: 18px;
    }

    /* Announcement Modal */
    .announcement-content {
        max-width: 450px;
        padding: 25px;
    }

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

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

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

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

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

    .license-item {
        font-size: 11px;
    }
}

/* === TABLET PORTRAIT (max-width: 768px) === */
@media (max-width: 768px) {
    /* Base */
    html {
        font-size: 15px;
    }

    body {
        overflow-x: hidden;
    }

    .container {
        padding: 0 12px;
    }

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

    .header-time {
        display: none;
    }

    .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;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1A1A1A;
        border-top: 2px solid #FF6B35;
        z-index: 999;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

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

    .nav-link {
        padding: 14px 20px;
        border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    }

    /* Notification Bar */
    .notification-content {
        font-size: 12px;
        gap: 40px;
    }

    /* Hero Section */
    .tiger-hero {
        min-height: 450px;
        padding: 40px 12px;
    }

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

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

    .hero-description {
        font-size: 14px;
        margin-bottom: 20px;
    }

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

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

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

    .btn-tiger-primary,
    .btn-outline-tiger {
        padding: 12px 35px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    /* Tiger Face (smaller on mobile) */
    .tiger-face-container {
        opacity: 0.15;
    }

    .tiger-face {
        width: 130px;
        height: 120px;
    }

    .tiger-eye {
        width: 26px;
        height: 16px;
        top: 35px;
    }

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

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

    .tiger-eye-pupil {
        width: 8px;
        height: 14px;
    }

    .tiger-nose {
        width: 14px;
        height: 10px;
        bottom: 38px;
    }

    .tiger-whiskers-left,
    .tiger-whiskers-right {
        width: 40px;
        bottom: 42px;
    }

    .tiger-power-aura {
        width: 200px;
        height: 200px;
    }

    /* Tiger Games Grid */
    .tiger-games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .tiger-game-card {
        padding: 20px 12px;
    }

    .tiger-game-icon i {
        font-size: 32px;
    }

    .tiger-game-card h3 {
        font-size: 16px;
    }

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

    .tiger-game-players {
        font-size: 11px;
    }

    /* Tiger Grid */
    .tiger-grid-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .tiger-grid-node {
        padding: 12px 8px;
    }

    .grid-node-icon i {
        font-size: 22px;
    }

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

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

    .tiger-feature-card {
        padding: 20px 12px;
    }

    .tiger-feature-card h3 {
        font-size: 15px;
    }

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

    .tiger-paw-icon {
        width: 50px;
        height: 50px;
    }

    .tiger-paw-icon::before {
        font-size: 24px;
    }

    /* Tiger Stats */
    .tiger-stats {
        padding: 40px 0;
    }

    .tiger-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .tiger-stat-card {
        padding: 20px 10px;
    }

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

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

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

    /* Tiger Promos */
    .tiger-promos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .tiger-promo-inner h3 {
        font-size: 20px;
    }

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

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

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

    /* Content Area */
    .content-area {
        flex-direction: column;
    }

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

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

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

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

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

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

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

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

    /* Article Nav */
    .article-nav {
        flex-direction: column;
        gap: 15px;
    }

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

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

    .site-footer {
        padding: 40px 0 20px;
    }

    .footer-18plus {
        width: 36px;
        height: 36px;
        line-height: 36px;
        font-size: 14px;
    }

    .footer-social-links a {
        width: 34px;
        height: 34px;
    }

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

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

    .sidebar-label {
        display: none !important;
    }

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

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

    /* Footer CTA */
    .footer-cta-section {
        padding: 40px 15px;
    }

    .footer-cta-inner h2 {
        font-size: 24px;
        letter-spacing: 2px;
    }

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

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

    /* Error Page */
    .error-page {
        padding: 60px 15px;
    }

    .error-tiger-paw i {
        font-size: 60px;
    }

    .error-code {
        font-size: 70px;
    }

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

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

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

    .provider-tabs {
        gap: 5px;
    }

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

    /* Paw Separator */
    .paw-separator {
        gap: 12px;
        padding: 15px 0;
    }

    .paw-print i {
        font-size: 16px;
    }

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

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

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

    .announcement-item {
        padding: 10px;
    }

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

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

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

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

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

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

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

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

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

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

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

/* === MOBILE (max-width: 480px) === */
@media (max-width: 480px) {
    /* Base */
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 10px;
    }

    /* Tap Targets - Minimum 44px */
    .btn-login,
    .btn-register,
    .btn-demo,
    .btn-tiger-primary,
    .btn-outline-tiger,
    .btn-promo,
    .view-more-btn,
    .article-card-more,
    .provider-tab,
    .sidebar-btn,
    .footer-social-links a,
    .nav-link,
    .announcement-cta {
        min-height: 44px;
        min-width: 44px;
    }

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

    .logo img {
        max-height: 35px;
    }

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

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

    /* Navigation */
    .nav-link {
        padding: 14px 15px;
        font-size: 13px;
    }

    /* Hero Section */
    .tiger-hero {
        min-height: 400px;
        padding: 30px 10px;
    }

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

    .hero-divider-line {
        width: 80px;
        height: 2px;
    }

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

    .hero-description {
        font-size: 13px;
        margin-bottom: 15px;
    }

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

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

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

    /* Tiger Face (mobile) */
    .tiger-face-container {
        opacity: 0.1;
    }

    .tiger-face {
        width: 100px;
        height: 90px;
    }

    .tiger-eye {
        width: 20px;
        height: 12px;
        top: 28px;
    }

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

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

    .tiger-eye-pupil {
        width: 6px;
        height: 10px;
    }

    .tiger-nose {
        width: 10px;
        height: 8px;
        bottom: 28px;
    }

    .tiger-whiskers-left,
    .tiger-whiskers-right {
        width: 30px;
        bottom: 32px;
    }

    .tiger-power-aura {
        width: 150px;
        height: 150px;
    }

    /* Buttons */
    .btn-tiger-primary,
    .btn-outline-tiger {
        padding: 12px 20px;
        font-size: 13px;
        max-width: 250px;
    }

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

    .tiger-game-card {
        padding: 20px 15px;
    }

    .tiger-game-icon i {
        font-size: 36px;
    }

    .tiger-game-card h3 {
        font-size: 18px;
    }

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

    .tiger-grid-node {
        padding: 10px 6px;
    }

    .grid-node-icon i {
        font-size: 20px;
    }

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

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

    .tiger-feature-card {
        padding: 20px 15px;
    }

    /* Tiger Stats */
    .tiger-stats {
        padding: 30px 0;
        margin: 15px -10px;
    }

    .tiger-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 10px;
    }

    .tiger-stat-card {
        padding: 15px 8px;
    }

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

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

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

    /* Tiger Promos */
    .tiger-promo-inner {
        padding: 20px 15px;
    }

    .tiger-promo-inner h3 {
        font-size: 18px;
    }

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

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

    .article-card-title {
        font-size: 14px;
        padding: 10px 10px 5px;
    }

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

    .article-card-excerpt {
        padding: 0 10px 12px;
        font-size: 12px;
    }

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

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

    /* Footer CTA */
    .footer-cta-section {
        padding: 30px 10px;
    }

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

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

    .cta-tiger-paw {
        width: 60px;
        height: 60px;
    }

    .cta-tiger-paw::before {
        font-size: 28px;
    }

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

    /* Footer */
    .site-footer {
        padding: 30px 0 15px;
    }

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

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

    .footer-col ul li a {
        font-size: 12px;
    }

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

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

    .license-icons {
        gap: 10px;
    }

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

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

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

    /* Floating Sidebar */
    .floating-sidebar {
        right: 3px;
        gap: 4px;
    }

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

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

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

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

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

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

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

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

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

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

    .provider-tab {
        padding: 8px 10px;
        font-size: 11px;
    }

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

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

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

    /* Paw Separator */
    .paw-separator {
        gap: 8px;
        padding: 12px 0;
    }

    .paw-print i {
        font-size: 14px;
    }

    /* Announcement Modal */
    .announcement-content {
        padding: 15px;
        border-radius: 8px;
    }

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

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

    .announcement-item {
        padding: 8px;
        gap: 8px;
    }

    .announcement-badge {
        font-size: 10px;
        padding: 2px 6px;
    }

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

    .announcement-cta {
        padding: 10px 25px;
        font-size: 13px;
    }

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

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

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

    /* Breadcrumb */
    .breadcrumb {
        font-size: 11px;
    }
}

/* === MOBILE OPTIMIZATION === */

/* Prevent horizontal overflow */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .tiger-hero,
    .tiger-stats,
    .footer-cta-section {
        margin-left: 0;
        margin-right: 0;
    }
}

/* Safe area for notched devices */
@supports (padding: max(0px)) {
    .site-header {
        padding-top: max(0px, env(safe-area-inset-top));
    }

    .floating-sidebar {
        padding-bottom: max(0px, env(safe-area-inset-bottom));
    }

    .site-footer {
        padding-bottom: max(15px, env(safe-area-inset-bottom));
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .stripe-layer-1,
    .stripe-layer-2,
    .stripe-layer-3,
    .stripe-layer-stats,
    .stripe-layer-cta {
        animation: none !important;
    }

    .tiger-eye-glow {
        animation: none !important;
    }

    .tiger-power-aura {
        animation: none !important;
    }

    .paw-print i {
        animation: none !important;
    }

    .notification-content {
        animation: none !important;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .floating-sidebar,
    .announcement-modal,
    .notification-bar,
    .tiger-hero,
    .footer-cta-section,
    .site-footer {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    .article-content,
    .page-content {
        color: #000;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .tiger-hero {
        min-height: 350px;
    }

    .hero-brand {
        font-size: 36px;
    }

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

    .tiger-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tiger-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .tiger-eye-glow {
        filter: blur(0.5px);
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .hero-brand {
        font-size: 28px;
    }

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

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

    .tiger-grid-row {
        grid-template-columns: 1fr;
    }

    .tiger-game-icon i {
        font-size: 30px;
    }

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

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