/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #0f0f1e;
    color: #e0e0e0;
    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        "Helvetica Neue",
        Arial,
        sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

img {
    max-width: 100%;
    height: auto;
}

/* Accessibility */
:focus-visible {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

/* Selection */
::selection {
    background: #ffd700;
    color: #000;
}

/* Container System */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.container--md {
    max-width: 768px;
}

.container--xl {
    max-width: 1280px;
}

/* Grid System */
.grid {
    display: grid;
    gap: 1rem;
}

.grid--2-cols {
    grid-template-columns: repeat(2, 1fr);
}

.grid--3-cols {
    grid-template-columns: repeat(3, 1fr);
}

.grid--4-cols {
    grid-template-columns: repeat(4, 1fr);
}

.grid--responsive {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Flex Utilities */
.flex {
    display: flex;
}

/* Button Component */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition:
        width 0.6s,
        height 0.6s;
}

.btn:hover:before {
    width: 300px;
    height: 300px;
}

.btn--primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.btn--secondary {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffd700;
    border: 2px solid #ffd700;
}

.btn--secondary:hover {
    background: #ffd700;
    color: #000;
    transform: translateY(-2px);
}

.btn--large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn--small {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

/* Card Component */
.card {
    background: #1a1a2e;
    border-radius: 1rem;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.3);
}

.card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card__body {
    padding: 1.5rem;
}

.card__title {
    color: #ffd700;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.card__text {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card--featured {
    border: 2px solid #ffd700;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
}

/* Header Component */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.header__logo {
    height: 40px;
    animation: glow 2s ease-in-out infinite;
    position: relative;
    z-index: 1001;
}

@keyframes glow {
    0%,
    100% {
        filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
    }

    50% {
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
    }
}

.header__nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.header__link {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.header__link:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

.header__link:hover {
    color: #ffd700;
}

.header__link:hover:after {
    width: 100%;
}

.header__actions {
    display: flex;
    gap: 1rem;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.burger-menu__line {
    width: 30px;
    height: 3px;
    background: #ffd700;
    border-radius: 10px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger-menu--active .burger-menu__line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.burger-menu--active .burger-menu__line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.burger-menu--active .burger-menu__line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(20px);
    padding: 80px 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    z-index: 1000;
    border-left: 1px solid rgba(255, 215, 0, 0.2);
    overflow-y: auto;
}

.mobile-menu--active {
    right: 0;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.mobile-menu__link {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1.125rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-menu__link:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #ffd700;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.mobile-menu__link:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    padding-left: 1.5rem;
}

.mobile-menu__link:hover:before {
    transform: scaleY(1);
}

.mobile-menu__actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
    z-index: 999;
}

.mobile-menu-overlay--active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 50%, #0f0f1e 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 120px; /* Account for header + promo banner */
}

.hero:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(255, 215, 0, 0.1) 0%,
        transparent 50%
    );
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero__title {
    font-size: clamp(2rem, 5vw, 4rem);
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200% auto;
}

@keyframes shimmer {
    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: #e0e0e0;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__cta {
    animation: fadeInUp 0.8s ease 0.6s both;
}

/* Section Component */
.section {
    padding: 5rem 2rem;
    position: relative;
}

.section--dark {
    background: #0f0f1e;
}

.section--light {
    background: #1a1a2e;
}

.section__title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #ffd700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section__title:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    animation: expandWidth 2s ease-in-out infinite;
}

@keyframes expandWidth {
    0%,
    100% {
        width: 100px;
    }

    50% {
        width: 200px;
    }
}

.section__subtitle {
    text-align: center;
    color: #b0b0b0;
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

/* Feature Component */
.feature {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: scale(1.05);
}

.feature__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.feature__title {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature__text {
    color: #e0e0e0;
    line-height: 1.6;
}

/* Badge Component */
.badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.badge--new {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: #fff;
    animation: bounce 1s ease infinite;
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.badge--hot {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
}

.badge--vip {
    background: linear-gradient(135deg, #c0c0c0 0%, #ffffff 50%, #c0c0c0 100%);
    color: #000;
}

/* Image Component */
.image {
    width: 100%;
    height: auto;
    display: block;
}

.image--rounded {
    border-radius: 1rem;
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    padding: 1rem;
    text-align: center;
    color: #000;
    font-weight: 600;
    position: fixed;
    top: 80px; /* Position below header */
    left: 0;
    right: 0;
    z-index: 999;
    overflow: hidden;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.promo-banner--visible {
    animation: fadeIn 0.5s ease forwards;
}

.promo-banner:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: slide 2s linear infinite;
}

@keyframes slide {
    to {
        left: 100%;
    }
}

/* Stats Component */
.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
}

.stats__item {
    text-align: center;
}

.stats__number {
    font-size: 3rem;
    color: #ffd700;
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
}

.stats__label {
    color: #b0b0b0;
    font-size: 1rem;
}

/* Footer Component */
.footer {
    background: #0a0a14;
    padding: 3rem 2rem 1.5rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer__content {
    max-width: 1280px;
    margin: 0 auto;
}

.footer__text {
    color: #b0b0b0;
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

/* Spacing Utilities */
.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

/* Text Utilities */
.text--gold {
    color: #ffd700;
}

.text--gray {
    color: #b0b0b0;
}

/* Animation Utilities */
.animate--fade-in {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate--slide-up {
    animation: slideUp 0.6s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate--float {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Utilities */
.hide-mobile {
    display: flex;
}

.hide-desktop {
    display: none;
}

@media (max-width: 768px) {
    .grid--2-cols,
    .grid--3-cols,
    .grid--4-cols {
        grid-template-columns: 1fr;
    }

    .header__nav {
        gap: 1rem;
    }

    .section {
        padding: 3rem 1rem;
    }

    .hide-mobile {
        display: none !important;
    }

    .hide-desktop {
        display: block;
    }

    .burger-menu {
        display: flex;
    }

    .hero__cta .btn--secondary {
        margin-left: 0 !important;
        margin-top: 1rem;
    }
}

/* Accordion Component */
.accordion {
    background: #1a1a2e;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin-bottom: 1rem;
}

.accordion__item {
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.accordion__item:last-child {
    border-bottom: none;
}

.accordion__header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    color: #e0e0e0;
    font-size: 1.125rem;
    font-weight: 600;
}

.accordion__header:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
}

.accordion__header:focus {
    outline: 2px solid #ffd700;
    outline-offset: -2px;
}

.accordion__icon {
    transition: transform 0.3s ease;
    font-size: 1.25rem;
    color: #ffd700;
}

.accordion__item--active .accordion__icon {
    transform: rotate(180deg);
}

.accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1rem;
}

.accordion__item--active .accordion__content {
    max-height: 500px;
    padding: 1.5rem;
}

.accordion__text {
    color: #e0e0e0;
    line-height: 1.6;
}

/* Flex Content Layout for Image + Text */
.flex-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.flex-content--reverse {
    flex-direction: row-reverse;
}

.flex-content__text {
    flex: 1;
}

.flex-content__image {
    flex: 1;
    max-width: 500px;
}

.flex-content__image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsive for Flex Content */
@media (max-width: 768px) {
    .flex-content,
    .flex-content--reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .flex-content__text,
    .flex-content__image {
        flex: 1;
        width: 100%;
    }

    .flex-content__image {
        max-width: 100%;
        order: -1;
    }
}

/* Content Section Variants */
.content-section {
    padding: 5rem 2rem;
    position: relative;
}

.content-section--text-only {
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 100%);
}

.content-section--image-left {
    background: #1a1a2e;
}

.content-section--image-right {
    background: #0f0f1e;
}

.content-section__container {
    max-width: 1280px;
    margin: 0 auto;
}

.content-section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.content-section__title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #ffd700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.content-section__title:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

.content-section__subtitle {
    color: #b0b0b0;
    font-size: 1.125rem;
    margin-top: 1rem;
}

.content-section__grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.content-section__grid--2-cols {
    grid-template-columns: 1fr 1fr;
}

.content-section__text {
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-section__image {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Testimonial Component */
.testimonial {
    background: #1a1a2e;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
}

.testimonial:before {
    content: "\"";
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: rgba(255, 215, 0, 0.2);
    font-family: serif;
}

.testimonial__text {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffd700;
}

.testimonial__name {
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial__role {
    color: #b0b0b0;
    font-size: 0.875rem;
}

/* Prevent body scroll when menu open */
body.menu-open {
    overflow: hidden;
}

/* Admin Panel Styles */
.admin-dashboard {
    background: #0f0f1e;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.admin-section {
    display: block;
}

.admin-sidebar {
    background: #1a1a2e;
    width: 250px;
    min-height: 100vh;
    border-right: 1px solid rgba(255, 215, 0, 0.2);
    position: fixed;
    left: 0;
    top: 0;
    padding: 2rem 0;
}

.admin-sidebar__logo {
    color: #ffd700;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.admin-sidebar__nav {
    list-style: none;
}

.admin-sidebar__nav-item {
    margin-bottom: 0.5rem;
}

.admin-sidebar__nav-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.admin-sidebar__nav-link:hover,
.admin-sidebar__nav-link--active {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    border-left-color: #ffd700;
}

.admin-main {
    margin-left: 250px;
    padding: 2rem;
}

.admin-header {
    background: #1a1a2e;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.admin-header__title {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.admin-header__subtitle {
    color: #e0e0e0;
    opacity: 0.8;
}

/* Table Styles */
.admin-table {
    width: 100%;
    background: #1a1a2e;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-collapse: collapse;
    margin: 0;
}

.admin-table__header {
    background: rgba(255, 215, 0, 0.1);
}

.admin-table th {
    padding: 1rem;
    text-align: left;
    color: #ffd700;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.admin-table td {
    padding: 1rem;
    color: #e0e0e0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    vertical-align: middle;
}

.admin-table th,
.admin-table td {
    text-align: left;
}

.admin-table th:first-child,
.admin-table td:first-child {
    padding-left: 1.5rem;
}

.admin-table th:last-child,
.admin-table td:last-child {
    padding-right: 1.5rem;
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table tr:hover {
    background: rgba(255, 215, 0, 0.05);
}

/* Form Styles */
.admin-form {
    background: #1a1a2e;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin-bottom: 2rem;
}

.admin-form__group {
    margin-bottom: 1.5rem;
}

.admin-form__label {
    display: block;
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.admin-form__input,
.admin-form__select,
.admin-form__textarea {
    width: 100%;
    padding: 0.75rem;
    background: #0f0f1e;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 0.5rem;
    color: #e0e0e0;
    font-family: inherit;
    transition: all 0.3s ease;
}

.admin-form__input:focus,
.admin-form__select:focus,
.admin-form__textarea:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.admin-form__textarea {
    resize: vertical;
    min-height: 100px;
}

.admin-form__actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Action Buttons */
.btn-action {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-edit {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
}

.btn-edit:hover {
    background: #ffd700;
    color: #000;
}

.btn-delete {
    background: rgba(255, 67, 54, 0.2);
    color: #ff4336;
}

.btn-delete:hover {
    background: #ff4336;
    color: #fff;
}

.btn-success {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
}

.btn-success:hover {
    background: #4caf50;
    color: #fff;
}

/* Stats Cards */
.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.admin-stat-card {
    background: #1a1a2e;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
}

.admin-stat-card__value {
    font-size: 2rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.admin-stat-card__label {
    color: #e0e0e0;
    opacity: 0.8;
}

/* Modal Styles */
.admin-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.admin-modal--active {
    display: flex;
}

.admin-modal__content {
    background: #1a1a2e;
    border-radius: 1rem;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.admin-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.admin-modal__title {
    color: #ffd700;
    font-size: 1.5rem;
}

.admin-modal__close {
    background: none;
    border: none;
    color: #e0e0e0;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.admin-modal__close:hover {
    color: #ff4336;
}

/* Responsive */
@media (max-width: 768px) {
    .admin-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .admin-sidebar--active {
        transform: translateX(0);
    }
    
    .admin-main {
        margin-left: 0;
        padding: 1rem;
    }
    
    .admin-stats {
        grid-template-columns: 1fr;
    }
    
    .admin-table {
        font-size: 0.875rem;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 0.5rem;
    }
}
