* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #0a0a0a;
            color: #fff;
            line-height: 1.6;
        }

        /* Header */
        .header {
            background: #0f0f0f;
            padding: 16px 32px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #1a1a1a;
        }

        .logo {
            font-size: 20px;
            font-weight: 700;
            color: #d4a853;
            letter-spacing: -0.5px;
        }

        .nav-buttons {
            display: flex;
            gap: 12px;
        }

        .btn {
            padding: 10px 20px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            border: none;
            transition: all 0.2s;
        }

        .btn-outline {
            background: transparent;
            color: #fff;
            border: 1px solid #333;
        }

        .btn-outline:hover {
            background: #1a1a1a;
        }

        .btn-primary {
            background: #d4a853;
            color: #0a0a0a;
        }

        .btn-primary:hover {
            background: #c49a48;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
            min-height: calc(100vh - 70px);
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 60px 24px;
            text-align: center;
        }

        .badge {
            display: inline-block;
            background: #d4a853;
            color: #0a0a0a;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 24px;
        }

        .hero h1 {
            font-size: clamp(32px, 5vw, 56px);
            font-weight: 800;
            line-height: 1.2;
            max-width: 900px;
            margin-bottom: 20px;
            color: #fff;
        }

        .hero-subtitle {
            font-size: 20px;
            color: #b8b8d1;
            margin-bottom: 48px;
            font-weight: 500;
        }

        /* Video Container */
        .video-wrapper {
            width: 100%;
            max-width: 900px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 25px 80px rgba(0,0,0,0.5);
            background: #000;
            margin-bottom: 80px;
        }

        .video-wrapper iframe {
            width: 100%;
            aspect-ratio: 16/9;
            border: none;
            display: block;
        }

        /* CTA Section */
        .cta-section {
            width: 100%;
            max-width: 1000px;
            padding: 0 24px 60px;
            text-align: center;
        }

        .cta-section h2 {
            font-size: clamp(36px, 5vw, 64px);
            font-weight: 800;
            color: #c5c5d5;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .cta-section p {
            font-size: clamp(18px, 2.5vw, 24px);
            color: #a0a0b8;
            max-width: 900px;
            margin: 0 auto 48px;
            line-height: 1.6;
        }

        .cta-buttons {
            display: flex;
            gap: 24px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-cta-primary {
            background: linear-gradient(135deg, #c97a3c 0%, #b8682e 100%);
            color: #fff;
            padding: 24px 64px;
            border-radius: 12px;
            font-size: 20px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 8px 32px rgba(201, 122, 60, 0.3);
            text-decoration: none;
            display: inline-block;
        }

        .btn-cta-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(201, 122, 60, 0.4);
        }

        .btn-cta-outline {
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            padding: 24px 64px;
            border-radius: 12px;
            font-size: 20px;
            font-weight: 600;
            border: 2px solid rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s;
            backdrop-filter: blur(10px);
        }

        .btn-cta-outline:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.5);
        }

        /* Contact Form Section */
        .contact-section {
            width: 100%;
            max-width: 800px;
            padding: 48px;
            background: rgba(26, 26, 46, 0.6);
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: none;
        }

        .contact-section.active {
            display: block;
        }

        .contact-section h2 {
            font-size: 42px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 32px;
            text-align: left;
        }

        .form-group {
            margin-bottom: 24px;
            text-align: left;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: #fff;
            font-size: 16px;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 16px 20px;
            background: rgba(10, 10, 20, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            color: #fff;
            font-size: 16px;
            transition: all 0.2s;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #d4a853;
            background: rgba(10, 10, 20, 0.95);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .verification-box {
            background: rgba(10, 10, 20, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 16px;
        }

        .verification-question {
            background: rgba(212, 168, 83, 0.15);
            border: 1px dashed #d4a853;
            border-radius: 8px;
            padding: 16px;
            text-align: center;
            color: #d4a853;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .form-buttons {
            display: flex;
            gap: 16px;
            margin-top: 32px;
        }

        .btn-form-cancel {
            flex: 1;
            padding: 18px 32px;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .btn-form-cancel:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .btn-form-submit {
            flex: 1;
            padding: 18px 32px;
            background: linear-gradient(135deg, #c97a3c 0%, #b8682e 100%);
            color: #fff;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .btn-form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(201, 122, 60, 0.4);
        }

        /* Login Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.85);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(5px);
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: #1a1a1a;
            padding: 48px;
            border-radius: 16px;
            width: 90%;
            max-width: 420px;
            border: 1px solid #333;
        }

        .modal-content h2 {
            margin-bottom: 32px;
            color: #fff;
            font-size: 32px;
            font-weight: 700;
        }

        .modal-form-group {
            margin-bottom: 24px;
        }

        .modal-form-group label {
            display: block;
            margin-bottom: 12px;
            color: #fff;
            font-size: 18px;
            font-weight: 500;
        }

        .modal-form-group input {
            width: 100%;
            padding: 16px 20px;
            background: #0f0f0f;
            border: 1px solid #333;
            border-radius: 12px;
            color: #fff;
            font-size: 16px;
            transition: all 0.2s;
        }

        .modal-form-group input:focus {
            outline: none;
            border-color: #d4a853;
        }

        .modal-buttons {
            display: flex;
            gap: 16px;
            margin-top: 32px;
        }

        .btn-modal-cancel {
            flex: 1;
            padding: 14px 24px;
            background: transparent;
            color: #fff;
            border: 1px solid #444;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
        }

        .btn-modal-cancel:hover {
            background: rgba(255,255,255,0.1);
        }

        .btn-modal-login {
            flex: 1;
            padding: 14px 24px;
            background: #d4a853;
            color: #0a0a0a;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .btn-modal-login:hover {
            background: #c49a48;
        }

        .forgot-password {
            text-align: center;
            margin-top: 20px;
        }

        .forgot-password a {
            color: #888;
            text-decoration: none;
            font-size: 14px;
            cursor: pointer;
        }

        .forgot-password a:hover {
            color: #d4a853;
        }

        .login-hint {
            background: rgba(212, 168, 83, 0.1);
            border: 1px solid rgba(212, 168, 83, 0.3);
            border-radius: 8px;
            padding: 12px;
            margin-bottom: 24px;
            font-size: 13px;
            color: #d4a853;
            text-align: center;
        }

        .login-hint strong {
            color: #fff;
        }

        /* Admin Panel */
        .admin-panel {
            display: none;
            padding: 40px;
            background: #0a0a0a;
            min-height: calc(100vh - 70px);
        }

        .admin-panel.active {
            display: block;
        }

        .admin-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 1px solid #1a1a1a;
        }

        .admin-tabs {
            display: flex;
            gap: 8px;
            margin-bottom: 32px;
            border-bottom: 1px solid #333;
            padding-bottom: 16px;
        }

        .admin-tab {
            padding: 12px 24px;
            background: transparent;
            color: #888;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.2s;
        }

        .admin-tab:hover {
            color: #fff;
            background: rgba(255,255,255,0.05);
        }

        .admin-tab.active {
            color: #d4a853;
            background: rgba(212, 168, 83, 0.1);
        }

        .admin-section {
            display: none;
        }

        .admin-section.active {
            display: block;
        }

        /* Categories Admin */
        .categories-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 24px;
        }

        .category-card {
            background: #1a1a1a;
            border: 1px solid #333;
            border-radius: 12px;
            padding: 24px;
            position: relative;
            transition: all 0.2s;
        }

        .category-card:hover {
            border-color: #d4a853;
        }

        .category-icon {
            width: 60px;
            height: 60px;
            background: rgba(212, 168, 83, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 16px;
        }

        .category-card h3 {
            font-size: 20px;
            margin-bottom: 8px;
        }

        .category-card p {
            color: #888;
            font-size: 14px;
            margin-bottom: 16px;
        }

        .category-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: #666;
        }

        .category-actions {
            display: flex;
            gap: 8px;
            margin-top: 16px;
        }

        .lessons-assigned {
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px solid #333;
        }

        .lesson-tag {
            display: inline-block;
            background: rgba(212, 168, 83, 0.15);
            color: #d4a853;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            margin: 4px 4px 0 0;
        }

        /* Lessons Admin */
        .lessons-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }

        .lessons-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .lesson-admin-card {
            background: #1a1a1a;
            border: 1px solid #333;
            border-radius: 12px;
            padding: 20px;
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .lesson-admin-thumb {
            width: 160px;
            height: 90px;
            background: #252525;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .lesson-admin-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .lesson-admin-info {
            flex: 1;
        }

        .lesson-admin-info h4 {
            font-size: 18px;
            margin-bottom: 8px;
        }

        .lesson-admin-info p {
            color: #888;
            font-size: 14px;
            margin-bottom: 12px;
        }

        .lesson-admin-meta {
            display: flex;
            gap: 16px;
            font-size: 13px;
            color: #666;
        }

        .lesson-admin-meta span {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .lesson-admin-actions {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        /* Modal Forms */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.85);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(5px);
        }

        .modal-overlay.active {
            display: flex;
        }

        .modal-form-container {
            background: #1a1a1a;
            padding: 32px;
            border-radius: 16px;
            width: 90%;
            max-width: 600px;
            border: 1px solid #333;
            max-height: 90vh;
            overflow-y: auto;
        }

        .modal-form-container h3 {
            margin-bottom: 24px;
            color: #fff;
            font-size: 24px;
        }

        .form-row {
            margin-bottom: 20px;
        }

        .form-row label {
            display: block;
            margin-bottom: 8px;
            color: #fff;
            font-size: 14px;
            font-weight: 500;
        }

        .form-row input,
        .form-row textarea,
        .form-row select {
            width: 100%;
            padding: 14px 16px;
            background: #0f0f0f;
            border: 1px solid #333;
            border-radius: 10px;
            color: #fff;
            font-size: 15px;
            transition: all 0.2s;
        }

        .form-row input:focus,
        .form-row textarea:focus,
        .form-row select:focus {
            outline: none;
            border-color: #d4a853;
        }

        .form-row textarea {
            min-height: 100px;
            resize: vertical;
        }

        .icon-picker {
            display: grid;
            grid-template-columns: repeat(8, 1fr);
            gap: 8px;
            margin-top: 8px;
        }

        .icon-option {
            aspect-ratio: 1;
            background: #0f0f0f;
            border: 2px solid #333;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .icon-option:hover {
            border-color: #555;
        }

        .icon-option.selected {
            border-color: #d4a853;
            background: rgba(212, 168, 83, 0.1);
        }

        .thumbnail-upload {
            border: 2px dashed #444;
            border-radius: 10px;
            padding: 32px;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s;
            position: relative;
            background: #0f0f0f;
        }

        .thumbnail-upload:hover {
            border-color: #d4a853;
        }

        .thumbnail-upload input[type="file"] {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            cursor: pointer;
        }

        .thumbnail-preview-modal {
            width: 100%;
            height: 200px;
            background: #0f0f0f;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            margin-top: 12px;
        }

        .thumbnail-preview-modal img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .remove-thumbnail-btn {
            position: absolute;
            top: 12px;
            right: 12px;
            background: rgba(255, 71, 87, 0.9);
            color: #fff;
            border: none;
            border-radius: 6px;
            padding: 8px 16px;
            font-size: 13px;
            cursor: pointer;
        }

        .lesson-picker {
            max-height: 200px;
            overflow-y: auto;
            background: #0f0f0f;
            border: 1px solid #333;
            border-radius: 10px;
            padding: 12px;
        }

        .lesson-checkbox {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .lesson-checkbox:hover {
            background: rgba(255,255,255,0.05);
        }

        .lesson-checkbox input {
            width: 20px;
            height: 20px;
            accent-color: #d4a853;
        }

        .modal-form-buttons {
            display: flex;
            gap: 12px;
            margin-top: 24px;
        }

        .btn-secondary {
            flex: 1;
            padding: 14px 24px;
            background: transparent;
            color: #fff;
            border: 1px solid #444;
            border-radius: 10px;
            cursor: pointer;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.2s;
        }

        .btn-secondary:hover {
            background: rgba(255,255,255,0.1);
        }

        .btn-main {
            flex: 1;
            padding: 14px 24px;
            background: #d4a853;
            color: #0a0a0a;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            font-size: 15px;
            font-weight: 600;
            transition: all 0.2s;
        }

        .btn-main:hover {
            background: #c49a48;
        }

        /* Member Dashboard */
        .member-dashboard {
            display: none;
            padding: 40px;
            background: #0a0a0a;
            min-height: calc(100vh - 70px);
        }

        .member-dashboard.active {
            display: block;
        }

        .dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 1px solid #1a1a1a;
        }

        .dashboard-title {
            font-size: 32px;
            font-weight: 700;
        }

        .welcome-text {
            color: #888;
            margin-top: 4px;
        }

        .categories-section h2 {
            font-size: 24px;
            margin-bottom: 24px;
            color: #d4a853;
        }

        .categories-grid-member {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
        }

        .category-card-member {
            background: linear-gradient(145deg, #1a1a1a 0%, #141414 100%);
            border: 1px solid #333;
            border-radius: 16px;
            padding: 28px;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .category-card-member::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #d4a853, #c97a3c);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .category-card-member:hover {
            transform: translateY(-4px);
            border-color: #d4a853;
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

        .category-card-member:hover::before {
            opacity: 1;
        }

        .category-icon-large {
            width: 70px;
            height: 70px;
            background: rgba(212, 168, 83, 0.1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin-bottom: 20px;
        }

        .category-card-member h3 {
            font-size: 22px;
            margin-bottom: 10px;
        }

        .category-card-member p {
            color: #888;
            font-size: 15px;
            line-height: 1.5;
            margin-bottom: 16px;
        }

        .category-stats {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #d4a853;
            font-size: 14px;
            font-weight: 500;
        }

        /* Lessons List View */
        .lessons-view {
            display: none;
            padding: 40px;
            background: #0a0a0a;
            min-height: calc(100vh - 70px);
        }

        .lessons-view.active {
            display: block;
        }

        .view-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 32px;
        }

        .back-button {
            display: flex;
            align-items: center;
            gap: 8px;
            background: #1a1a1a;
            border: 1px solid #333;
            color: #fff;
            padding: 12px 20px;
            border-radius: 10px;
            cursor: pointer;
            font-size: 15px;
            transition: all 0.2s;
        }

        .back-button:hover {
            background: #252525;
            border-color: #d4a853;
        }

        .view-title {
            font-size: 28px;
            font-weight: 700;
        }

        .lessons-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 24px;
        }

        .lesson-card {
            background: #1a1a1a;
            border: 1px solid #333;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s;
        }

        .lesson-card:hover {
            transform: translateY(-4px);
            border-color: #d4a853;
            box-shadow: 0 16px 32px rgba(0,0,0,0.3);
        }

        .lesson-thumb {
            aspect-ratio: 16/9;
            background: #252525;
            position: relative;
        }

        .lesson-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .play-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .lesson-card:hover .play-overlay {
            opacity: 1;
        }

        .play-button {
            width: 60px;
            height: 60px;
            background: rgba(212, 168, 83, 0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #0a0a0a;
        }

        .lesson-info {
            padding: 24px;
        }

        .lesson-info h4 {
            font-size: 18px;
            margin-bottom: 10px;
            line-height: 1.4;
        }

        .lesson-info p {
            color: #888;
            font-size: 14px;
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Lesson Detail View */
        .lesson-detail {
            display: none;
            padding: 40px;
            background: #0a0a0a;
            min-height: calc(100vh - 70px);
        }

        .lesson-detail.active {
            display: block;
        }

        .detail-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 32px;
        }

        .detail-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .video-container-large {
            width: 100%;
            aspect-ratio: 16/9;
            background: #000;
            border-radius: 16px;
            overflow: hidden;
            margin-bottom: 32px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.5);
        }

        .video-container-large iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .detail-text {
            background: #1a1a1a;
            border: 1px solid #333;
            border-radius: 16px;
            padding: 32px;
        }

        .detail-text h1 {
            font-size: 32px;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .detail-text p {
            color: #b8b8d1;
            font-size: 17px;
            line-height: 1.8;
        }

        .detail-meta {
            display: flex;
            gap: 24px;
            margin-bottom: 24px;
            padding-bottom: 24px;
            border-bottom: 1px solid #333;
        }

        .detail-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #888;
            font-size: 14px;
        }

        .detail-meta-item strong {
            color: #d4a853;
        }

        /* Utility Classes */
        .hidden {
            display: none !important;
        }

        .logout-btn {
            background: #ff4757;
            color: #fff;
        }

        .logout-btn:hover {
            background: #ff3344;
        }

        .save-btn {
            background: #2ed573;
            color: #fff;
            padding: 12px 24px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            width: 100%;
        }

        .save-btn:hover {
            background: #26b965;
        }

        .empty-state {
            text-align: center;
            padding: 60px;
            color: #666;
        }

        .section-title {
            font-size: 28px;
            font-weight: 700;
            color: #fff;
        }

        /* Member Management */
        .members-toolbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }

        .members-count {
            color: #888;
            font-size: 14px;
        }

        .members-table {
            width: 100%;
            border-collapse: collapse;
        }

        .members-table th {
            text-align: left;
            padding: 16px;
            color: #888;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-bottom: 1px solid #333;
        }

        .members-table td {
            padding: 16px;
            border-bottom: 1px solid #222;
            font-size: 14px;
        }

        .members-table tr:hover {
            background: rgba(255,255,255,0.02);
        }

        .member-status {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
        }

        .member-status.active {
            background: rgba(46, 213, 115, 0.15);
            color: #2ed573;
        }

        .member-status.suspended {
            background: rgba(255, 193, 7, 0.15);
            color: #ffc107;
        }

        .member-actions {
            display: flex;
            gap: 8px;
        }

        .btn-small {
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 12px;
            border: none;
            cursor: pointer;
            transition: all 0.2s;
        }

        .btn-small.edit {
            background: #333;
            color: #fff;
        }

        .btn-small.edit:hover {
            background: #444;
        }

        .btn-small.suspend {
            background: rgba(255, 193, 7, 0.2);
            color: #ffc107;
        }

        .btn-small.suspend:hover {
            background: rgba(255, 193, 7, 0.3);
        }

        .btn-small.delete {
            background: rgba(255, 71, 87, 0.2);
            color: #ff4757;
        }

        .btn-small.delete:hover {
            background: rgba(255, 71, 87, 0.3);
        }

        .btn-small.activate {
            background: rgba(46, 213, 115, 0.2);
            color: #2ed573;
        }

        .btn-small.activate:hover {
            background: rgba(46, 213, 115, 0.3);
        }

        /* News Styles */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 24px;
        }

        .news-card {
            background: #1a1a1a;
            border: 1px solid #333;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
        }

        .news-card:hover {
            transform: translateY(-4px);
            border-color: #d4a853;
            box-shadow: 0 16px 32px rgba(0,0,0,0.3);
        }

        .news-card.unread {
            border-left: 4px solid #d4a853;
        }

        .news-card.unread::after {
            content: '';
            position: absolute;
            top: 16px;
            right: 16px;
            width: 12px;
            height: 12px;
            background: #d4a853;
            border-radius: 50%;
            box-shadow: 0 0 10px #d4a853;
        }

        .news-thumb {
            aspect-ratio: 16/9;
            background: #252525;
            position: relative;
        }

        .news-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .news-thumb .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            background: rgba(212, 168, 83, 0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #0a0a0a;
        }

        .news-info {
            padding: 24px;
        }

        .news-info h4 {
            font-size: 18px;
            margin-bottom: 10px;
            line-height: 1.4;
        }

        .news-info p {
            color: #888;
            font-size: 14px;
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-date {
            color: #666;
            font-size: 12px;
            margin-top: 12px;
        }

        .news-detail {
            display: none;
            padding: 40px;
            background: #0a0a0a;
            min-height: calc(100vh - 70px);
        }

        .news-detail.active {
            display: block;
        }

        .news-detail-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .news-media {
            width: 100%;
            aspect-ratio: 16/9;
            background: #000;
            border-radius: 16px;
            overflow: hidden;
            margin-bottom: 32px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.5);
        }

        .news-media img,
        .news-media iframe {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border: none;
        }

        .news-text {
            background: #1a1a1a;
            border: 1px solid #333;
            border-radius: 16px;
            padding: 32px;
        }

        .news-text h1 {
            font-size: 32px;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .news-text p {
            color: #b8b8d1;
            font-size: 17px;
            line-height: 1.8;
        }

        .news-badge {
            display: inline-block;
            background: #d4a853;
            color: #0a0a0a;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .admin-news-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .admin-news-item {
            background: #1a1a1a;
            border: 1px solid #333;
            border-radius: 12px;
            padding: 20px;
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .admin-news-thumb {
            width: 120px;
            height: 68px;
            background: #252525;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .admin-news-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .admin-news-info {
            flex: 1;
        }

        .admin-news-info h4 {
            font-size: 16px;
            margin-bottom: 6px;
        }

        .admin-news-info p {
            color: #888;
            font-size: 13px;
            margin-bottom: 8px;
        }

        .admin-news-meta {
            display: flex;
            gap: 16px;
            font-size: 12px;
            color: #666;
        }

        .admin-news-actions {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .media-type-selector {
            display: flex;
            gap: 16px;
            margin-bottom: 16px;
        }

        .media-type-btn {
            flex: 1;
            padding: 12px;
            background: #0f0f0f;
            border: 2px solid #333;
            border-radius: 10px;
            color: #888;
            cursor: pointer;
            transition: all 0.2s;
        }

        .media-type-btn.active {
            border-color: #d4a853;
            color: #d4a853;
            background: rgba(212, 168, 83, 0.1);
        }

        .unread-indicator {
            background: #d4a853;
            color: #0a0a0a;
            font-size: 11px;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 10px;
            margin-left: 8px;
        }

        .tab-with-badge {
            position: relative;
        }

        /* Password Reset Modal */
        .reset-instructions {
            color: #888;
            font-size: 14px;
            margin-bottom: 24px;
            line-height: 1.6;
        }

        .success-message {
            background: rgba(46, 213, 115, 0.15);
            border: 1px solid rgba(46, 213, 115, 0.3);
            color: #2ed573;
            padding: 16px;
            border-radius: 10px;
            margin-bottom: 20px;
            text-align: center;
        }

        .error-message {
            background: rgba(255, 71, 87, 0.15);
            border: 1px solid rgba(255, 71, 87, 0.3);
            color: #ff4757;
            padding: 16px;
            border-radius: 10px;
            margin-bottom: 20px;
            text-align: center;
        }