/* ============================================
   TIGER TV - SERVER STATUS PAGE STYLES
   ============================================ */

/* Hero Section */
.server-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    padding: 6rem 0 4rem;
}

.server-hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.server-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Status Indicators */
.status-indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-left: 8px;
    animation: pulse 2s infinite;
}

.status-online {
    background-color: #10b981;
}

.status-warning {
    background-color: #f59e0b;
}

.status-offline {
    background-color: #ef4444;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.status-section {
    background: #ffffff;
}

.status-header {
    text-align: center;
    margin-bottom: 40px;
}

.status-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1A1A1A;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.status-header p {
    color: #6b7280;
    margin-top: 10px;
}

/* Metric Cards */
.metric-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.metric-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: #10b981;
    margin: 10px 0;
}

.metric-label {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Server Grid */
.server-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.server-card {
    background: #f9fafb;
    border-radius: 8px;
    padding: 20px;
    border-right: 4px solid #10b981;
    transition: all 0.3s ease;
}

.server-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.server-card h4 {
    margin: 0 0 10px 0;
    color: #1f2937;
    font-size: 1.2rem;
}

.server-info {
    display: flex;
    justify-content: space-between;
    margin: 8px 0;
    font-size: 0.9rem;
}

.info-label {
    color: #6b7280;
}

.info-value {
    font-weight: 600;
    color: #1f2937;
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    margin: 10px 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #059669);
    transition: width 0.3s ease;
}

/* Content Wrapper */
.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1A1A1A;
    margin-bottom: 1.5rem;
}

.content-wrapper h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1A1A1A;
    margin: 2rem 0 1rem;
}

.content-wrapper p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-wrapper ul {
    margin: 1.5rem 0;
    padding-right: 2rem;
    line-height: 2;
}

.content-wrapper li {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.content-wrapper li strong {
    color: #FF6B35;
    font-weight: 600;
}

/* Infrastructure Section */
.infrastructure-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

/* Maintenance Section */
.maintenance-section {
    background: #ffffff;
}

.tip-box {
    padding: 1.5rem;
    border-radius: 10px;
    margin: 30px 0;
    background: rgba(76, 175, 80, 0.1);
    border-right: 4px solid #4CAF50;
}

.tip-box strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #1A1A1A;
}

/* Troubleshooting Section */
.troubleshooting-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.faq-item h3,
.faq-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 1rem;
}

.faq-item p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.faq-item strong {
    color: #FF6B35;
    display: block;
    margin: 1rem 0 0.5rem;
}

.faq-item ol {
    margin: 0.5rem 0;
    padding-right: 1.5rem;
}

.faq-item li {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq-section {
    background: #ffffff;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1A1A1A, #2D2D2D);
    padding: 6rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-box {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 15px;
}

.cta-box p {
    font-size: 1.2rem;
    color: #1A1A1A;
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B35, #FFD700);
    color: #ffffff;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FFD700, #FF6B35);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .server-hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .content-wrapper h2 {
        font-size: 2rem;
    }
    
    .server-grid {
        grid-template-columns: 1fr;
    }
    
    .metric-value {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}
