/* ==============================
   CuttiesCraft - Main Stylesheet
   ============================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-primary: #020617;
    --bg-secondary: #0a0f1e;
    --bg-card: rgba(15, 20, 40, 0.8);
    --bg-card-hover: rgba(20, 28, 55, 0.9);
    --pink: #ec4899;
    --pink-light: #f472b6;
    --pink-glow: rgba(236, 72, 153, 0.3);
    --purple: #a855f7;
    --purple-glow: rgba(168, 85, 247, 0.3);
    --blue: #3b82f6;
    --green: #22c55e;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #475569;
    --border: rgba(255, 255, 255, 0.07);
    --border-pink: rgba(236, 72, 153, 0.3);
    --border-purple: rgba(168, 85, 247, 0.3);
    --gradient-header: linear-gradient(135deg, #020617 0%, #0f0625 50%, #020617 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ═══ SCROLLBAR ═══ */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #0a0a1a;
}

::-webkit-scrollbar-thumb {
    background: var(--pink);
    border-radius: 3px;
}

/* ═══ NAVBAR ═══ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

#navbar.scrolled {
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    outline: none;
}

.nav-logo img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid var(--border-pink);
    object-fit: cover;
    background: #0f0a1a;
    display: block;
}

.nav-logo-text .name {
    font-weight: 800;
    font-size: 15px;
    letter-spacing: -0.3px;
    color: #fff;
}

.nav-logo-text .tagline {
    font-size: 9px;
    color: var(--pink);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #fff;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.online-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--green);
}

.online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.85);
    }
}

.btn-login {
    padding: 8px 20px;
    background: var(--pink);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.btn-login:hover {
    background: var(--pink-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--pink-glow);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-secondary);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ═══ HERO ═══ */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(2, 6, 23, 0.97) 0%,
            rgba(2, 6, 23, 0.75) 55%,
            rgba(2, 6, 23, 0.3) 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(2, 6, 23, 1) 0%, transparent 40%, rgba(2, 6, 23, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--text-secondary);
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2s infinite;
}

.hero-title {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-title .pink {
    color: var(--pink);
    text-shadow: 0 0 40px var(--pink-glow);
}

.hero-desc {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 420px;
    line-height: 1.7;
}

.hero-note {
    font-size: 11px;
    color: var(--text-muted);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 12px 24px;
    background: linear-gradient(135deg, #ec4899, #a855f7);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 32px rgba(236, 72, 153, 0.35);
    font-family: inherit;
}

.btn-download:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 40px rgba(236, 72, 153, 0.5);
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 11px;
    color: var(--text-muted);
}

.hero-meta .sep {
    width: 1px;
    height: 12px;
    background: var(--border);
}

.hero-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-meta i {
    font-size: 12px;
}

.hero-stats {
    display: flex;
    gap: 24px;
    padding-top: 8px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat .val {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
}

.hero-stat .lbl {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    background: var(--border);
    align-self: stretch;
}

/* Hero right: mock browser window */
.hero-right {
    display: flex;
    flex-direction: column;
}

.preview-window {
    background: #1a1a2a;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.preview-titlebar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: #0f0f1c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.preview-dots {
    display: flex;
    gap: 6px;
}

.preview-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.preview-dot.red {
    background: #ff5f56;
}

.preview-dot.yellow {
    background: #ffbd2e;
}

.preview-dot.green {
    background: #27c93f;
}

.preview-title {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

.preview-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center top;
}

.preview-footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.preview-footer-item {
    padding: 10px 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.preview-footer-item:last-child {
    border-right: none;
}

.preview-footer-item .key {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}

.preview-footer-item .val {
    font-size: 10px;
    color: var(--text-muted);
}

.preview-copyright {
    font-size: 10px;
    color: var(--text-muted);
    text-align: center;
    padding: 8px;
}

/* ═══ STATS BAR ═══ */
#stats-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(10, 15, 30, 0.9);
    padding: 16px 40px;
}

.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    overflow-x: auto;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.stat-item i {
    font-size: 14px;
}

.stat-item .stat-val {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
}

.stat-item .stat-lbl {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.stat-sep {
    width: 1px;
    height: 26px;
    background: var(--border);
    flex-shrink: 0;
}

/* ═══ SECTIONS COMMON ═══ */
section {
    padding: 80px 40px;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    color: var(--pink);
    text-align: center;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 900;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
    max-width: 500px;
    margin: 0 auto 60px;
}

/* ═══ REVEAL ANIMATION ═══ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══ GALLERY / ABOUT ═══ */
#about {
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.gallery-main {
    position: relative;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    cursor: pointer;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-main:hover img {
    transform: scale(1.05);
}

.gallery-main-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 14px;
    justify-content: space-between;
}

.gallery-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.gallery-badge {
    font-size: 10px;
    padding: 3px 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, 0.7);
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.gallery-thumb {
    height: 85px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    cursor: pointer;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.gallery-thumb:hover img {
    transform: scale(1.1);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    transition: transform 0.2s;
}

.about-feature:hover .about-feature-icon {
    transform: scale(1.1);
}

.about-feature-text h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.about-feature-text p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Lightbox */
#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

#lightbox.open {
    display: flex;
}

#lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 12px;
    object-fit: contain;
}

#lightbox .lb-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 28px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
    background: none;
    border: none;
}

#lightbox .lb-close:hover {
    color: #fff;
}

#lightbox .lb-prev,
#lightbox .lb-next {
    position: absolute;
    font-size: 36px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    background: none;
    border: none;
    padding: 16px;
    transition: color 0.2s;
}

#lightbox .lb-prev:hover,
#lightbox .lb-next:hover {
    color: var(--pink);
}

#lightbox .lb-prev {
    left: 20px;
}

#lightbox .lb-next {
    right: 20px;
}

/* ═══ FEATURES ═══ */
#features {
    background: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s;
    cursor: default;
}

.feature-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
    background: var(--bg-card-hover);
}

.feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 16px;
    transition: transform 0.2s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ═══ RULES ═══ */
#rules {
    background: var(--bg-secondary);
}

.rules-list {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rule-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: border-color 0.2s;
}

.rule-card:hover {
    border-color: var(--border-pink);
}

.rule-num {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(236, 72, 153, 0.1);
    border: 1px solid var(--border-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: var(--pink);
    flex-shrink: 0;
}

.rule-content h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.rule-content h3 i {
    color: rgba(236, 72, 153, 0.6);
    font-size: 12px;
}

.rule-content p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.rules-note {
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 24px;
}

/* ═══ STAFF ═══ */
#staff {
    background: var(--bg-primary);
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.staff-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px 12px;
    text-align: center;
    transition: all 0.3s;
}

.staff-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.staff-avatar {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.08);
    margin: 0 auto 12px;
    transition: border-color 0.2s;
    background: #1a1a2a;
}

.staff-card:hover .staff-avatar {
    border-color: var(--border-pink);
}

.staff-avatar img {
    width: 100%;
    height: 100%;
}

.staff-name {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 6px;
}

.staff-role {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 20px;
    border: 1px solid;
    margin-bottom: 8px;
}

.staff-role.owner {
    color: var(--pink);
    background: rgba(236, 72, 153, 0.1);
    border-color: rgba(236, 72, 153, 0.3);
}

.staff-role.admin {
    color: var(--purple);
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.3);
}

.staff-role.mod {
    color: var(--green);
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
}

.staff-bio {
    font-size: 10px;
    color: var(--text-muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ═══ FAQ ═══ */
#faq {
    background: var(--bg-secondary);
}

.faq-list {
    max-width: 650px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item.open {
    border-color: var(--border-pink);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: none;
    border: none;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.faq-question i {
    color: var(--text-muted);
    font-size: 16px;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    padding: 0 18px 16px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ═══ FOOTER ═══ */
footer {
    background: #08080c;
    border-top: 1px solid var(--border);
    padding: 60px 40px 30px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-brand img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.footer-brand-text .name {
    font-size: 14px;
    font-weight: 800;
}

.footer-brand-text .tagline {
    font-size: 9px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-about p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links ul a {
    font-size: 12px;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.footer-links ul a:hover {
    color: var(--pink);
}

.footer-server h4 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    margin-bottom: 16px;
}

.server-ip-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 10px;
}

.server-ip-box i {
    color: var(--pink);
    font-size: 16px;
}

.server-ip-box .ip-label {
    font-size: 10px;
    color: var(--text-muted);
}

.server-ip-box .ip-value {
    font-size: 13px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    color: #fff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: var(--text-muted);
}

/* ═══ AUTH MODAL ═══ */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 5000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.open {
    display: flex;
}

.modal-box {
    position: relative;
    width: 100%;
    max-width: 360px;
    background: #0f0f1a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #fff;
}

.modal-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 4px;
}

.modal-sub {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-group label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 13px;
    color: #fff;
    outline: none;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus {
    border-color: rgba(236, 72, 153, 0.4);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background: var(--pink);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    margin-top: 4px;
}

.btn-submit:hover {
    background: var(--pink-light);
}

.btn-submit:disabled {
    opacity: 0.5;
}

.modal-switch {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 12px;
    cursor: pointer;
    font-family: inherit;
    width: 100%;
    padding-top: 16px;
    transition: color 0.2s;
}

.modal-switch:hover {
    color: var(--pink);
}

/* ═══ TOAST ═══ */
#toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    transform: translateY(16px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
}

#toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.toast-inner.success {
    background: #16a34a;
}

.toast-inner.error {
    background: #dc2626;
}

/* ═══ MOBILE MENU ═══ */
#mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
}

#mobile-menu.open {
    display: block;
}

.mobile-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.mobile-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: #0f0f1a;
    border-left: 1px solid var(--border);
    padding: 80px 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-panel a {
    display: block;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.mobile-panel a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.mobile-sep {
    height: 1px;
    background: var(--border);
    margin: 12px 0;
}

.mobile-ip {
    margin-top: auto;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    border: 1px solid var(--border);
}

.mobile-ip .lbl {
    font-size: 10px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.mobile-ip .ip {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    font-weight: 700;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
    .staff-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #navbar {
        padding: 12px 20px;
    }

    .nav-links,
    .online-badge {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding: 100px 20px 40px;
        gap: 40px;
    }

    .hero-right {
        display: none;
    }

    section {
        padding: 60px 20px;
    }

    #stats-bar {
        padding: 16px 20px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}