.status-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.status-header {
    text-align: center;
    margin-bottom: 3rem;
}

.status-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    /* Use main theme color gradient or fallback */
    background: linear-gradient(45deg, var(--main-color-1, #FF00FF), var(--main-color-2, #9370DB)); 
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.status-subtitle {
    font-size: 1rem;
    opacity: 0.8;
    margin-left: 1rem;
    color: var(--main-color-1, #FF00FF); /* Use theme color */
}

.status-description {
    color: var(--text-color, #e0e0e0); /* Use theme text color */
    font-size: 1.1rem;
    margin-top: 1rem;
}

.status-overview {
    margin-bottom: 2rem;
}

.status-card {
    background: var(--card-color, rgba(255, 255, 255, 0.05)); /* Use theme card color */
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border, rgba(255, 255, 255, 0.1)); /* Use theme card border */
    margin-bottom: 2rem;
}

.status-card h3 {
    color: var(--main-color-1, #FF00FF); /* Use theme color */
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.status-badge-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background: var(--secondary-color-2, rgba(0, 0, 0, 0.2)); /* Use theme secondary color */
    border-radius: 8px;
}

.status-iframe-container {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--secondary-color-2, rgba(0, 0, 0, 0.2)); /* Use theme secondary color */
    border: 1px solid var(--card-border, rgba(255, 255, 255, 0.1)); /* Match card border */
}

.status-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.full-width {
    width: 100%;
}

@media (max-width: 768px) {
    .status-header h1 {
        font-size: 2rem;
    }

    .status-subtitle {
        display: block;
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .status-iframe-container {
        height: 600px;
    }
}

@media (max-width: 480px) {
    .status-header h1 {
        font-size: 1.8rem;
    }

    .status-iframe-container {
        height: 500px;
    }
} 