/* ==========================================================================
   SEVİYORUM SENİ - PREMIUM DESIGN SYSTEM
   ========================================================================== */

   :root {
    --bg-dark: #22030d;
    --bg-card: rgba(45, 11, 23, 0.55);
    --bg-card-hover: rgba(65, 18, 35, 0.75);
    --border-glow: rgba(255, 47, 116, 0.25);
    --border-light: rgba(255, 255, 255, 0.08);
    --border-medium: rgba(255, 255, 255, 0.15);
    
    /* Brand Colors */
    --color-primary: #ff2f74;      /* Deep Fuchsia */
    --color-primary-rgb: 255, 47, 116;
    --color-secondary: #ff7aa8;    /* Pastel Rose */
    --color-accent: #ffd3df;       /* Soft Blush */
    --color-gold: #ffd700;         /* Royal Gold */
    --color-blue: #00d2ff;         /* Starry Teal */
    
    /* Neutral Text */
    --text-white: #ffffff;
    --text-muted: #d5b9c9;
    --text-dark: #12030f;
    
    /* Theme Gradients */
    --grad-primary: linear-gradient(135deg, var(--color-primary), #ff6394);
    --grad-dark: linear-gradient(180deg, #180616 0%, #080107 100%);
    --grad-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
    
    /* Theme Card Designs for preview */
    --theme-red-grad: linear-gradient(180deg, #420815 0%, #150206 100%);
    --theme-blue-grad: linear-gradient(180deg, #09172f 0%, #020611 100%);
    --theme-gold-grad: linear-gradient(180deg, #1e1503 0%, #050401 100%);
  
    /* Border Radii */
    --radius-full: 999px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
    
    /* Animation & Transitions */
    --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-glow: 0 0 30px rgba(255, 47, 116, 0.3);
    --shadow-box: 0 20px 50px rgba(0, 0, 0, 0.4);
  }
  
  /* ==========================================================================
     GLOBAL RESET & SETUP
     ========================================================================== */
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
    font-size: 16px;
  }
  
  body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
  }
  
  /* Premium Grid Mesh Background overlay */
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: 
      linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at 50% 30%, black 20%, transparent 80%);
    pointer-events: none;
    z-index: 0;
  }
  
  h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  
  a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
  }
  
  button, input, select, textarea {
    font-family: inherit;
    background: none;
    border: none;
    outline: none;
  }
  
  ul {
    list-style: none;
  }
  
  .highlight {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Playfair Display', serif;
    font-style: italic;
  }
  
  /* Decorative Background Orbs */
  .page-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
  }
  
  .page-glow-one {
    top: -10%;
    left: -10%;
    background: var(--color-primary);
    animation: floatGlowOne 20s infinite alternate ease-in-out;
  }
  
  .page-glow-two {
    bottom: 20%;
    right: -10%;
    background: var(--color-secondary);
    animation: floatGlowTwo 25s infinite alternate ease-in-out;
  }
  
  .page-glow-three {
    top: 40%;
    left: 45%;
    background: var(--color-blue);
    opacity: 0.08;
    animation: floatGlowThree 30s infinite alternate ease-in-out;
  }

  @keyframes floatGlowOne {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(60px, 40px) scale(1.1); }
  }
  @keyframes floatGlowTwo {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-80px, -50px) scale(0.9); }
  }
  @keyframes floatGlowThree {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, -30px) scale(1.15); }
  }
  
  /* ==========================================================================
     LAYOUT STRUCTURE & HEADER
     ========================================================================== */
  
  .section-pad {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 24px;
    position: relative;
    z-index: 2;
  }
  
  .site-header {
    width: min(1180px, calc(100% - 32px));
    margin: 20px auto 0;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(11, 2, 10, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    position: sticky;
    top: 20px;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
  }
  
  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: -0.04em;
  }
  
  .brand-icon {
    width: 38px;
    height: 38px;
    background: var(--grad-primary);
    display: grid;
    place-items: center;
    border-radius: 50%;
    box-shadow: var(--shadow-glow);
    font-size: 1.1rem;
    animation: pulseHeart 2s infinite alternate;
  }
  
  .brand-text span {
    color: var(--color-secondary);
  }
  
  .site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  
  .site-nav a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
  }
  
  .site-nav a:hover {
    color: var(--text-white);
  }
  
  .nav-cta {
    padding: 10px 22px;
    background: rgba(255, 47, 116, 0.12);
    border: 1px solid var(--color-primary);
    border-radius: var(--radius-full);
    color: var(--text-white) !important;
  }
  
  .nav-cta:hover {
    background: var(--color-primary);
    box-shadow: var(--shadow-glow);
  }
  
  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
  
  .nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: var(--transition-smooth);
  }
  
  /* ==========================================================================
     BUTTONS & MICRO-INTERACTIONS
     ========================================================================== */
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
  }
  
  .btn:hover {
    transform: translateY(-3px);
  }
  
  .btn-primary {
    background: var(--grad-primary);
    color: var(--text-white);
    box-shadow: var(--shadow-glow);
  }
  
  .btn-primary:hover {
    box-shadow: 0 8px 30px rgba(255, 47, 116, 0.5);
  }
  
  .btn-soft {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-medium);
    color: var(--text-white);
  }
  
  .btn-soft:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-white);
  }
  
  .btn.full {
    width: 100%;
  }
  
  .btn.small {
    padding: 8px 18px;
    font-size: 0.85rem;
  }
  
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-secondary);
    margin-bottom: 24px;
  }
  
  .eyebrow::before {
    content: "❤";
    color: var(--color-primary);
  }
  
  /* ==========================================================================
     HERO SECTION
     ========================================================================== */
  
  .hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    padding-top: 140px;
  }
  
  .hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    margin-bottom: 24px;
  }
  
  .hero-lead {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 600px;
  }
  
  .hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
  }
  
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .stat-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
  }
  
  .stat-item strong {
    display: block;
    font-size: 1.6rem;
    font-family: 'Outfit', sans-serif;
    color: var(--color-secondary);
    margin-bottom: 4px;
  }
  
  .stat-item span {
    font-size: 0.8rem;
    color: var(--text-muted);
  }
  
  /* ==========================================================================
     PHONE DEVICE MOCKUP
     ========================================================================== */
  
  .hero-mockup-wrap, .interactive-preview-column {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Simulated phone elements */
  .phone-mockup {
    width: 320px;
    height: 640px;
    border-radius: 46px;
    background: #1c101b;
    padding: 12px;
    box-shadow: var(--shadow-box), 0 0 40px rgba(255, 47, 116, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 5;
  }
  
  .phone-frame {
    width: 100%;
    height: 100%;
    border-radius: 36px;
    overflow: hidden;
    position: relative;
    background: #000;
  }
  
  .phone-speaker {
    width: 60px;
    height: 18px;
    background: #000;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 10;
  }
  
  .phone-screen {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 40px 18px 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
  }
  
  .phone-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 5;
  }
  
  /* Themes for simulated preview */
  .phone-screen.theme-classic-red {
    background: var(--theme-red-grad);
  }
  .phone-screen.theme-classic-red::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 20%, rgba(255, 47, 116, 0.4), transparent 70%);
    z-index: 1;
  }
  
  .phone-screen.theme-midnight-blue {
    background: var(--theme-blue-grad);
  }
  .phone-screen.theme-midnight-blue::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 20%, rgba(0, 210, 255, 0.35), transparent 70%);
    z-index: 1;
  }
  
  .phone-screen.theme-royal-gold {
    background: var(--theme-gold-grad);
  }
  .phone-screen.theme-royal-gold::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 20%, rgba(255, 215, 0, 0.25), transparent 70%);
    z-index: 1;
  }

  /* Preview Occasion Specific Themes */
  .phone-screen.occ-anniversary {
    --color-primary: #ff2f74;
    --color-secondary: #ff7aa8;
    --color-accent: #ffd3df;
    background: linear-gradient(180deg, #3d0510 0%, #0d0104 100%) !important;
  }
  .phone-screen.occ-anniversary::after {
    background: radial-gradient(circle at 50% 20%, rgba(255, 47, 116, 0.4), transparent 70%) !important;
  }
  .phone-screen.occ-birthday {
    --color-primary: #f59e0b;
    --color-secondary: #fbbf24;
    --color-accent: #fef08a;
    background: linear-gradient(180deg, #1e1b4b 0%, #0d031c 100%) !important;
  }
  .phone-screen.occ-birthday::after {
    background: radial-gradient(circle at 50% 20%, rgba(245, 158, 11, 0.4), transparent 70%) !important;
  }
  .phone-screen.occ-valentines {
    --color-primary: #ec4899;
    --color-secondary: #f472b6;
    --color-accent: #fbcfe8;
    background: linear-gradient(180deg, #4c0519 0%, #1c000a 100%) !important;
  }
  .phone-screen.occ-valentines::after {
    background: radial-gradient(circle at 50% 20%, rgba(236, 72, 153, 0.4), transparent 70%) !important;
  }
  .phone-screen.occ-proposal {
    --color-primary: #8b5cf6;
    --color-secondary: #a78bfa;
    --color-accent: #ddd6fe;
    background: linear-gradient(180deg, #1e152a 0%, #0c0214 100%) !important;
  }
  .phone-screen.occ-proposal::after {
    background: radial-gradient(circle at 50% 20%, rgba(139, 92, 246, 0.4), transparent 70%) !important;
  }
  .phone-screen.occ-wedding {
    --color-primary: #eab308;
    --color-secondary: #facc15;
    --color-accent: #fef9c3;
    background: linear-gradient(180deg, #2d2200 0%, #0a0800 100%) !important;
  }
  .phone-screen.occ-wedding::after {
    background: radial-gradient(circle at 50% 20%, rgba(234, 179, 8, 0.4), transparent 70%) !important;
  }
  .phone-screen.occ-firstdate {
    --color-primary: #10b981;
    --color-secondary: #34d399;
    --color-accent: #a7f3d0;
    background: linear-gradient(180deg, #022c22 0%, #010c08 100%) !important;
  }
  .phone-screen.occ-firstdate::after {
    background: radial-gradient(circle at 50% 20%, rgba(16, 185, 129, 0.4), transparent 70%) !important;
  }
  .phone-screen.occ-missing {
    --color-primary: #3b82f6;
    --color-secondary: #60a5fa;
    --color-accent: #bfdbfe;
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%) !important;
  }
  .phone-screen.occ-missing::after {
    background: radial-gradient(circle at 50% 20%, rgba(59, 130, 246, 0.4), transparent 70%) !important;
  }
  .phone-screen.occ-surprise {
    --color-primary: #f97316;
    --color-secondary: #fb923c;
    --color-accent: #fed7aa;
    background: linear-gradient(180deg, #3c1402 0%, #0e0500 100%) !important;
  }
  .phone-screen.occ-surprise::after {
    background: radial-gradient(circle at 50% 20%, rgba(249, 115, 22, 0.4), transparent 70%) !important;
  }

  .phone-screen[class*="occ-"] .preview-countdown-timer strong {
    color: var(--color-primary) !important;
    text-shadow: 0 0 10px var(--color-primary) !important;
  }
  .phone-screen[class*="occ-"] .btn-preview-interact {
    background: var(--color-primary) !important;
    box-shadow: 0 4px 12px var(--color-primary-glow) !important;
  }
  
  /* Simulated Music Widget */
  .preview-music-badge {
    align-self: center;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    z-index: 6;
  }
  
  .music-wave-icon {
    color: var(--color-primary);
    animation: bounceMusic 1.2s infinite alternate;
  }
  
  /* Couple Header */
  .preview-couple-header {
    text-align: center;
    margin: 20px 0;
    z-index: 6;
  }
  
  .preview-avatar-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 8px;
  }
  
  .preview-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: grid;
    place-items: center;
    font-size: 0.8rem;
    font-weight: 800;
  }
  
  .preview-heart-divider {
    color: var(--color-primary);
    font-size: 1rem;
    animation: heartBeat 1s infinite;
  }
  
  .preview-couple-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
  }
  
  /* Glass Card design in mockup */
  .preview-card-glass {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 18px;
    backdrop-filter: blur(12px);
    z-index: 6;
    margin-bottom: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .countdown-title {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 8px;
  }
  
  .preview-countdown-timer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    text-align: center;
    margin-bottom: 14px;
  }
  
  .preview-countdown-timer div {
    background: rgba(0, 0, 0, 0.3);
    padding: 6px;
    border-radius: var(--radius-sm);
  }
  
  .preview-countdown-timer strong {
    display: block;
    font-size: 1.1rem;
    color: #fff;
  }
  
  .preview-countdown-timer span {
    display: block;
    font-size: 0.58rem;
    color: var(--text-muted);
  }
  
  .preview-text-content {
    font-size: 0.78rem;
    color: var(--text-white);
    line-height: 1.5;
    text-align: center;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .preview-meta-date {
    font-size: 0.7rem;
    text-align: center;
    color: var(--text-muted);
  }
  
  .preview-meta-date strong {
    color: var(--color-secondary);
  }
  
  .preview-interact-area {
    z-index: 6;
  }
  
  .btn-preview-interact {
    width: 100%;
    padding: 10px;
    background: var(--color-primary);
    border-radius: var(--radius-md);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 47, 116, 0.3);
  }
  
  /* Floating bubbles around phone */
  .floating-bubble {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-box);
    animation: floatyBubble 4s infinite ease-in-out;
  }
  
  .fb-1 { top: 15%; left: 5%; animation-delay: 0s; }
  .fb-2 { top: 45%; right: 5%; animation-delay: 1.2s; }
  .fb-3 { bottom: 20%; left: 10%; animation-delay: 2.3s; }
  
  /* ==========================================================================
     TRUST STRIP
     ========================================================================== */
  
  .trust-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    z-index: 2;
  }
  
  .trust-strip span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  
  /* ==========================================================================
     FEATURES SECTION
     ========================================================================== */
  
  .section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
  }
  
  .section-heading h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
  }
  
  .section-heading p {
    color: var(--text-muted);
    font-size: 1.1rem;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
  }
  
  .feature-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: 0 15px 30px rgba(255, 47, 116, 0.1);
  }
  
  .feature-icon {
    font-size: 2.2rem;
    margin-bottom: 24px;
  }
  
  .feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
  
  .feature-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
  }
  
  /* ==========================================================================
     STEPS SECTION
     ========================================================================== */
  
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
  }
  
  .step-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 47, 116, 0.15);
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Outfit', sans-serif;
  }
  
  .step-card h3 {
    font-size: 1.25rem;
    margin-top: 12px;
    margin-bottom: 12px;
  }
  
  .step-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
  }
  
  /* ==========================================================================
     CREATOR SECTION (LIVE DESIGN STUDIO)
     ========================================================================== */
  
  .creator-section {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: flex-start;
  }
  
  .creator-form {
    margin-top: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    backdrop-filter: blur(10px);
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  
  .creator-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-accent);
  }
  
  .creator-form input,
  .creator-form select,
  .creator-form textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    color: var(--text-white);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
  }
  
  .creator-form select option {
    background: #180916;
    color: #fff;
  }
  
  .creator-form input:focus,
  .creator-form select:focus,
  .creator-form textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(255, 47, 116, 0.2);
  }
  
  /* Interactive Columns Side Preview */
  .interactive-preview-column {
    flex-direction: column;
    gap: 24px;
  }
  
  .phone-mockup-interactive {
    width: 300px;
    height: 600px;
    border-radius: 46px;
    background: #1c101b;
    padding: 10px;
    box-shadow: var(--shadow-box), 0 0 40px rgba(255, 47, 116, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.15);
    position: relative;
  }
  
  /* Fallable effect container inside mockup screen */
  .screen-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
  }
  
  .particle-spawner {
    position: absolute;
    top: -20px;
    font-size: 14px;
    user-select: none;
    pointer-events: none;
    animation: fallAnimation linear infinite;
  }
  
  @keyframes fallAnimation {
    0% {
      transform: translateY(0) rotate(0deg);
      opacity: 1;
    }
    100% {
      transform: translateY(580px) rotate(360deg);
      opacity: 0;
    }
  }
  
  /* Form Result Code Card */
  .result-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    width: 100%;
    backdrop-filter: blur(10px);
    display: none; /* Displayed dynamically on form submit */
  }
  
  .result-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--color-secondary);
  }
  
  .result-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
  }
  
  .generated-url {
    background: rgba(0, 0, 0, 0.4);
    border: 1px dashed var(--color-primary);
    border-radius: var(--radius-md);
    padding: 14px;
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--text-white);
    margin-bottom: 16px;
    overflow-x: auto;
  }
  
  .result-actions {
    display: flex;
    gap: 12px;
  }
  
  /* ==========================================================================
     PRICING SECTION
     ========================================================================== */
  
  .billing-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
  }
  
  .billing-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-muted);
  }
  
  .billing-label.active {
    color: var(--text-white);
  }
  
  .billing-toggle {
    width: 60px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-medium);
    border-radius: 99px;
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
  }
  
  .billing-toggle .toggle-circle {
    width: 24px;
    height: 24px;
    background: var(--text-white);
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 4px;
    transition: var(--transition-smooth);
  }
  
  .billing-toggle.toggled {
    background: var(--color-primary);
  }
  
  .billing-toggle.toggled .toggle-circle {
    left: calc(100% - 28px);
  }
  
  .discount-badge {
    font-size: 0.72rem;
    padding: 2px 8px;
    background: rgba(0, 210, 255, 0.2);
    border: 1px solid var(--color-blue);
    color: var(--color-blue);
    border-radius: var(--radius-full);
  }
  
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
    margin-top: 50px;
  }
  
  .price-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .price-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-medium);
  }
  
  .price-card.featured {
    background: linear-gradient(180deg, rgba(255, 47, 116, 0.12) 0%, rgba(25, 11, 23, 0.65) 100%);
    border: 2px solid var(--color-primary);
    box-shadow: 0 20px 40px rgba(255, 47, 116, 0.1);
  }
  
  .popular {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 4px 12px;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    border-radius: var(--radius-full);
  }
  
  .price-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
  }
  
  .price {
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    color: var(--text-white);
    margin-bottom: 28px;
  }
  
  .per-month {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
  }
  
  .price-card ul {
    text-align: left;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-grow: 1;
  }
  
  .price-card li {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .price-card li::before {
    content: "✓";
    color: var(--color-secondary);
    font-weight: bold;
  }
  
  /* ==========================================================================
     TESTIMONIALS SECTION
     ========================================================================== */
  
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .testi-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .stars {
    font-size: 0.95rem;
  }
  
  .testi-tag {
    font-size: 0.72rem;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    color: var(--color-accent);
  }
  
  .testi-text {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 24px;
  }
  
  .testi-author strong {
    display: block;
    color: var(--text-white);
    font-size: 0.95rem;
  }
  
  .testi-author span {
    font-size: 0.78rem;
    color: var(--text-muted);
  }
  
  /* ==========================================================================
     SEO TAG CLOUD
     ========================================================================== */
  
  .seo-section {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    align-items: center;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 48px;
  }
  
  .tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .tag-cloud span,
  .tag-cloud a.tag-link {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
  }
  
  .tag-cloud span:hover,
  .tag-cloud a.tag-link:hover {
    background: rgba(255, 47, 116, 0.1);
    border-color: var(--color-primary);
    color: var(--text-white);
    transform: translateY(-2px);
  }
  
  /* ==========================================================================
     FAQ SECTION (ACCORDION)
     ========================================================================== */
  
  .faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 10px 10px;
    overflow: hidden;
    transition: var(--transition-smooth);
  }
  
  .faq-item summary {
    padding: 14px 20px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    user-select: none;
    list-style: none;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .faq-item summary::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: var(--transition-smooth);
  }
  
  .faq-item[open] summary::after {
    transform: rotate(45deg);
  }
  
  .faq-item p {
    padding: 10px 20px 20px;
    color: var(--text-muted);
    font-size: 0.92rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  /* ==========================================================================
     FINAL CALL TO ACTION & FOOTER
     ========================================================================== */
  
  .final-cta {
    background: linear-gradient(135deg, rgba(255, 47, 116, 0.15) 0%, rgba(20, 5, 25, 0.45) 100%);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    padding: 60px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 20px 40px rgba(255, 47, 116, 0.08);
  }
  
  .cta-inner h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
  }
  
  .cta-inner p {
    color: var(--text-muted);
    max-width: 700px;
  }
  
  .btn-lg-cta {
    padding: 18px 36px;
    font-size: 1.05rem;
    flex-shrink: 0;
  }
  
  .site-footer {
    border-top: 1px solid var(--border-light);
    padding: 60px 24px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 48px;
    z-index: 2;
    position: relative;
  }
  
  .footer-brand-side {
    max-width: 400px;
  }
  
  .footer-brand-side p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 18px;
    margin-bottom: 24px;
  }
  
  .footer-copyright {
    font-size: 0.78rem;
    color: var(--text-muted);
    opacity: 0.6;
  }
  
  .footer-links-side {
    display: flex;
    gap: 80px;
  }
  
  .footer-nav-col h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-white);
    margin-bottom: 20px;
  }
  
  .footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .footer-nav-col a {
    font-size: 0.88rem;
    color: var(--text-muted);
  }
  
  .footer-nav-col a:hover {
    color: var(--color-primary);
  }
  
  /* Scroll to top button */
  .to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 47, 116, 0.85);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(255, 47, 116, 0.3);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px);
    transition: var(--transition-smooth);
    z-index: 99;
  }
  
  .to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  
  /* ==========================================================================
     ANIMATIONS
     ========================================================================== */
  
  @keyframes pulseHeart {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
  }
  
  @keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    25%, 60% { transform: scale(1.15); }
  }
  
  @keyframes bounceMusic {
    0% { transform: scaleY(0.6); }
    100% { transform: scaleY(1.3); }
  }
  
  @keyframes floatyBubble {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.05); }
  }
  
  /* ==========================================================================
     MEDIA QUERIES (RESPONSIVE DESIGN)
     ========================================================================== */
  
  @media (max-width: 1024px) {
    .hero {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 40px;
    }
    
    .hero-lead {
      margin-left: auto;
      margin-right: auto;
    }
    
    .hero-actions {
      justify-content: center;
    }
    
    .hero-stats {
      max-width: 600px;
      margin: 0 auto;
    }
    
    .hero-mockup-wrap {
      margin-top: 40px;
    }
    
    .features-grid,
    .steps-grid,
    .pricing-grid,
    .testimonials-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .creator-section {
      grid-template-columns: 1fr;
    }
    
    .seo-section {
      grid-template-columns: 1fr;
      text-align: center;
    }
    
    .tag-cloud {
      justify-content: center;
    }
    
    .final-cta {
      flex-direction: column;
      text-align: center;
    }
  }
  
  @media (max-width: 768px) {
    .site-header {
      padding: 10px 16px;
    }
    
    .site-nav {
      position: absolute;
      top: calc(100% + 10px);
      left: 0;
      right: 0;
      background: rgba(11, 2, 10, 0.95);
      border: 1px solid var(--border-medium);
      border-radius: var(--radius-lg);
      padding: 24px;
      flex-direction: column;
      gap: 16px;
      display: none;
      box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    }
    
    .site-nav.open {
      display: flex;
    }
    
    .nav-toggle {
      display: flex;
    }
    
    .features-grid,
    .steps-grid,
    .pricing-grid,
    .testimonials-grid {
      grid-template-columns: 1fr;
    }
    
    .form-row {
      grid-template-columns: 1fr;
    }
    
    .site-footer {
      flex-direction: column;
      gap: 30px;
      text-align: center;
    }
    
    .footer-brand-side {
      margin: 0 auto;
    }
    
    .footer-links-side {
      justify-content: center;
      gap: 40px;
    }
  }

  /* ==========================================================================
     NEW MULTI-PAGE SPECIFIC STYLES (Comparison, Timeline, Stats)
     ========================================================================== */

  /* Comparison Table / Matrix */
  .comparison-table-wrap {
    width: 100%;
    overflow-x: auto;
    margin-top: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-box);
  }

  .comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 600px;
  }

  .comparison-table th, 
  .comparison-table td {
    padding: 20px 16px;
    border-bottom: 1px solid var(--border-light);
  }

  .comparison-table th {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--text-white);
    font-size: 1.05rem;
  }

  .comparison-table td {
    color: var(--text-muted);
    font-size: 0.95rem;
  }

  .comparison-table tr:hover td {
    background: rgba(255, 255, 255, 0.01);
    color: var(--text-white);
  }

  .comparison-table tr:last-child td {
    border-bottom: none;
  }

  .check-icon {
    color: var(--color-secondary);
    font-weight: bold;
    font-size: 1.2rem;
  }

  .cross-icon {
    color: rgba(255, 255, 255, 0.15);
    font-size: 1.1rem;
  }

  /* Timeline (Zaman Tüneli) */
  .timeline {
    position: relative;
    max-width: 850px;
    margin: 60px auto 0;
    padding: 20px 0;
  }

  .timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--border-medium);
    transform: translateX(-50%);
  }

  .timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
  }

  .timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
  }

  .timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
  }

  .timeline-dot {
    position: absolute;
    top: 36px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 15px var(--color-primary);
    z-index: 5;
    border: 3px solid #1c0a1b;
  }

  .timeline-item:nth-child(odd) .timeline-dot {
    right: -9px;
  }

  .timeline-item:nth-child(even) .timeline-dot {
    left: -9px;
  }

  .timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-box);
  }

  .timeline-content:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    border-color: var(--border-glow);
  }

  .timeline-content h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
    color: var(--color-secondary);
  }

  .timeline-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
  }

  /* Stats Cards Grid */
  .stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
  }

  .stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-box);
    transition: var(--transition-smooth);
  }

  .stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-medium);
  }

  .stat-card strong {
    display: block;
    font-size: 2.6rem;
    color: var(--color-primary);
    font-family: 'Outfit', sans-serif;
    margin-bottom: 6px;
  }

  .stat-card span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
  }

  /* Responsive modifications for Timeline & Stats */
  @media (max-width: 850px) {
    .stats-strip {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .stats-strip {
      grid-template-columns: 1fr;
    }

    .timeline::before {
      left: 20px;
    }

    .timeline-item {
      width: 100%;
      left: 0 !important;
      padding-left: 50px;
      padding-right: 0;
      text-align: left !important;
    }

    .timeline-dot {
      left: 11px !important;
      top: 36px;
    }
  }

  /* ==========================================================================
     ADMIN PANEL & ARCHIVE LAYOUT STYLES
     ========================================================================== */

  /* Login Card Container */
  .admin-login-wrap {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
    z-index: 10;
  }

  .admin-login-card {
    background: var(--bg-card);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-lg);
    padding: 40px;
    width: 100%;
    max-width: 400px;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-box);
    text-align: center;
  }

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

  .admin-login-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 28px;
  }

  .login-error-msg {
    color: #ff4a7a;
    font-size: 0.85rem;
    background: rgba(255, 74, 122, 0.1);
    border: 1px solid rgba(255, 74, 122, 0.2);
    padding: 10px;
    border-radius: var(--radius-sm);
    margin-bottom: 18px;
    display: none;
  }

  /* Admin Content Area */
  .admin-panel-wrap {
    display: none; /* Shown dynamically on login */
    width: 100%;
    animation: fadeIn 0.5s ease-out;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .admin-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 16px;
  }

  .admin-dashboard-header h1 {
    font-size: 2rem;
    color: var(--text-white);
  }

  .admin-user-badge {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .admin-user-info {
    font-size: 0.88rem;
    color: var(--text-muted);
  }

  .admin-user-info strong {
    color: var(--text-white);
  }

  /* Stat Badges */
  .badge {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .badge-free {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-medium);
    color: var(--text-muted);
  }

  .badge-romantik {
    background: rgba(255, 47, 116, 0.1);
    border: 1px solid var(--color-primary);
    color: var(--color-secondary);
  }

  .badge-premium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.15);
  }

  .badge-status-active {
    background: rgba(0, 210, 255, 0.1);
    border: 1px solid var(--color-blue);
    color: var(--color-blue);
  }

  .badge-status-pending {
    background: rgba(255, 122, 168, 0.1);
    border: 1px solid var(--color-secondary);
    color: var(--color-secondary);
  }

  /* Controls Section */
  .admin-controls-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
  }

  .admin-search-box {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    padding: 10px 18px;
    color: #fff;
    width: 320px;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
  }

  .admin-search-box:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(255, 47, 116, 0.15);
  }

  .admin-export-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 10px 18px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
  }

  .admin-export-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-medium);
    color: #fff;
  }

  /* Admin Action Buttons */
  .btn-admin-action {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-sm);
    display: inline-grid;
    place-items: center;
    font-size: 0.95rem;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    transition: var(--transition-smooth);
  }

  .btn-admin-action:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: var(--border-medium);
  }

  .btn-admin-action.activate-btn {
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.2);
    color: var(--color-gold);
  }

  .btn-admin-action.activate-btn:hover {
    background: var(--color-gold);
    color: #000;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
  }

  .btn-admin-action.delete-btn:hover {
    background: #ff4a7a;
    color: #fff;
    border-color: #ff4a7a;
  }

  /* Admin Modal backdrop and box */
  .admin-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(12px);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
  }

  .admin-modal-box {
    background: #1c0b19;
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 500px;
    padding: 32px;
    box-shadow: var(--shadow-box);
    position: relative;
  }

  .admin-modal-box h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--color-secondary);
  }

  .admin-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: grid;
    place-items: center;
    cursor: pointer;
    font-weight: bold;
  }

  .admin-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .admin-modal-box form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* ==========================================================================
     PREMIUM REDESIGN ADDITIONS: SPOTLIGHT, GRID, & 3D ENVELOPE
     ========================================================================== */

  /* Spotlight Grid Mesh Overlay */
  .grid-overlay {
    position: fixed;
    inset: 0;
    background-image: 
      linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
    background-size: 45px 45px;
    pointer-events: none;
    z-index: 0;
  }
  
  .spotlight-mask {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle 500px at var(--mouse-x, 50%) var(--mouse-y, 30%), rgba(255, 47, 116, 0.07) 0%, transparent 80%);
    pointer-events: none;
    z-index: 0;
    transition: background 0.15s ease-out;
  }

  /* 3D Envelope Styles */
  .envelope-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px auto 40px;
    perspective: 1000px;
    width: 320px;
    height: 200px;
  }

  .envelope-wrapper {
    position: relative;
    width: 320px;
    height: 200px;
    background-color: var(--envelope-bg, #9b1328);
    border-radius: 0 0 16px 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    z-index: 10;
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .envelope-wrapper:not(.open):hover {
    transform: translateY(-8px) scale(1.03) rotateY(2deg);
  }

  .envelope {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
  }

  /* Top Flap that opens */
  .envelope-flap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    border-left: 160px solid transparent;
    border-right: 160px solid transparent;
    border-top: 110px solid var(--envelope-flap, #c21a36);
    transform-origin: top;
    z-index: 40;
    transition: transform 0.4s ease 0.2s, z-index 0.2s ease 0.2s;
  }

  /* Left and Right Side Fold Pockets */
  .envelope-pocket {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-left: 160px solid var(--envelope-pocket-left, rgba(220, 35, 62, 0.95));
    border-right: 160px solid var(--envelope-pocket-right, rgba(180, 25, 48, 0.95));
    border-bottom: 110px solid var(--envelope-pocket-bottom, #901024);
    border-radius: 0 0 16px 16px;
    z-index: 30;
  }

  /* Paper letter inside */
  .envelope-letter {
    position: absolute;
    top: 10px;
    left: 15px;
    width: 290px;
    height: 180px;
    background: #fdfcf7;
    border-radius: 8px;
    padding: 20px 18px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    color: #2c1a1a;
    z-index: 20;
    overflow-y: auto;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0s, z-index 0.1s ease 0.3s, height 0.4s ease 0.3s;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    line-height: 1.6;
    border: 1px solid rgba(0, 0, 0, 0.04);
  }

  .letter-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .letter-inner h3 {
    font-size: 1.15rem;
    color: #9b1328;
    margin-bottom: 4px;
    border-bottom: 1px dashed rgba(155, 19, 40, 0.15);
    padding-bottom: 6px;
    font-weight: 700;
  }

  .letter-inner p {
    color: #4a3333;
    font-weight: 500;
  }

  .letter-inner .letter-signature {
    margin-top: 16px;
    font-size: 0.82rem;
    color: #7a5e5e;
    text-align: right;
    font-style: italic;
    border-top: 1px dashed rgba(0, 0, 0, 0.05);
    padding-top: 8px;
  }

  .letter-inner .letter-signature span {
    font-size: 0.95rem;
    font-weight: 700;
    color: #9b1328;
    font-style: normal;
  }

  /* Theme color configuration overrides for 3D envelope */
  .theme-classic-red {
    --envelope-bg: #800c1e;
    --envelope-flap: #a6122b;
    --envelope-pocket-left: rgba(199, 21, 51, 0.96);
    --envelope-pocket-right: rgba(153, 14, 38, 0.96);
    --envelope-pocket-bottom: #7b091b;
  }

  .theme-midnight-blue {
    --envelope-bg: #0b1526;
    --envelope-flap: #142442;
    --envelope-pocket-left: rgba(30, 54, 102, 0.96);
    --envelope-pocket-right: rgba(20, 36, 69, 0.96);
    --envelope-pocket-bottom: #09101d;
  }

  .theme-royal-gold {
    --envelope-bg: #382c0e;
    --envelope-flap: #57451a;
    --envelope-pocket-left: rgba(125, 101, 46, 0.96);
    --envelope-pocket-right: rgba(87, 70, 30, 0.96);
    --envelope-pocket-bottom: #2e240a;
  }

  /* Animation states triggered by open class */
  .envelope-wrapper.open .envelope-flap {
    transform: rotateX(180deg);
    z-index: 10;
    transition: transform 0.4s ease 0s, z-index 0.2s ease 0.1s;
  }

  .envelope-wrapper.open .envelope-letter {
    transform: translateY(-190px);
    height: 320px;
    z-index: 50;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0.2s, z-index 0.1s ease 0.2s, height 0.4s ease 0.3s;
  }

  /* Premium Drag and Drop Zone Styler */
  .upload-dropzone {
    border: 2px dashed rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
  }

  .upload-dropzone:hover, .upload-dropzone.dragover {
    border-color: var(--color-primary);
    background: rgba(255, 47, 116, 0.04);
    box-shadow: 0 0 15px rgba(255, 47, 116, 0.1);
  }

  .upload-dropzone-icon {
    font-size: 1.8rem;
    color: var(--color-secondary);
  }

  .upload-dropzone-text {
    font-size: 0.85rem;
    color: var(--text-muted);
  }

  .upload-dropzone-hint {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.3);
  }

  /* Smooth custom scrollbars for cards/letters */
  ::-webkit-scrollbar {
    width: 6px;
  }
  ::-webkit-scrollbar-track {
    background: transparent;
  }
  ::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
  }

  @keyframes letterSlideIn {
    from {
      opacity: 0;
      transform: translateY(40px) scale(0.95);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  /* Extra mobile optimization rules */
  @media (max-width: 480px) {
    .site-header {
      width: calc(100% - 20px) !important;
      margin: 10px auto 0 !important;
      top: 10px !important;
      padding: 8px 14px !important;
    }
    .brand-text {
      font-size: 1.15rem !important;
    }
    .brand-icon {
      width: 32px !important;
      height: 32px !important;
      font-size: 0.95rem !important;
    }
    .hero-content h1 {
      font-size: 2.1rem !important;
    }
    .hero-lead {
      font-size: 0.98rem !important;
      line-height: 1.5 !important;
    }
    .hero-actions {
      flex-direction: column;
      gap: 12px !important;
      width: 100%;
    }
    .hero-actions .btn {
      width: 100% !important;
      padding: 12px 24px !important;
    }
    .hero-stats {
      grid-template-columns: 1fr !important;
      gap: 12px !important;
    }
    .stat-item {
      padding: 14px !important;
    }
    .section-pad {
      padding: 50px 16px !important;
    }
    .creator-form {
      padding: 20px !important;
    }
    .form-row {
      gap: 12px !important;
    }
    .footer-links-side {
      flex-direction: column !important;
      align-items: center !important;
      gap: 30px !important;
      width: 100%;
    }
    .footer-nav-col {
      align-items: center !important;
      text-align: center !important;
    }
    .footer-nav-col h4 {
      margin-bottom: 12px !important;
    }
  }

  @media (max-width: 380px) {
    .phone-mockup, .phone-mockup-interactive {
      width: 270px !important;
      height: 540px !important;
      padding: 8px !important;
      border-radius: 36px !important;
    }
    .phone-speaker {
      width: 50px !important;
      height: 14px !important;
    }
    .preview-card-glass {
      padding: 10px !important;
      border-radius: 16px !important;
    }
    .preview-couple-header h2 {
      font-size: 1.1rem !important;
    }
    .preview-countdown-timer strong {
      font-size: 0.95rem !important;
    }
    .preview-text-content {
      font-size: 0.7rem !important;
      margin-bottom: 8px !important;
    }
    .generated-url {
      font-size: 0.75rem !important;
      padding: 10px !important;
    }
    .result-actions {
      flex-direction: column;
      width: 100%;
    }
    .result-actions .btn {
      width: 100% !important;
    }
  }

