﻿@charset "UTF-8";
/* Maotai 1935 Theme Styles */
:root {
    /* Maotai Classic Colors */
    --maotai-red: #C41E3A;
    --maotai-gold: #D4AF37;
    --maotai-dark-red: #8B0000;
    --maotai-light-gold: #F5E6A3;
    --maotai-cream: #FFF8DC;
    --maotai-black: #1C1C1C;
    --maotai-gray: #666666;

    /* Gradient Colors */
    --maotai-gradient: linear-gradient(135deg, var(--maotai-red), var(--maotai-dark-red));
    --maotai-gold-gradient: linear-gradient(135deg, var(--maotai-gold), var(--maotai-light-gold));
}

/* Global Style Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: var(--maotai-black);
    background-color: #f8f9fa;
}

/* Navigation Bar Styles */
.navbar {
    background: #C41E3A !important;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Admin Navigation Bar - Same styling as main navbar */
.maotai-navbar {
    background: #C41E3A !important;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    color: white !important;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

.navbar-nav {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    margin: 0;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0 10px;
    padding: 8px 16px !important;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: inline-block;
}

.navbar-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: white !important;
}

.navbar-nav .nav-link.active {
    background-color: var(--maotai-gold);
    color: var(--maotai-dark-red) !important;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .navbar-nav {
        flex-direction: column !important;
        text-align: center;
        margin-top: 1rem;
    }
    
    .navbar-nav .nav-link {
        margin: 5px 0;
        display: block;
    }
}

/* Hero Section */
.hero-section {
    background: var(--maotai-gradient);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 150px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--maotai-light-gold);
    display: block;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* Main Content Area */
.main-content {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--maotai-dark-red);
    font-size: 2.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--maotai-gold-gradient);
    margin: 1rem auto;
    border-radius: 2px;
}

/* Card Styles */
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid var(--maotai-light-gold);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(196, 30, 58, 0.2);
    border-color: var(--maotai-gold);
}

.feature-icon {
    font-size: 3rem;
    color: var(--maotai-red);
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    color: var(--maotai-dark-red);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--maotai-gray);
    line-height: 1.6;
}

/* Statistics Cards */
.stats-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--maotai-red);
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.stats-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--maotai-red);
    display: block;
}

.stats-label {
    color: var(--maotai-gray);
    margin-top: 0.5rem;
}

/* Button Styles */
.btn-maotai {
    background: var(--maotai-gradient);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.btn-maotai:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
    color: white;
}

.btn-maotai-outline {
    background: transparent;
    color: var(--maotai-red);
    border: 2px solid var(--maotai-red);
    padding: 10px 28px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-maotai-outline:hover {
    background: var(--maotai-red);
    color: white;
}

.btn-gold {
    background: var(--maotai-gold-gradient);
    color: var(--maotai-dark-red);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    color: var(--maotai-dark-red);
}

/* Form Styles */
.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--maotai-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.form-label {
    color: var(--maotai-dark-red);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Table Styles */
.table-maotai {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.table-maotai thead {
    background: var(--maotai-gradient);
    color: white;
}

.table-maotai th {
    border: none;
    padding: 15px;
    font-weight: 600;
}

.table-maotai td {
    border: none;
    padding: 15px;
    border-bottom: 1px solid #f8f9fa;
}

.table-maotai tbody tr:hover {
    background-color: rgba(196, 30, 58, 0.05);
}

/* Tab Styles */
.nav-tabs {
    border-bottom: 2px solid var(--maotai-light-gold);
}

.nav-tabs .nav-link {
    border: none;
    color: var(--maotai-gray);
    padding: 12px 24px;
    border-radius: 10px 10px 0 0;
    margin-right: 5px;
}

.nav-tabs .nav-link.active {
    background: var(--maotai-gradient);
    color: white;
    border-bottom: 2px solid var(--maotai-red);
}

.nav-tabs .nav-link:hover {
    border-color: transparent;
    background-color: rgba(196, 30, 58, 0.1);
}

.tab-content {
    background: white;
    padding: 30px;
    border-radius: 0 15px 15px 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Badge Styles */
.badge-maotai {
    background: var(--maotai-gradient);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-gold {
    background: var(--maotai-gold-gradient);
    color: var(--maotai-dark-red);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.badge-warning {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
    color: var(--maotai-dark-red);
}

.badge-danger {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
}

/* Modal Styles */
.modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background: var(--maotai-gradient);
    color: white;
    border-radius: 20px 20px 0 0;
    border-bottom: none;
}

.modal-title {
    font-weight: bold;
}

.btn-close {
    filter: invert(1);
}

/* Alert Styles */
.alert-maotai {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(139, 0, 0, 0.1));
    border: 1px solid var(--maotai-light-gold);
    border-radius: 15px;
    color: var(--maotai-dark-red);
}

.alert-gold {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(245, 230, 163, 0.1));
    border: 1px solid var(--maotai-gold);
    border-radius: 15px;
    color: var(--maotai-dark-red);
}

/* Text Styles */
.text-maotai {
    color: var(--maotai-red) !important;
}

.text-gold {
    color: var(--maotai-gold) !important;
}

.text-dark-red {
    color: var(--maotai-dark-red) !important;
}

.bg-maotai {
    background: var(--maotai-gradient) !important;
    color: white !important;
}

.bg-gold {
    background: var(--maotai-gold-gradient) !important;
    color: var(--maotai-dark-red) !important;
}

/* Title Styles */
.page-title {
    color: var(--maotai-dark-red);
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    position: relative;
}

.page-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--maotai-gold);
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .stats-row {
        gap: 30px;
    }
    
    .stat-item {
        min-width: 120px;
    }
    
    .feature-card {
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Quick Start Card Styles */
.quick-start-card {
    background: var(--maotai-gradient);
    color: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.quick-start-card::before {
    content: '🚀';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    opacity: 0.3;
}

.quick-start-card h3 {
    color: var(--maotai-light-gold);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

/* VIP Badge */
.vip-badge {
    background: var(--maotai-gold-gradient);
    color: var(--maotai-dark-red);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-left: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* User Status Cards */
.user-status-card {
    background: var(--maotai-gradient);
    color: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.user-status-card::before {
    content: '🍷';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    opacity: 0.3;
}

.user-info h4 {
    color: var(--maotai-light-gold);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.user-stats {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.user-stat {
    text-align: center;
}

.user-stat .number {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--maotai-light-gold);
    display: block;
}

.user-stat .label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* VIP Badge */
.vip-badge {
    background: var(--maotai-gold-gradient);
    color: var(--maotai-dark-red);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-left: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Main Content */
.main-content {
    padding: 20px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    color: #333;
    font-size: 1.75rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.3s;
    text-align: center;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-info {
    background-color: #17a2b8;
    color: white;
}

.btn-info:hover {
    background-color: #138496;
}

.btn-danger {
    background-color: #dc3545;
    color: white;
}

.btn-danger:hover {
    background-color: #c82333;
}

.btn-outline-primary {
    background-color: transparent;
    color: #007bff;
    border: 1px solid #007bff;
}

.btn-outline-primary:hover {
    background-color: #007bff;
    color: white;
}

.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
}

/* Card Styles */
.card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Table Styles */
.table-responsive {
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.table th, .table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

.table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #495057;
}

.table tbody tr:hover {
    background-color: #f8f9fa;
}

/* Status Styles */
.status-pending {
    color: #ffc107;
    font-weight: bold;
}

.status-success {
    color: #28a745;
    font-weight: bold;
}

.status-failure {
    color: #dc3545;
    font-weight: bold;
}

.status-review {
    color: #17a2b8;
    font-weight: bold;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem;
    color: #6c757d;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-dialog {
    background: white;
    border-radius: 8px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    margin: 0;
    font-size: 1.25rem;
}

.btn-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-body {
    padding: 1rem;
}

.details-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}

.details-col {
    flex: 1;
}

.details-col p {
    margin-bottom: 0.5rem;
}

.url-list {
    border: 1px solid #dee2e6;
    padding: 1rem;
    max-height: 300px;
    overflow-y: auto;
    font-family: monospace;
    font-size: 0.9em;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.url-list div {
    margin-bottom: 0.25rem;
}

/* Responsive Design Unified */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .navbar-content {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .navbar-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .nav-link {
        white-space: nowrap;
        font-size: 0.9rem;
        padding: 8px 15px;
    }
    
    .details-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .user-stats {
        gap: 20px;
    }
}

/* Feature Card Styles - High Priority Selectors */
.features-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 30px !important;
    margin-top: 40px !important;
}

/* High Priority Selectors to Override Bootstrap */
.feature-card {
    background: white !important;
    border-radius: 20px !important;
    padding: 40px 30px !important;
    text-align: center !important;
    border: 2px solid #F5E6A3 !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
    display: block !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    float: none !important;
}

.feature-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 30px rgba(196, 30, 58, 0.2) !important;
    border-color: #D4AF37 !important;
}

.feature-icon {
    font-size: 3rem !important;
    color: #C41E3A !important;
    margin-bottom: 1.5rem !important;
    display: block !important;
}

.feature-card h3 {
    color: #8B0000 !important;
    margin-bottom: 1rem !important;
    font-size: 1.5rem !important;
}

.feature-card p {
    color: #666666 !important;
    line-height: 1.6 !important;
}

/* Main Content */
.main-content {
    padding: 20px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    color: #333;
    font-size: 1.75rem;
}

/* Card Styles */
.card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Table Styles */
.table-responsive {
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

/* Status Styles */
.status-pending {
    color: #ffc107;
    font-weight: bold;
}

.status-success {
    color: #28a745;
    font-weight: bold;
}

.status-failure {
    color: #dc3545;
    font-weight: bold;
}

.status-review {
    color: #17a2b8;
    font-weight: bold;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem;
    color: #6c757d;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-dialog {
    background: white;
    border-radius: 8px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    margin: 0;
    font-size: 1.25rem;
}

.btn-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-body {
    padding: 1rem;
}

.details-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}

.details-col {
    flex: 1;
}

.details-col p {
    margin-bottom: 0.5rem;
}

.url-list {
    border: 1px solid #dee2e6;
    padding: 1rem;
    max-height: 300px;
    overflow-y: auto;
    font-family: monospace;
    font-size: 0.9em;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.url-list div {
    margin-bottom: 0.25rem;
}

/* Authentication Pages Styles */
.maotai-auth-page {
    background: linear-gradient(135deg, var(--maotai-red), var(--maotai-dark-red));
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.maotai-auth-container {
    width: 100%;
    max-width: 450px;
}

.maotai-auth-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.maotai-auth-header {
    margin-bottom: 30px;
}

.maotai-logo {
    width: 80px;
    height: 80px;
    background: var(--maotai-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.maotai-title {
    color: var(--maotai-red);
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.maotai-subtitle {
    color: var(--maotai-gray);
    font-size: 1rem;
    margin-bottom: 0;
}

.maotai-auth-form {
    text-align: left;
}

.maotai-auth-form .form-group {
    margin-bottom: 20px;
}

.maotai-auth-form .form-label {
    color: var(--maotai-black);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.maotai-auth-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.maotai-auth-form .form-control:focus {
    border-color: var(--maotai-red);
    box-shadow: 0 0 0 0.2rem rgba(196, 30, 58, 0.25);
    outline: none;
}

.maotai-btn-primary {
    background: var(--maotai-gradient);
    border: none;
    border-radius: 10px;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    width: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.maotai-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.3);
}

.maotai-btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.maotai-auth-links {
    margin-top: 20px;
    text-align: center;
}

.maotai-auth-links a {
    color: var(--maotai-red);
    text-decoration: none;
    font-weight: 500;
}

.maotai-auth-links a:hover {
    text-decoration: underline;
}

.maotai-alert {
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.maotai-alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.maotai-alert-danger {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Responsive Design Unified Above */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .navbar-content {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .navbar-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .nav-link {
        white-space: nowrap;
        font-size: 0.9rem;
        padding: 8px 15px;
    }
    
    .details-row {
        flex-direction: column;
        gap: 1rem;
    }
}
