/* General Container Styles */
.drama-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Auth Styles */
.drama-auth-container {
    /* max-width: 400px; */
    margin: 40px auto;
    padding: 20px;
}

.drama-error {
    background: rgba(0, 0, 0, 0.9) !important;
    color: white !important;
    padding: 2rem !important;
    border-radius: 8px !important;
    text-align: center !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

.drama-error h3 {
    margin: 0 0 1rem !important;
    font-size: 1.5rem !important;
    font-weight: 500 !important;
    color: white !important;
}

.drama-error p {
    margin: 0 0 1.5rem !important;
    opacity: 0.8 !important;
    line-height: 1.4 !important;
    color: white !important;
}

.drama-error button {
    background: #1a73e8 !important;
    color: white !important;
    border: none !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 4px !important;
    font-size: 0.9rem !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
}

.drama-error button:hover {
    background: #1557b0 !important;
}

.drama-auth-box {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.auth-title {
    text-align: center;
    margin-bottom: 30px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input {
    /* width: 100%; */
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-group input:focus {
    border-color: #2271b1;
    outline: none;
    box-shadow: 0 0 0 1px #2271b1;
}

/* Button Styles */
.drama-button {
    display: inline-block;
    padding: 12px 24px;
    background: #2271b1;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: background 0.3s;
}

.drama-button:hover {
    background: #135e96;
}

.button-loader {
    display: none;
}

.button-loader:after {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Message Styles */
.drama-message {
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.drama-message.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.drama-message.error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Video Player Styles */
.drama-video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.drama-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Subscription Required Message */
.subscription-required {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

/* Account Dashboard Styles */
.drama-account-dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.account-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.account-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.info-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Stream Sessions */
.stream-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: 4px;
    margin-bottom: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Subscription Plans */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.plan-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.plan-header {
    margin-bottom: 20px;
}

.plan-price {
    font-size: 36px;
    color: #2271b1;
    margin: 15px 0;
}

.plan-features {
    margin: 20px 0;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

/* Responsive Design */
@media (max-width: 768px) {
    .account-info {
        grid-template-columns: 1fr;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .drama-auth-container {
        padding: 10px;
    }
}