@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Outfit:wght@400;600;800&display=swap');

:root {
    --bg-dark: #07090F;
    --bg-surface: rgba(18, 22, 35, 0.6);
    --bg-surface-solid: #121623;
    
    --neon-blue: #00f2fe;
    --neon-cyan: #53f5ff;
    --neon-purple: #9b51e0;
    --accent: #4facfe;

    --text-primary: #ffffff;
    --text-secondary: #a0aabf;
    --text-tertiary: #6e7a96;

    --glass-border: rgba(255, 255, 255, 0.1);
    --glow-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
    --glow-shadow-purple: 0 0 20px rgba(155, 81, 224, 0.2);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, .brand-logo {
    font-family: 'Outfit', sans-serif;
}

/* Glassmorphism Utilities */
.glass {
    background: var(--bg-surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

/* Text Gradients */
.gradient-text {
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(90deg, var(--accent), var(--neon-purple));
    color: white;
    box-shadow: 0 4px 15px rgba(155, 81, 224, 0.3);
}

.btn-primary:hover {
    box-shadow: var(--glow-shadow-purple);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    border-color: var(--neon-blue);
    box-shadow: var(--glow-shadow);
    transform: translateY(-2px);
}

/* Animations Utilities */
.hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* Base Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: background 0.3s ease;
}

nav.scrolled {
    background: rgba(7, 9, 15, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
}

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

.brand-logo {
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--neon-blue);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0.4;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(7, 9, 15, 0.2) 0%, rgba(7, 9, 15, 0.95) 80%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Features Section */
.features {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

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

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 40px 30px;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
    background: var(--neon-purple);
    filter: blur(80px);
    opacity: 0.5;
    z-index: -1;
    transition: opacity 0.3s;
}

.feature-card:hover::before {
    opacity: 0.8;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--neon-blue);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Split Sections */
.split-section {
    padding: 100px 0;
    display: flex;
    align-items: center;
    gap: 60px;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.split-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.split-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.split-content ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.split-content ul li::before {
    content: '→';
    color: var(--neon-blue);
    font-weight: bold;
}

.split-image {
    flex: 1;
    position: relative;
}

.split-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 1px solid var(--glass-border);
}

.split-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(155, 81, 224, 0.15) 0%, transparent 70%);
    z-index: -1;
    filter: blur(40px);
}

/* CTA Section */
.cta {
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: radial-gradient(ellipse at bottom, rgba(0, 242, 254, 0.1) 0%, transparent 60%);
    z-index: -1;
}

.cta h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.cta p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-inline: auto;
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 40px 0;
    text-align: center;
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
    .split-section, .split-section.reverse {
        flex-direction: column;
    }
    .hero h1 {
        font-size: 3rem;
    }
}
@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .nav-links {
        display: none;
    }
}

/* ===================================
   RESTAURANT DIRECTORY & DETAIL PAGES
   =================================== */

/* Directory Page Header */
.directory-hero {
    padding: 140px 0 60px;
    text-align: center;
    position: relative;
}

.directory-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(155, 81, 224, 0.12) 0%, transparent 60%);
    z-index: -1;
}

.directory-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.directory-hero p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto 40px;
}

/* Search & Filters */
.directory-filters {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 20px;
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--text-primary);
    border-color: var(--neon-blue);
    box-shadow: var(--glow-shadow);
}

.search-input {
    width: 100%;
    max-width: 500px;
    padding: 14px 24px;
    border-radius: 12px;
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}

.search-input::placeholder {
    color: var(--text-tertiary);
}

.search-input:focus {
    border-color: var(--neon-blue);
    box-shadow: var(--glow-shadow);
}

/* Restaurant Grid */
.restaurant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
    padding-bottom: 80px;
}

.restaurant-card {
    background: var(--bg-surface);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 0;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.restaurant-card:hover {
    transform: translateY(-6px);
    border-color: rgba(155, 81, 224, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), var(--glow-shadow-purple);
}

.restaurant-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 80px;
    height: 80px;
    background: var(--neon-purple);
    filter: blur(60px);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.restaurant-card:hover::before {
    opacity: 0.5;
}

.card-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-bottom: 1px solid var(--glass-border);
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card-content-wrapper {
    padding: 20px 24px 28px;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.card-cuisine {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--neon-blue);
}

.card-price {
    font-size: 0.85rem;
    color: var(--neon-purple);
    font-weight: 600;
}

.restaurant-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
}

.card-neighborhood {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    margin-bottom: 12px;
}

.card-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--glass-border);
}

.card-rating {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.card-rating span {
    color: #f5c518;
}

.card-claim {
    font-size: 0.8rem;
    color: var(--neon-blue);
    font-weight: 500;
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-tertiary);
    font-size: 1.1rem;
}

/* Restaurant Detail Page */
.detail-hero {
    padding: 120px 0 40px;
    position: relative;
}

.detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(155, 81, 224, 0.1) 0%, transparent 60%);
    z-index: -1;
}

.detail-breadcrumb {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    margin-bottom: 20px;
}

.detail-breadcrumb a {
    color: var(--text-tertiary);
    text-decoration: none;
    transition: color 0.3s;
}

.detail-breadcrumb a:hover {
    color: var(--neon-blue);
}

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.detail-header h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.detail-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 8px;
}

.detail-tag {
    padding: 5px 14px;
    border-radius: 20px;
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.detail-tag.cuisine {
    color: var(--neon-blue);
    border-color: rgba(0, 242, 254, 0.2);
}

.detail-tag.price {
    color: var(--neon-purple);
    border-color: rgba(155, 81, 224, 0.2);
}

.detail-claim-btn {
    flex-shrink: 0;
}

.detail-body {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 50px 0 80px;
}

.detail-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.detail-section-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.detail-dishes {
    list-style: none;
    margin-bottom: 40px;
}

.detail-dishes li {
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-dishes li::before {
    content: '◆';
    color: var(--neon-purple);
    font-size: 0.6rem;
}

/* Info Sidebar */
.detail-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.info-card {
    background: var(--bg-surface);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 28px 24px;
}

.info-row {
    display: flex;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--glass-border);
    align-items: flex-start;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 80px;
    flex-shrink: 0;
}

.info-value {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.claim-banner {
    margin-top: 24px;
    background: linear-gradient(135deg, rgba(155, 81, 224, 0.1), rgba(0, 242, 254, 0.1));
    border: 1px solid rgba(155, 81, 224, 0.2);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.claim-banner p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.claim-banner .btn {
    width: 100%;
    text-align: center;
}

/* Responsive - Restaurant Pages */
@media (max-width: 900px) {
    .detail-body {
        grid-template-columns: 1fr;
    }
    .detail-sidebar {
        position: static;
    }
    .detail-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .restaurant-grid {
        grid-template-columns: 1fr;
    }
    .directory-hero h1 {
        font-size: 2rem;
    }
}

/* ===================================
   LOGIN PAGE
   =================================== */

.login-body {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.login-page {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.login-bg-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.login-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: floatOrb 15s infinite ease-in-out alternate;
}

.login-orb-1 {
    top: -10%;
    right: 5%;
    width: 500px;
    height: 500px;
    background: var(--neon-purple);
    animation-delay: 0s;
}

.login-orb-2 {
    bottom: -10%;
    left: 5%;
    width: 400px;
    height: 400px;
    background: var(--neon-blue);
    animation-delay: -5s;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-30px, 40px) scale(1.1); }
}

.login-card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 440px;
    padding: 0 20px;
}

.login-card {
    width: 100%;
    padding: 48px 40px;
    text-align: center;
    margin-bottom: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), var(--glow-shadow);
}

.login-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.login-card h1 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.login-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 32px;
}

.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 12px;
    padding: 16px;
    font-size: 1.05rem;
}

.btn-google svg {
    width: 22px;
    height: 22px;
}

.login-terms {
    margin-top: 24px;
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

.login-back {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.login-back:hover {
    color: var(--neon-blue);
}

/* Responsive - Login Page */
@media (max-width: 480px) {
    .login-card {
        padding: 40px 24px;
    }

    .login-logo {
        font-size: 1.8rem;
    }

    .login-card h1 {
        font-size: 1.6rem;
    }
}

/* ===================================
   BOOKING WIDGET
   =================================== */

.bw-card {
    background: rgba(18, 22, 35, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px;
    margin-top: 24px;
}

.bw-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.bw-form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.bw-field {
    flex: 1;
    margin-bottom: 14px;
}

.bw-field label {
    display: block;
    font-size: 0.8rem;
    color: #a0aabf;
    margin-bottom: 6px;
    font-weight: 500;
}

.bw-field input,
.bw-field select {
    width: 100%;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.bw-field input:focus,
.bw-field select:focus {
    border-color: #00f2fe;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 242, 254, 0.1);
}

.bw-field select option {
    background: #121623;
    color: #fff;
}

.bw-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #00f2fe, #9b51e0);
    color: white;
    border: none;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
}

.bw-btn:hover:not(:disabled) {
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
    transform: translateY(-1px);
}

.bw-btn:disabled {
    opacity: 0.6;
    cursor: wait;
}

.bw-btn-link {
    display: block;
    background: none;
    border: none;
    color: #a0aabf;
    font-size: 0.85rem;
    cursor: pointer;
    margin-top: 12px;
    text-align: center;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.bw-btn-link:hover {
    color: #00f2fe;
}

.bw-label {
    color: #a0aabf;
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.bw-slots {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 8px;
}

.bw-slot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    cursor: pointer;
    color: #fff;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
}

.bw-slot:hover {
    border-color: #00f2fe;
    background: rgba(0, 242, 254, 0.05);
}

.bw-slot-type {
    font-weight: 500;
    text-transform: capitalize;
    font-size: 0.9rem;
}

.bw-slot-count {
    color: #00f2fe;
    font-size: 0.85rem;
    font-weight: 500;
}

.bw-slot-time {
    color: #6e7a96;
    font-size: 0.8rem;
}

.bw-error {
    color: #ff4757;
    font-size: 0.85rem;
    margin-top: 12px;
    text-align: center;
}

.bw-confirmed {
    text-align: center;
    padding: 10px 0;
}

.bw-check-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0, 196, 140, 0.15);
    color: #00c48c;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.bw-confirmed h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.bw-conf-code {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #00f2fe;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.bw-conf-details {
    color: #a0aabf;
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.8;
}

.bw-conf-note {
    color: #6e7a96;
    font-size: 0.8rem;
    margin-bottom: 20px;
}

/* ===================================
   BLOG
   =================================== */

.blog-post-hero {
    position: relative;
    padding: 150px 0 56px;
    overflow: hidden;
}

.blog-post-hero::before,
.blog-post-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(90px);
    opacity: 0.28;
    pointer-events: none;
}

.blog-post-hero::before {
    width: 420px;
    height: 420px;
    top: 110px;
    left: -120px;
    background: rgba(0, 242, 254, 0.45);
}

.blog-post-hero::after {
    width: 460px;
    height: 460px;
    top: 30px;
    right: -140px;
    background: rgba(155, 81, 224, 0.38);
}

.blog-post-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 36px;
    align-items: center;
}

.blog-post-copy {
    max-width: 720px;
}

.detail-breadcrumb {
    margin-bottom: 18px;
    color: var(--text-tertiary);
    font-size: 0.92rem;
}

.detail-breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
}

.detail-breadcrumb a:hover {
    color: var(--neon-blue);
}

.blog-post-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.76rem;
    font-weight: 600;
}

.blog-post-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    box-shadow: 0 0 18px rgba(83, 245, 255, 0.6);
}

.blog-post-copy h1 {
    font-size: clamp(2.7rem, 5.8vw, 4.65rem);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 18px;
}

.blog-post-subtitle {
    font-size: 1.12rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 60ch;
}

.blog-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.blog-post-meta span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.blog-post-meta span:not(:last-child)::after {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
}

.blog-post-visual {
    position: relative;
    overflow: hidden;
    min-height: 380px;
    padding: 18px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.blog-post-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 25%),
        radial-gradient(circle at top left, rgba(83, 245, 255, 0.16), transparent 38%),
        radial-gradient(circle at bottom right, rgba(155, 81, 224, 0.16), transparent 40%);
    pointer-events: none;
}

.blog-post-visual img,
.blog-card-image img,
.blog-inline-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-post-shell {
    position: relative;
    padding-bottom: 90px;
}

.blog-post-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 10%, rgba(83, 245, 255, 0.08), transparent 24%),
        radial-gradient(circle at 85% 18%, rgba(155, 81, 224, 0.08), transparent 28%);
    pointer-events: none;
}

.blog-article {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    padding: 42px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
}

.blog-article-intro {
    margin-bottom: 26px;
}

.blog-article-lead {
    font-size: 1.28rem;
    line-height: 1.9;
    color: #f5f7fb;
}

.blog-stat-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.blog-stat {
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-stat strong {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
}

.blog-stat span {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.65;
}

.blog-inline-figure {
    margin: 30px 0 34px;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.blog-inline-figure img {
    max-height: 430px;
}

.blog-inline-figure figcaption {
    padding: 14px 18px 18px;
    color: var(--text-tertiary);
    font-size: 0.88rem;
}

.blog-content {
    font-size: 1.08rem;
    line-height: 1.9;
    color: #d7dceb;
}

.blog-content p {
    margin-bottom: 22px;
}

.blog-content h2,
.blog-content h3 {
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.blog-content h2 {
    margin: 50px 0 18px;
    font-size: clamp(1.8rem, 3vw, 2.35rem);
}

.blog-content h3 {
    margin: 34px 0 14px;
    font-size: 1.4rem;
}

.blog-content h2:nth-of-type(odd) {
    color: var(--neon-cyan);
}

.blog-content h2:nth-of-type(even) {
    color: #d3a7ff;
}

.blog-content a {
    color: var(--neon-blue);
    text-decoration: none;
}

.blog-content a:hover {
    text-decoration: underline;
}

.blog-content blockquote {
    margin: 36px 0;
    padding: 26px 28px;
    border-left: 4px solid var(--neon-blue);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.08), rgba(155, 81, 224, 0.08));
    color: #fff;
    font-size: 1.18rem;
    font-style: italic;
}

.blog-content em {
    color: #fff;
}

.blog-content strong {
    color: #fff;
}

.blog-post-footer {
    max-width: 920px;
    margin: 22px auto 0;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-tertiary);
    font-size: 0.92rem;
}

.blog-share a {
    color: var(--text-secondary);
    text-decoration: none;
}

.blog-share a:hover {
    color: var(--neon-blue);
}

.blog-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    padding: 0;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(83, 245, 255, 0.3);
}

.blog-card-image {
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.85), rgba(18, 22, 35, 0.65));
}

.blog-card-image img {
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.04);
}

.blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-tag {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 12px;
}

.blog-card h3 {
    margin-bottom: 14px;
    font-size: 1.38rem;
    line-height: 1.25;
}

.blog-card p {
    color: var(--text-secondary);
    flex-grow: 1;
}

.blog-card-meta {
    margin-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    color: var(--text-tertiary);
    font-size: 0.84rem;
}

@media (max-width: 980px) {
    .blog-post-hero-inner {
        grid-template-columns: 1fr;
    }

    .blog-post-visual {
        min-height: 320px;
        max-width: 760px;
    }

    .blog-article,
    .blog-post-footer {
        max-width: 100%;
    }
}

@media (max-width: 760px) {
    .blog-post-hero {
        padding: 128px 0 40px;
    }

    .blog-article {
        padding: 28px 20px;
    }

    .blog-stat-strip {
        grid-template-columns: 1fr;
    }

    .blog-post-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .blog-post-copy h1 {
        font-size: 2.35rem;
    }

    .blog-post-subtitle,
    .blog-article-lead,
    .blog-content {
        font-size: 1rem;
    }

    .blog-post-meta {
        gap: 10px 16px;
    }

    .blog-post-visual {
        min-height: 240px;
        padding: 12px;
    }

    .blog-card-image {
        height: 180px;
    }
}

/* Base Blog Structural Tweaks (Already inside media queries previously but these are global overrides) */
.blog-post-visual {
    border-radius: 16px;
    position: relative;
    border: 1px solid var(--glass-border);
    padding: 0 !important;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.blog-post-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-post-visual:hover img {
    transform: scale(1.05);
}

.blog-inline-figure {
    overflow: hidden;
    border-radius: 16px;
    margin: 60px 0;
    position: relative;
}

.blog-inline-figure img {
    border-radius: 16px 16px 0 0;
    box-shadow: 0 0 30px rgba(0, 242, 254, 0.1);
    border: 1px solid var(--glass-border);
    border-bottom: none;
    transition: transform 0.6s ease, box-shadow 0.3s ease;
    width: 100%;
    display: block;
}

.blog-inline-figure:hover img {
    box-shadow: 0 0 40px rgba(155, 81, 224, 0.3);
}

.blog-inline-figure figcaption {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-top: none;
    border-radius: 0 0 16px 16px;
}

.blog-card-image {
    position: relative;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}
