* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff0000;
    --primary-dark: #cc0000;
    --secondary-color: #282828;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #f5f5f5;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --success: #4caf50;
    --error: #f44336;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 4px 20px rgba(0,0,0,0.15);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-placeholder {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.stream-card {
    text-align: center;
    color: var(--white);
}

.stream-indicator {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--error);
    margin: 0 auto 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-card p {
    color: var(--text-light);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--bg-color);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
}

/* Auth Pages */
.auth-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.auth-container {
    width: 100%;
    max-width: 450px;
}

.auth-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h1 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.auth-header h2 {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 600;
}

.auth-form {
    margin-bottom: 1.5rem;
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    display: block;
}

.auth-form .form-group:hover {
    border: none;
    box-shadow: none;
}

.auth-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.9rem;
    height: auto;
}

.auth-form .form-group label .icon {
    display: none;
}

.auth-form .form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: var(--white);
    color: var(--text-color);
    box-sizing: border-box;
    height: auto;
    margin-top: 0;
    font-weight: 400;
}

.auth-form .form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: none;
    transform: none;
}

.auth-form .form-group input:hover {
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: none;
    transform: none;
}

.auth-form .form-group small {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    min-height: auto;
    padding-left: 0;
    font-style: normal;
}

/* Password input with eye icon */
.password-input-wrapper {
    position: relative;
    width: 100%;
}

.password-input-wrapper input {
    padding-right: 3rem;
}

.password-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: color 0.3s;
}

.password-toggle:hover {
    color: var(--primary-color);
}

.password-toggle svg {
    width: 20px;
    height: 20px;
}

/* Simple form styling for change password */
.simple-form {
    margin-top: 1.5rem;
}

.simple-form-group {
    margin-bottom: 1.5rem;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    display: block;
}

.simple-form-group:hover {
    border: none;
    box-shadow: none;
}

.simple-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.9rem;
    height: auto;
}

.simple-form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: var(--white);
    color: var(--text-color);
    box-sizing: border-box;
    height: auto;
    margin-top: 0;
    font-weight: 400;
}

.simple-form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: none;
    transform: none;
}

.simple-form-group input:hover {
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: none;
    transform: none;
}

.simple-form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: var(--white);
    color: var(--text-color);
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    resize: vertical;
}

.simple-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: none;
    transform: none;
}

.simple-form-group textarea:hover {
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: none;
    transform: none;
}

/* Settings tabs styling */
.settings-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
    overflow-x: auto;
    flex-wrap: nowrap;
}

.settings-tab {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
}

.settings-tab:hover {
    color: var(--primary-color);
    background: rgba(255, 0, 0, 0.05);
}

.settings-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: rgba(255, 0, 0, 0.05);
    font-weight: 600;
}

.settings-tab-content {
    display: none;
}

.settings-tab-content.active {
    display: block;
}

.form-actions-settings {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

/* Settings section styling */
.settings-section {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.settings-section h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

/* File upload styling */
.file-upload-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.file-input {
    display: none;
}

.file-name {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

.image-preview {
    padding: 1rem;
    background: #f5f5f5;
    border-radius: 5px;
    border: 1px solid var(--border-color);
}

.image-preview img {
    display: block;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.popular {
    border: 3px solid #4caf50;
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.4);
}

.pricing-card h3 {
    color: #4caf50;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.price {
    text-align: center;
    margin-bottom: 2rem;
}

.price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b9d;
    display: block;
}

.price .period {
    font-size: 1rem;
    color: var(--text-light);
    display: block;
    margin-top: 0.5rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.features-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color);
    line-height: 1.5;
}

.features-list li:last-child {
    border-bottom: none;
}

.feature-icon {
    color: #4caf50;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.btn-pricing {
    width: 100%;
    background: linear-gradient(135deg, #ff6b9d 0%, #ff4081 100%);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
    display: block;
}

.btn-pricing:hover {
    background: linear-gradient(135deg, #ff4081 0%, #ff6b9d 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.4);
}

/* Products Management */
.products-list {
    margin-top: 2rem;
}

.product-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.product-info {
    flex: 1;
}

.product-info h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.popular-tag {
    background: #4caf50;
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-price {
    color: #ff6b9d;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.product-features li:last-child {
    border-bottom: none;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.btn-danger {
    background: #f44336;
    color: var(--white);
    border-color: #f44336;
}

.btn-danger:hover {
    background: #d32f2f;
    border-color: #d32f2f;
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.auth-footer {
    text-align: center;
    color: var(--text-light);
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.error-message {
    background: #fee;
    color: var(--error);
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
    border-left: 4px solid var(--error);
}

/* Dashboard */
.dashboard-nav {
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 1rem 0;
}

.dashboard-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dashboard-container {
    display: flex;
    min-height: calc(100vh - 80px);
}

.sidebar {
    width: 250px;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 2rem 0;
}

.sidebar-menu {
    list-style: none;
}

.menu-item {
    display: block;
    padding: 1rem 2rem;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.menu-item:hover,
.menu-item.active {
    background: var(--bg-color);
    border-left-color: var(--primary-color);
    color: var(--primary-color);
}

.dashboard-main {
    flex: 1;
    padding: 2rem;
}

.dashboard-section {
    display: none;
}

.dashboard-section.active {
    display: block;
}

.dashboard-section h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.card h3 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.video-item {
    background: var(--bg-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.video-item:hover {
    transform: translateY(-5px);
}

.video-thumbnail {
    width: 100%;
    height: 150px;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    object-fit: cover;
}

.video-thumbnail-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    background: var(--secondary-color);
    display: block;
}

.video-info {
    padding: 1rem;
}

.video-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.video-actions button {
    flex: 1;
    padding: 0.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-preview {
    background: var(--primary-color);
    color: var(--white);
}

.btn-delete {
    background: var(--error);
    color: var(--white);
}

.btn-live {
    background: var(--success);
    color: var(--white);
    width: 100%;
    margin-top: 0.5rem;
}

.empty-state {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 20px;
    background: var(--bg-color);
    border-radius: 10px;
    overflow: hidden;
    margin: 1rem 0;
}

.progress-fill {
    height: 100%;
    background: var(--primary-color);
    width: 0%;
    transition: width 0.3s;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    overflow: auto;
}

.modal-content {
    background: var(--white);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: var(--text-light);
}

.close:hover {
    color: var(--text-color);
}

/* Admin Styles */
.admin-section {
    display: none;
}

.admin-section.active {
    display: block;
}

.admin-section h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.stat-card h3 {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.stat-card p {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-card.live p {
    color: var(--error);
}

.table-container {
    overflow-x: auto;
}

.users-table {
    width: 100%;
    border-collapse: collapse;
}

.users-table th,
.users-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.users-table th {
    background: var(--bg-color);
    font-weight: 600;
    color: var(--text-color);
}

.users-table tr:hover {
    background: var(--bg-color);
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-live {
    background: #fee;
    color: var(--error);
}

.status-offline {
    background: #e0e0e0;
    color: var(--text-light);
}

.text-center {
    text-align: center;
}

/* Live Stream Form - Modern Design */
.live-form {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.live-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff0000 0%, #ff6b6b 50%, #ff0000 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.form-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.form-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-column::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, var(--border-color) 20%, var(--border-color) 80%, transparent 100%);
    transform: translateX(-50%);
    opacity: 0.3;
}

.form-group {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 1.25rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.form-group:hover {
    border-color: rgba(255, 0, 0, 0.2);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.08);
    transform: translateY(-2px);
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 0.875rem;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

.form-group label .icon {
    font-size: 1.4rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff0000 0%, #ff6b6b 100%);
    border-radius: 8px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(255, 0, 0, 0.2));
}

.form-group input[type="text"],
.form-group input[type="datetime-local"],
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fafafa;
    color: var(--text-color);
    box-sizing: border-box;
    height: 52px;
    margin-top: 0;
    font-weight: 500;
}

/* Clean Select Styling */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fafafa;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23999' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 14px;
    padding-right: 3rem;
    cursor: pointer;
    position: relative;
}

.form-group select::-ms-expand {
    display: none;
}

.form-group input:hover,
.form-group select:hover {
    border-color: #ff6b6b;
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.1);
}

.form-group select:hover {
    background-color: var(--white);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23ff0000' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
}

.form-group select:focus {
    background-color: var(--white);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23ff0000' d='M8 5L3 10h10z'/%3E%3C/svg%3E");
}

.form-group small {
    display: block;
    margin-top: 0.75rem;
    color: #888;
    font-size: 0.8125rem;
    line-height: 1.5;
    min-height: 36px;
    padding-left: 0.25rem;
    font-style: italic;
}

/* Special handling for section header */
.form-section-header {
    min-height: auto !important;
    margin-bottom: 0.5rem;
    grid-template-rows: auto !important;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    border: 1px solid rgba(255, 0, 0, 0.1);
    padding: 1.5rem 1.25rem;
}

.form-section-header label {
    margin-bottom: 0 !important;
    font-size: 1.05rem;
    color: var(--text-color);
    height: auto !important;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 700;
}

.form-section-header label .icon {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff0000 100%);
}

.form-section-header + .form-group {
    margin-top: 0;
}

.time-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 0;
}

.time-inputs select {
    padding: 1rem 1.25rem;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    background-color: #fafafa;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23999' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 52px;
    box-sizing: border-box;
    font-weight: 500;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 3rem;
    position: relative;
}

.time-inputs select::-ms-expand {
    display: none;
}

.time-inputs select:hover {
    border-color: #ff6b6b;
    background-color: var(--white);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23ff0000' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.1);
}

.time-inputs select:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23ff0000' d='M8 5L3 10h10z'/%3E%3C/svg%3E");
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
}

.time-inputs select option {
    padding: 0.75rem 1rem;
    background: var(--white);
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
}

.time-inputs select option:hover {
    background: #f5f5f5;
}

.time-inputs select option:checked,
.time-inputs select option[selected] {
    background: #ff0000;
    color: var(--white);
    font-weight: 600;
}

.form-actions {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(0, 0, 0, 0.06);
    text-align: center;
    position: relative;
}

.form-actions::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.btn-live-large {
    background: linear-gradient(135deg, #ff0000 0%, #ff3333 50%, #cc0000 100%);
    background-size: 200% 100%;
    color: var(--white);
    padding: 1.75rem 5rem;
    font-size: 1.3rem;
    font-weight: 700;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.35), 0 4px 8px rgba(255, 0, 0, 0.2);
    min-width: 280px;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-live-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-live-large:hover::before {
    left: 100%;
}

.btn-live-large:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(255, 0, 0, 0.45), 0 6px 12px rgba(255, 0, 0, 0.3);
    background-position: 100% 0;
}

.btn-live-large:active {
    transform: translateY(-2px) scale(1);
    box-shadow: 0 6px 16px rgba(255, 0, 0, 0.4);
}

.btn-live-large .play-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.live-status {
    margin-top: 2rem;
}

.status-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--success);
}

.status-card h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* Live Status */
.live-status {
    margin-top: 2rem;
}

.status-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--success);
}

.status-card h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.status-card p {
    margin: 0.5rem 0;
    color: var(--text-color);
}

.status-card strong {
    color: var(--text-color);
    font-weight: 600;
}

/* Responsive */
/* Enhanced form styling */
.form-group input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: invert(0.5);
    opacity: 0.7;
    transition: opacity 0.3s;
}

.form-group input[type="datetime-local"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
    filter: invert(0.3);
}

/* Clean option styling */
.form-group select option {
    padding: 0.75rem 1rem;
    background: var(--white);
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
}

.form-group select option:hover {
    background: #f5f5f5;
}

.form-group select option:checked,
.form-group select option[selected] {
    background: #ff0000;
    color: var(--white);
    font-weight: 600;
}

@media (max-width: 968px) {
    .live-form {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }
    
    .form-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .form-column::before {
        display: none;
    }
    
    .form-column {
        gap: 1.75rem;
    }
    
    .form-group {
        padding: 1rem;
    }
    
    .time-inputs {
        grid-template-columns: 1fr;
    }
    
    .btn-live-large {
        width: 100%;
        padding: 1.5rem 3rem;
        font-size: 1.15rem;
        min-width: auto;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        width: 200px;
    }
    
    .dashboard-container {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
    }
    
    .sidebar-menu {
        display: flex;
        overflow-x: auto;
    }
    
    .menu-item {
        white-space: nowrap;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
}

