* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #050505;
    color: #d4af37;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animated Background */
.wave-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.wave {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.07) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(184, 142, 20, 0.07) 0%, transparent 50%);
    animation: wave-animation 20s ease-in-out infinite;
}

.wave:nth-child(2) {
    animation-delay: -5s;
    opacity: 0.5;
}

.wave:nth-child(3) {
    animation-delay: -10s;
    opacity: 0.3;
}

@keyframes wave-animation {
    0%, 100% { transform: translate(-25%, -25%) rotate(0deg); }
    50% { transform: translate(-30%, -30%) rotate(180deg); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #d4af37 0%, #f5d060 50%, #b8860b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 4s ease infinite;
    background-size: 200% 200%;
    letter-spacing: 4px;
    text-transform: uppercase;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #a08020;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: #d4af37;
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #d4af37 0%, #f5d060 50%, #b8860b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    animation: float 3s ease-in-out infinite;
    font-weight: 800;
    letter-spacing: 2px;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(184, 142, 20, 0.12) 0%, transparent 50%);
    z-index: 0;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #d4af37 0%, #f5d060 40%, #b8860b 70%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
    letter-spacing: 10px;
    text-transform: uppercase;
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite, float 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #6b5a1e;
    margin-bottom: 2rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(212, 175, 55, 0.4);
    box-shadow: none;
    color: #d4af37;
    text-decoration: none;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    border-color: transparent;
    color: #050505;
    text-decoration: none;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: rgba(15, 12, 5, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out backwards;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(184, 142, 20, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #d4af37 0%, #f5d060 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card p {
    color: #6b5a1e;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    background: rgba(10, 8, 2, 0.6);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(15, 12, 5, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.35);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #d4af37 0%, #f5d060 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6b5a1e;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Cards / Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: rgba(12, 10, 3, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(212, 175, 55, 0.15);
    overflow: hidden;
    position: relative;
    text-align: center;
}

.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.06) 0%, rgba(184, 142, 20, 0.06) 100%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(212, 175, 55, 0.06) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: shimmer 4s infinite;
    z-index: 1;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.45);
}

.card:hover::before { opacity: 1; }
.card:hover::after { animation: shimmer 2s infinite; }

.card > * { position: relative; z-index: 2; }

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 0;
    background: linear-gradient(135deg, #1a1500 0%, #0a0800 100%);
    transition: transform 0.4s;
}

.card:hover .card-image { transform: scale(1.1); }

.card-content {
    padding: 1.5rem;
    text-align: center;
}

.card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.card h3 {
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #d4af37 0%, #f5d060 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.card-meta {
    color: #6b5a1e;
    font-size: 0.9rem;
}

.about-content {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(12, 10, 3, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    color: #a08020;
}

/* Video Cards */
.video-card {
    position: relative;
    cursor: pointer;
}

.video-card > div:first-child {
    position: relative;
    height: 200px;
}

.video-thumbnail {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(184, 142, 20, 0.15) 100%);
    border-radius: 0;
    margin-bottom: 0;
    position: absolute;
    top: 0; left: 0;
    overflow: hidden;
    transition: all 0.4s;
    z-index: 1;
}

.video-thumbnail::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 70px; height: 70px;
    background: rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.4);
    transition: all 0.4s;
}

.video-thumbnail::after {
    content: '▶';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-45%, -50%);
    font-size: 1.8rem;
    color: rgba(212, 175, 55, 0.9);
    transition: all 0.4s;
    z-index: 2;
}

.video-card:hover .video-thumbnail::before {
    width: 80px; height: 80px;
    background: rgba(212, 175, 55, 0.25);
}

.video-card:hover .video-thumbnail::after {
    transform: translate(-45%, -50%) scale(1.2);
}

/* Video Thumbnail Image */
.video-thumbnail-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0;
    background: #0a0800;
    display: block;
    position: relative;
    z-index: 0;
}

.video-card:hover .video-thumbnail-img {
    transform: scale(1.05);
    transition: transform 0.4s;
}

/* Video Channel Name */
.card-channel {
    color: #6b5a1e;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* Video Date */
.card-date {
    color: #4a3e10;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

/* New Badge */
.new-badge {
    position: absolute;
    top: 10px; right: 10px;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    color: #050505;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
}

/* Video Type Tabs */
.video-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.video-tab-btn {
    padding: 0.8rem 2.5rem;
    background: rgba(12, 10, 3, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    color: #6b5a1e;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.video-tab-btn:hover {
    border-color: rgba(212, 175, 55, 0.5);
    color: #d4af37;
}

.video-tab-btn.active {
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    border-color: transparent;
    color: #050505;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

/* Buttons */
.btn {
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 50%, #d4af37 100%);
    background-size: 200% 200%;
    color: #050505;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.4s;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.5px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
    background-position: 100% 50%;
    text-decoration: none;
    color: #050505;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(12, 10, 3, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 15px;
    color: #d4af37;
    font-family: inherit;
    transition: all 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #4a3e10;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: block;
}

.form-message.error {
    background: rgba(180, 50, 50, 0.15);
    color: #f87171;
    border: 1px solid rgba(180, 50, 50, 0.3);
    display: block;
}

/* Footer */
.footer {
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.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;
    background: linear-gradient(135deg, #d4af37 0%, #f5d060 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 3px;
}

.footer-section p {
    color: #4a3e10;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s;
    filter: grayscale(0.5);
}

.social-link:hover {
    filter: grayscale(0);
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    color: #3a3010;
}

.footer-bottom p { margin: 0.5rem 0; }

/* Admin Styles */
.admin-container {
    min-height: 100vh;
    background: #050505;
    position: relative;
}

.admin-container::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(184, 142, 20, 0.05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.admin-header {
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    z-index: 1;
}

.admin-header h1 {
    background: linear-gradient(135deg, #d4af37 0%, #f5d060 50%, #b8860b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
    letter-spacing: 3px;
}

.admin-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.admin-section {
    background: rgba(12, 10, 3, 0.8);
    backdrop-filter: blur(10px);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.admin-section h2 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #d4af37 0%, #f5d060 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.form-group input {
    flex: 1;
    min-width: 200px;
    padding: 0.8rem;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 15px;
    color: #d4af37;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus {
    border-color: #d4af37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    outline: none;
}

#about-input {
    width: 100%;
    padding: 1rem;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 15px;
    color: #d4af37;
    font-family: inherit;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

#about-input:focus {
    border-color: #d4af37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    outline: none;
}

.items-list { margin-top: 1.5rem; }

.item {
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(212, 175, 55, 0.12);
    transition: all 0.3s;
}

.item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.1);
}

.item-info strong { color: #d4af37; font-size: 1.1rem; }
.item-info small { color: #4a3e10; font-size: 0.9rem; }
.item-info { flex: 1; }

.item-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: 10px;
}

.btn-delete {
    background: linear-gradient(135deg, #8b1a1a 0%, #6b1010 100%);
    color: #ffaaaa;
    box-shadow: none;
}

.btn-delete:hover {
    box-shadow: 0 6px 20px rgba(139, 26, 26, 0.5);
    color: #ffaaaa;
}

.btn-edit {
    background: linear-gradient(135deg, #1a3a5c 0%, #0f2540 100%);
    color: #7ab3e0;
    box-shadow: none;
}

.btn-edit:hover {
    box-shadow: 0 6px 20px rgba(26, 58, 92, 0.5);
    color: #7ab3e0;
}

/* Login Screen */
.login-screen {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #050505;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.login-box {
    background: rgba(12, 10, 3, 0.95);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(212, 175, 55, 0.05);
    text-align: center;
    min-width: 350px;
}

.login-box h2 {
    background: linear-gradient(135deg, #d4af37 0%, #f5d060 50%, #b8860b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    font-size: 2rem;
    letter-spacing: 3px;
}

.login-box input {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    color: #d4af37;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.login-box input:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.login-error {
    color: #f87171;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Admin Tabs */
.admin-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    background: rgba(12, 10, 3, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.tab-btn {
    padding: 0.8rem 1.5rem;
    background: rgba(5, 5, 5, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 15px;
    color: #6b5a1e;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: inherit;
}

.tab-btn:hover {
    border-color: rgba(212, 175, 55, 0.4);
    color: #d4af37;
    transform: translateY(-2px);
}

.tab-btn.active {
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    border-color: transparent;
    color: #050505;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    font-weight: 700;
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
    padding: 0.8rem;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 15px;
    color: #d4af37;
    font-family: inherit;
    resize: vertical;
    transition: all 0.3s;
}

.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus {
    border-color: #d4af37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    outline: none;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
    color: #3a3010;
}

.form-grid select option {
    background: #0a0800;
    color: #d4af37;
}

.form-grid textarea { grid-column: 1 / -1; min-height: 80px; }
.form-grid .btn { grid-column: 1 / -1; }

/* Notification */
.notification {
    position: fixed;
    top: 20px; right: 20px;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    color: #050505;
    padding: 1rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease-out;
    font-weight: 700;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

/* Messages */
.message-item {
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 15px;
    display: block;
    border: 1px solid rgba(212, 175, 55, 0.12);
    transition: all 0.3s;
}

.message-item.unread {
    border-color: rgba(212, 175, 55, 0.35);
    background: rgba(212, 175, 55, 0.03);
}

.message-item .item-info { margin-bottom: 1rem; }
.message-item .item-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.unread-badge {
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    color: #050505;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 0.5rem;
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(12, 10, 3, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.legal-content h1 { margin-bottom: 2rem; }

.legal-content h2 {
    color: #d4af37;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-content h3 {
    color: #6b5a1e;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #6b5a1e;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: #6b5a1e;
}

.legal-content ul li { margin-bottom: 0.5rem; }

/* Responsive */
@media (max-width: 768px) {
    .nav-links { gap: 1rem; font-size: 0.9rem; }
    .grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .form-group { flex-direction: column; }
    .hero-title { font-size: 3rem; letter-spacing: 5px; }
    .hero-subtitle { font-size: 1rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .social-links { justify-content: center; }
    .video-tabs { gap: 0.5rem; }
    .video-tab-btn { padding: 0.6rem 1.5rem; font-size: 0.9rem; }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .grid { grid-template-columns: repeat(2, 1fr); }
}

/* Subsection Title */
.subsection-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #6b5a1e;
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.subsection-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

/* Platforms Grid (Frontend) */
.platforms-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
    margin-top: 1rem;
}

.platform-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.4rem;
    background: rgba(12, 10, 3, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #a08020;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.platform-badge:hover {
    border-color: rgba(212, 175, 55, 0.5);
    color: #d4af37;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}

.platform-badge .platform-icon {
    font-size: 1.3rem;
}

/* Platforms Checkboxes (Admin) */
.platforms-checkboxes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.8rem;
}

.platform-checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: rgba(5, 5, 5, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
}

.platform-checkbox-item:hover {
    border-color: rgba(212, 175, 55, 0.35);
    background: rgba(212, 175, 55, 0.04);
}

.platform-checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #d4af37;
    cursor: pointer;
    flex-shrink: 0;
}

.platform-checkbox-item.checked {
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.07);
}

.platform-checkbox-item span {
    color: #a08020;
    font-size: 0.95rem;
    font-weight: 500;
}

.platform-checkbox-item .platform-icon {
    font-size: 1.2rem;
}
