:root {
    --primary: #0f172a;
    --secondary: #1e293b;
    --accent: #3b82f6;
    --accent-hover: #2563eb;
    --text: #1e293b;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --bg-dark: #0f172a;
    --border: #e2e8f0;
    --radius: 10px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.06), 0 2px 4px -1px rgba(0,0,0,0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.03);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 10px 10px -5px rgba(0,0,0,0.02);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* Header */
.main-header {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(226,232,240,0.6);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.3s ease;
}

.main-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { display: flex; align-items: center; text-decoration: none; gap: 12px; }
.logo img { max-height: 42px; width: auto; display: block; }
.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.4px;
}

.main-nav { display: flex; gap: 36px; align-items: center; }
.main-nav a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s ease;
    position: relative;
    padding: 6px 0;
}
.main-nav a:hover { color: var(--primary); }
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-nav a:hover::after { width: 100%; }

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 160px 28px 100px;
    background: linear-gradient(165deg, #f8fafc 0%, #f1f5f9 40%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(59,130,246,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59,130,246,0.04) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content { max-width: 720px; margin-bottom: 100px; position: relative; z-index: 1; }

.hero-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    background: rgba(59,130,246,0.08);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.hero h1 {
    font-size: clamp(38px, 5.5vw, 68px);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 28px;
    line-height: 1.08;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-subtitle strong {
    color: var(--accent);
    font-size: 34px;
    font-weight: 800;
}

.hero-desc {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 44px;
    line-height: 1.75;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    letter-spacing: 0.2px;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(15,23,42,0.2);
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15,23,42,0.25);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--border);
    box-shadow: none;
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

/* Trustpilot / Testimonials */
.trustpilot-section {
    width: 100%;
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

.trustpilot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    padding: 0 28px;
}

.trustpilot-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.trustpilot-link {
    font-size: 13px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}
.trustpilot-link:hover { opacity: 0.7; }

.testimonials-wrapper {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.testimonials-track {
    display: flex;
    gap: 20px;
    animation: scroll 35s linear infinite;
    width: max-content;
}

.testimonials-track:hover { animation-play-state: paused; }

.testimonial-card {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    padding: 28px;
    border-radius: var(--radius);
    min-width: 340px;
    max-width: 340px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(226,232,240,0.8);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card .stars {
    color: #f59e0b;
    font-size: 16px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 18px;
    font-style: italic;
    line-height: 1.65;
}

.testimonial-author {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Services */
.services {
    padding: 120px 0;
    background: var(--bg);
}

.services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: -1px;
}

.services-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 64px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.service-card {
    padding: 44px 36px;
    border-radius: var(--radius);
    background: var(--bg);
    border: 1px solid var(--border);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #60a5fa);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 52px;
    height: 52px;
    background: rgba(59,130,246,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 22px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary);
    font-weight: 700;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 14px;
}

/* Page Header */
.page-header {
    background: var(--primary);
    color: #fff;
    padding: 120px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 60%);
    border-radius: 50%;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
}

.page-header p {
    color: rgba(255,255,255,0.55);
    font-size: 17px;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

/* Contact */
.contact-section {
    padding: 80px 0 120px;
    background: var(--bg-alt);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg);
    padding: 48px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 13px;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.2s ease;
    background: var(--bg);
    color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

/* Content */
.content-section {
    padding: 80px 0 120px;
    background: var(--bg);
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.terms-content h2 {
    font-size: 24px;
    margin: 56px 0 20px;
    color: var(--primary);
    font-weight: 700;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border);
}

.terms-content h2:first-child { margin-top: 0; }

.terms-content p {
    margin-bottom: 18px;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
}

.terms-content ul {
    margin: 18px 0 18px 24px;
    color: var(--text-light);
}

.terms-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* Alerts */
.alert {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 28px;
    font-weight: 500;
    font-size: 14px;
    border-left: 4px solid;
}

.alert-success {
    background: #f0fdf4;
    color: #166534;
    border-color: #22c55e;
}

.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border-color: #ef4444;
}

/* Footer */
.main-footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.45);
    padding: 0;
    font-size: 14px;
}

.footer-top {
    padding: 72px 0 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-top .container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand .logo-text {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    display: block;
}

.footer-brand p {
    color: rgba(255,255,255,0.45);
    font-size: 14px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 14px;
    transition: color 0.2s ease;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
    padding: 24px 0;
    background: rgba(0,0,0,0.2);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
}

.admin-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.3) !important;
    font-size: 13px !important;
    text-decoration: none;
    transition: color 0.2s ease;
    margin-bottom: 0 !important;
}

.admin-footer-link:hover {
    color: rgba(255,255,255,0.6) !important;
}

.admin-footer-link svg {
    width: 16px;
    height: 16px;
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.admin-footer-link:hover svg {
    opacity: 0.8;
}

/* Login */
.login-page {
    background: linear-gradient(165deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 34px; letter-spacing: -1px; }
    .hero-subtitle strong { font-size: 26px; }
    .main-header .container { flex-direction: column; gap: 16px; }
    .main-nav { gap: 20px; }
    .services h2 { font-size: 28px; }
    .page-header h1 { font-size: 30px; }
    .testimonial-card { min-width: 280px; max-width: 280px; }
    .footer-top .container { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom .container { flex-direction: column; gap: 12px; text-align: center; }
    .contact-form { padding: 32px 24px; }
}

.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-discord {
    background: #5865F2;
    color: #fff;
    box-shadow: 0 4px 14px rgba(88,101,242,0.25);
}

.btn-discord:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88,101,242,0.35);
}

.btn-discord svg { flex-shrink: 0; }

/* Portfolio */
.portfolio {
    padding: 120px 0;
    background: var(--bg-alt);
}

.portfolio h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: -1px;
}

.portfolio-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 64px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

.portfolio-card {
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.portfolio-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-image-empty {
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-image-empty span {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-muted);
    text-align: center;
    padding: 20px;
}

.portfolio-info {
    padding: 28px;
}

.portfolio-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.portfolio-client {
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-info p {
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
}

.portfolio-link {
    display: inline-block;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s;
}

.portfolio-link:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .portfolio-grid { grid-template-columns: 1fr; }
    .portfolio h2 { font-size: 28px; }
}

/* Booking Section */
.booking {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.booking::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 60%);
    border-radius: 50%;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.booking-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #60a5fa;
    background: rgba(59,130,246,0.15);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.booking-text h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.booking-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 480px;
}

.booking-features {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
}

.booking-features li {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
}

.booking-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
}

.booking-price {
    margin-bottom: 28px;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -2px;
}

.price-period {
    font-size: 20px;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    margin-left: 4px;
}

.price-note {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    margin-top: 4px;
    font-weight: 500;
}

.booking-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.booking-activation {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
}

/* Booking Card Visual */
.booking-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.booking-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    width: 100%;
    max-width: 360px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.booking-card-header {
    display: flex;
    gap: 6px;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.booking-card-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
}

.booking-card-dot:first-child { background: #ef4444; }
.booking-card-dot:nth-child(2) { background: #f59e0b; }
.booking-card-dot:nth-child(3) { background: #22c55e; }

.booking-card-body {
    padding: 24px;
}

.booking-card-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.booking-card-row:last-of-type {
    border-bottom: none;
}

.booking-card-label {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
}

.booking-card-value {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
}

.booking-card-confirm {
    margin-top: 16px;
    padding: 12px;
    background: rgba(34,197,94,0.15);
    color: #4ade80;
    text-align: center;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .booking-content { grid-template-columns: 1fr; gap: 48px; }
    .booking-text h2 { font-size: 32px; }
    .price-amount { font-size: 36px; }
    .booking-buttons { flex-direction: column; align-items: flex-start; }
}
