/* ==========================================================================
   Vidhi Tarot & Mystical Guidance - Custom Design System
   ========================================================================== */

/* Variables & Theme configuration */
:root {
    --bg-primary: #0a061b; /* Deep Cosmic Violet */
    --bg-secondary: #05030f; /* Darker Indigo-Violet */
    --bg-card: rgba(22, 14, 46, 0.7); /* Translucent Violet glass */
    --bg-card-hover: rgba(35, 22, 73, 0.85);
    
    --color-gold: #ffd700;
    --color-gold-hover: #fff285;
    --color-purple: #e0218a; /* Cosmic Magenta */
    --color-purple-glow: rgba(224, 33, 138, 0.45);
    --color-gold-glow: rgba(255, 215, 0, 0.45);
    --color-cyan: #00e5ff; /* Electric Cyan */
    --color-cyan-glow: rgba(0, 229, 255, 0.45);
    --color-red: #ff3b70;
    
    --color-text: #ffffff;
    --color-text-muted: #c2c7e6;
    
    --font-serif: 'Cinzel', serif;
    --font-sans: 'Montserrat', sans-serif;
    
    --border-card: rgba(0, 229, 255, 0.25); /* Cyan border */
    --border-hover: rgba(224, 33, 138, 0.6);  /* Magenta border on hover */
    --border-purple: rgba(224, 33, 138, 0.35);
    
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-fast: all 0.2s ease-in-out;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Starfield canvas background */
#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

/* Scrollbar customization */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-card);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

/* Typography & General Classes */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    font-family: var(--font-serif);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    display: inline-block;
    margin-bottom: 0.75rem;
    position: relative;
}

.section-tag::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--color-gold);
    margin: 0.5rem auto 0 auto;
}

.section-title {
    font-size: 2.7rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 40%, var(--color-gold) 85%, var(--color-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    cursor: pointer;
    font-family: var(--font-sans);
    border: none;
    text-transform: uppercase;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-cyan) 100%);
    color: #000000;
    font-weight: 700;
    box-shadow: 0 4px 15px var(--color-cyan-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--color-cyan-glow), 0 0 15px var(--color-purple-glow);
}

.btn-primary:active {
    transform: translateY(1px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
}

.btn-outline:hover {
    background: var(--color-gold);
    color: var(--bg-primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px var(--color-gold-glow);
}

.btn-gold {
    background: linear-gradient(135deg, var(--color-gold) 0%, #fbd57e 100%);
    color: var(--bg-primary);
    box-shadow: 0 4px 15px var(--color-gold-glow);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(224, 184, 92, 0.6);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.3);
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 39, 67, 0.6);
}

.btn-full {
    width: 100%;
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Glassmorphism elements */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.main-header {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    z-index: 100;
    background: rgba(10, 6, 27, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(224, 184, 92, 0.25);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(125, 83, 222, 0.1);
    transition: var(--transition-smooth);
}

.header-container {
    width: 100%;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.4rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 0 10px rgba(224, 184, 92, 0.3);
}

.logo-icon {
    font-size: 1.6rem;
    animation: pulseGlow 3s infinite ease-in-out;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.btn-header {
    border: 1px solid var(--color-gold);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    color: var(--color-gold) !important;
}

.btn-header::after {
    display: none;
}

.btn-header:hover {
    background: var(--color-gold);
    color: var(--bg-primary) !important;
    box-shadow: 0 0 10px var(--color-gold-glow);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 8rem;
    padding-bottom: 4rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
    gap: 4rem;
}

.hero-glow-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

.hero-glow-orb.purple {
    background: var(--color-purple);
    top: 10%;
    left: -10%;
}

.hero-glow-orb.gold {
    background: var(--color-gold);
    bottom: 10%;
    right: -10%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-container {
    margin-bottom: 1.5rem;
}

.badge {
    background: rgba(125, 83, 222, 0.15);
    border: 1px solid var(--border-purple);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: #b586f9;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-serif);
}

.hero-title {
    font-size: 4.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #ffffff 15%, var(--color-gold) 55%, var(--color-purple) 85%, var(--color-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    line-height: 1.5;
}

.stats-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    background: rgba(13, 16, 37, 0.4);
    border: 1px solid rgba(224, 184, 92, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(8px);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-lbl {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(224, 184, 92, 0.15);
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hero-instagram-invite {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: var(--color-gold);
    letter-spacing: 1px;
}

.hero-instagram-invite p {
    margin-bottom: 0.25rem;
}

.horoscopes-tag {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

/* Hero floating cards visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.scene-container {
    position: relative;
    width: 300px;
    height: 400px;
    perspective: 1000px;
}

.floating-tarot-card {
    position: absolute;
    width: 200px;
    height: 320px;
    background: var(--bg-card);
    border: 1.5px solid var(--color-gold);
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(224, 184, 92, 0.2);
    top: 10%;
    left: 0;
    animation: float1 6s infinite ease-in-out;
    padding: 10px;
}

.floating-tarot-card.second {
    top: 20%;
    left: 25%;
    border-color: var(--color-purple);
    animation: float2 6s infinite ease-in-out;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(125, 83, 222, 0.2);
}

.card-art {
    width: 100%;
    height: 100%;
    border: 1px solid rgba(224, 184, 92, 0.3);
    border-radius: 8px;
    background: radial-gradient(circle at center, #1b163d 0%, #080718 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.floating-tarot-card.second .card-art {
    border-color: rgba(125, 83, 222, 0.3);
    background: radial-gradient(circle at center, #27144e 0%, #0d061e 100%);
}

.card-inner-border {
    width: 90%;
    height: 94%;
    border: 1px dashed rgba(224, 184, 92, 0.4);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-tarot-card.second .card-inner-border {
    border-color: rgba(125, 83, 222, 0.4);
}

.card-symbol {
    font-size: 3rem;
    animation: floatSymbol 4s infinite ease-in-out;
}

/* Special Spreads Section */
.spreads-section {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.spreads-group-heading {
    margin-top: 3.5rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.spreads-group-heading h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--color-cyan);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.spreads-group-heading.premium h3 {
    color: var(--color-gold);
}

.spreads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.spread-card {
    background: var(--bg-card);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-card);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.spread-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: 0 15px 35px var(--color-cyan-glow), 0 0 15px var(--color-purple-glow);
}

.spread-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(125, 83, 222, 0.2);
    border: 1px solid var(--border-purple);
    color: #b586f9;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 600;
}

.spread-badge.gold {
    background: rgba(224, 184, 92, 0.15);
    border-color: rgba(224, 184, 92, 0.3);
    color: var(--color-gold);
}

.spread-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.spread-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.spread-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.spread-features {
    list-style: none;
    font-size: 0.85rem;
    margin-top: 1rem;
}

.spread-features li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.25rem;
    color: var(--color-text-muted);
}

.spread-features li strong {
    color: #fff;
}

.spread-features li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--color-gold);
}

.spread-card.highlight {
    border-color: var(--border-purple);
    box-shadow: 0 5px 20px rgba(125, 83, 222, 0.1);
}

.spread-card.highlight:hover {
    border-color: var(--color-purple);
    box-shadow: 0 10px 30px rgba(125, 83, 222, 0.2);
}

.spread-card.highlight-gold {
    border-color: rgba(224, 184, 92, 0.3);
    box-shadow: 0 5px 20px rgba(224, 184, 92, 0.08);
}

.spread-card.highlight-gold:hover {
    border-color: var(--color-gold);
    box-shadow: 0 10px 30px rgba(224, 184, 92, 0.2);
}

.spreads-footer {
    text-align: center;
    background: rgba(13, 16, 37, 0.5);
    border: 1px solid var(--border-card);
    padding: 3rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    max-width: 800px;
    margin: 0 auto;
}

.footer-cta-text {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1rem;
}

/* Why Take Your Reading Section */
.why-choose-section {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border-top: 1px solid rgba(224, 33, 138, 0.1);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--bg-card);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-cyan);
    box-shadow: 0 10px 25px rgba(0, 229, 255, 0.15);
}

.benefit-icon {
    font-size: 2.2rem;
    margin-bottom: 1.25rem;
    display: inline-block;
}

.benefit-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.benefit-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Interactive Simulator Section */
.simulator-section {
    padding: 6rem 0;
    position: relative;
    background-color: var(--bg-primary);
}

.simulator-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-cyan-glow) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.simulator-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.simulator-controls {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

/* Card Deck area */
.deck-outer {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
    perspective: 1200px;
}

.tarot-deck {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 180px;
    margin: 0 auto;
}

/* Individual card styling */
.simulator-card {
    position: absolute;
    width: 100px;
    height: 160px;
    cursor: pointer;
    transform: rotate(var(--rot)) translateY(var(--ty)) translateX(var(--tx));
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s;
    user-select: none;
    z-index: 10;
}

.simulator-card:hover {
    transform: rotate(var(--rot)) translateY(calc(var(--ty) - 20px)) translateX(var(--tx));
    z-index: 50 !important;
}

.card-back-design {
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-gold);
    border-radius: 8px;
    background-color: #08041c;
    background-image: radial-gradient(var(--color-purple) 0.5px, transparent 0.5px), radial-gradient(var(--color-purple) 0.5px, #08041c 0.5px);
    background-size: 16px 16px;
    background-position: 0 0, 8px 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.card-back-design::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 88%;
    top: 6%;
    left: 10%;
    border: 1px dashed rgba(224, 184, 92, 0.4);
    border-radius: 6px;
}

.card-back-design::after {
    content: '✧';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    color: var(--color-gold);
    text-shadow: 0 0 10px var(--color-gold-glow);
}

/* Slots for Selected Cards (Past, Present, Future) */
.slots-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    width: 100%;
    max-width: 800px;
    margin-bottom: 4rem;
}

.slot-card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.slot-label {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    font-weight: 600;
}

.tarot-slot {
    width: 150px;
    height: 240px;
    border: 2px dashed rgba(224, 184, 92, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: rgba(13, 16, 37, 0.25);
    transition: var(--transition-smooth);
}

.tarot-slot.active-drop {
    border-color: var(--color-gold);
    background: rgba(224, 184, 92, 0.05);
    cursor: pointer;
}

.slot-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(224, 184, 92, 0.3);
    font-size: 2rem;
    gap: 0.5rem;
}

.slot-placeholder span {
    font-size: 0.8rem;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Slot Card styling */
.dealt-card {
    position: absolute;
    width: 100%;
    height: 100%;
    perspective: 1000px;
    cursor: pointer;
}

.dealt-card-inner {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.dealt-card.flipped .dealt-card-inner {
    transform: rotateY(180deg);
}

.card-face {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.card-face.back {
    border: 2.5px solid var(--color-gold);
    background-color: #08041c;
    background-image: radial-gradient(var(--color-purple) 0.5px, transparent 0.5px), radial-gradient(var(--color-purple) 0.5px, #08041c 0.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-face.back::before {
    content: '';
    position: absolute;
    width: 86%;
    height: 90%;
    top: 5%;
    left: 7%;
    border: 1px dashed rgba(255, 215, 0, 0.4);
    border-radius: 8px;
}

.card-face.back::after {
    content: '🔮';
    font-size: 2.5rem;
    animation: pulseGlow 2.5s infinite ease-in-out;
}

.card-face.front {
    transform: rotateY(180deg);
    border: 2.5px solid var(--color-gold);
    background: radial-gradient(circle at center, #1c0828 0%, #05030f 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    padding: 1rem 0.5rem;
    align-items: center;
    justify-content: space-between;
}

.card-art-box {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.card-illustration {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 10px var(--color-gold-glow));
}

.card-name {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
}

.card-keywords {
    font-size: 0.65rem;
    color: var(--color-text-muted);
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-top: 0.25rem;
}

.card-number {
    font-family: var(--font-serif);
    font-size: 0.75rem;
    color: rgba(224, 184, 92, 0.6);
    font-weight: 600;
}

/* Interpretation display */
.interpretation-box {
    width: 100%;
    max-width: 800px;
    background: var(--bg-card);
    border: 1px solid rgba(224, 184, 92, 0.25);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(125, 83, 222, 0.15);
    transition: var(--transition-smooth);
    opacity: 1;
    transform: translateY(0);
}

.interpretation-box.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    height: 0;
    padding: 0;
    border: none;
    overflow: hidden;
}

.interpretation-header {
    border-bottom: 1px solid rgba(224, 184, 92, 0.15);
    padding-bottom: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.interpretation-header h3 {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 0.25rem;
}

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

.interpretation-content {
    animation: fadeIn 0.5s ease-in-out;
}

.select-hint {
    text-align: center;
    color: var(--color-text-muted);
    font-style: italic;
    font-size: 0.95rem;
}

.result-card-detail {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    align-items: start;
}

.result-icon {
    font-size: 3rem;
    background: rgba(224, 184, 92, 0.1);
    border: 1px solid rgba(224, 184, 92, 0.3);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(224, 184, 92, 0.1);
}

.result-heading {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.result-pos-label {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
}

.result-pos-label.past { background: rgba(125, 83, 222, 0.2); color: #c4a1ff; border: 1px solid rgba(125, 83, 222, 0.3); }
.result-pos-label.present { background: rgba(224, 184, 92, 0.2); color: #ffd57b; border: 1px solid rgba(224, 184, 92, 0.3); }
.result-pos-label.future { background: rgba(255, 94, 126, 0.2); color: #ffa2b6; border: 1px solid rgba(255, 94, 126, 0.3); }

.result-keywords {
    font-size: 0.9rem;
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.result-meaning {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.result-meaning strong {
    color: #fff;
}

/* Shuffling animations */
@keyframes shuffle-left {
    0% { transform: translateX(0) scale(1) rotate(0deg); }
    50% { transform: translateX(-150px) scale(1.05) rotate(-15deg); z-index: 100; }
    100% { transform: translateX(0) scale(1) rotate(0deg); z-index: 10; }
}

@keyframes shuffle-right {
    0% { transform: translateX(0) scale(1) rotate(0deg); }
    50% { transform: translateX(150px) scale(1.05) rotate(15deg); z-index: 100; }
    100% { transform: translateX(0) scale(1) rotate(0deg); z-index: 10; }
}

.shuffling-left {
    animation: shuffle-left 0.6s ease-in-out;
}

.shuffling-right {
    animation: shuffle-right 0.6s ease-in-out;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    justify-self: center;
}

.image-frame-glow {
    position: absolute;
    top: -15px;
    left: -15px;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    border: 1px solid var(--color-gold);
    border-radius: 20px;
    z-index: 0;
    opacity: 0.3;
    pointer-events: none;
}

.about-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--border-card);
    aspect-ratio: 4 / 5;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    filter: grayscale(15%) contrast(110%);
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.05);
}

.about-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-p {
    font-size: 1rem;
    color: var(--color-text-muted);
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.about-badge-item {
    background: rgba(13, 16, 37, 0.6);
    border: 1px solid var(--border-card);
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    font-weight: 500;
}

.about-badge-item i {
    color: var(--color-gold);
}

/* Booking & Contact Section */
.contact-section {
    padding: 6rem 0;
    background-color: var(--bg-primary);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: start;
}

.contact-p {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    font-weight: 300;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.instagram-dm-card {
    background: linear-gradient(135deg, rgba(22, 18, 54, 0.4) 0%, rgba(13, 10, 31, 0.6) 100%);
    border: 1px solid var(--border-purple);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.instagram-dm-card h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.instagram-dm-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Contact form container */
.contact-form-container {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-card);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.4rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.form-header p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text);
    letter-spacing: 0.5px;
}

.form-group input, .form-group select, .form-group textarea {
    background: rgba(7, 8, 20, 0.7);
    border: 1px solid var(--border-card);
    padding: 0.9rem 1.2rem;
    border-radius: 12px;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 10px rgba(224, 184, 92, 0.15);
}

.form-group select option {
    background-color: var(--bg-secondary);
    color: #fff;
}

/* Footer styling */
.main-footer {
    background-color: #03040a;
    border-top: 1px solid rgba(224, 184, 92, 0.08);
    padding: 5rem 0 2rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h2 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    max-width: 320px;
}

.footer-links h4, .footer-social h4 {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(224, 184, 92, 0.08);
    border: 1px solid var(--border-card);
    font-size: 1.2rem;
    color: var(--color-gold);
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--color-gold);
    color: var(--bg-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--color-gold-glow);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(160, 166, 199, 0.5);
}

/* Modal styling */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: rgba(3, 4, 10, 0.85);
    backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid rgba(224, 184, 92, 0.35);
    border-radius: 24px;
    width: 100%;
    max-width: 500px;
    padding: 3.5rem 3rem;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.5), 0 0 30px rgba(125, 83, 222, 0.2);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal.show .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--color-text-muted);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
}

.close-modal:hover {
    color: #fff;
}

.modal-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: floatSymbol 3s infinite ease-in-out;
}

.modal h2 {
    font-size: 1.8rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.modal p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.modal-sub {
    font-size: 0.85rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.25rem;
    margin-bottom: 2rem !important;
}

/* Animations declarations */
@keyframes float1 {
    0% { transform: translateY(0px) rotate(-3deg); }
    50% { transform: translateY(-15px) rotate(-1deg); }
    100% { transform: translateY(0px) rotate(-3deg); }
}

@keyframes float2 {
    0% { transform: translateY(0px) rotate(5deg); }
    50% { transform: translateY(-20px) rotate(7deg); }
    100% { transform: translateY(0px) rotate(5deg); }
}

@keyframes floatSymbol {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

@keyframes pulseGlow {
    0% { text-shadow: 0 0 5px rgba(224, 184, 92, 0.2); opacity: 0.8; }
    50% { text-shadow: 0 0 15px rgba(224, 184, 92, 0.7); opacity: 1; }
    100% { text-shadow: 0 0 5px rgba(224, 184, 92, 0.2); opacity: 0.8; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Media Queries (Responsive Design) */

@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding-top: 7rem;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-visual {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .main-header {
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid rgba(224, 184, 92, 0.15);
        background: rgba(10, 6, 27, 0.98);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 6, 27, 0.98);
        border-bottom: 1px solid rgba(224, 184, 92, 0.15);
        padding: 2rem;
        display: none;
    }
    
    .nav-menu.show {
        display: block;
        animation: fadeIn 0.3s ease-out;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }
    
    .nav-menu ul li {
        width: 100%;
        text-align: center;
    }
    
    .btn-header {
        display: block;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .stats-container {
        flex-direction: column;
        padding: 1.5rem 1rem;
        gap: 1.5rem;
        width: 100%;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
    
    .slots-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        justify-items: center;
    }
    
    .tarot-slot {
        width: 180px;
        height: 288px;
    }
    
    .tarot-deck {
        height: 160px;
    }
    
    .result-card-detail {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-brand p {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    
    .modal-content {
        padding: 2.5rem 1.5rem;
    }
}

/* Ekadashi Banner Special Offer */
.ekadashi-banner {
    background: rgba(224, 184, 92, 0.08);
    border: 1px dashed var(--color-gold);
    border-radius: 12px;
    padding: 0.65rem 1rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--color-gold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}
.ekadashi-banner i {
    animation: pulseGlow 1.5s infinite alternate;
}

/* AI Tarot Advisor Section */
.ai-advisor-section {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border-top: 1px solid rgba(224, 33, 138, 0.1);
}

.ai-advisor-container {
    max-width: 680px;
    margin: 3rem auto 0 auto;
}

.ai-chat-window {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 520px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.chat-header {
    background: rgba(22, 14, 46, 0.8);
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar-glow-wrapper {
    position: relative;
    width: 45px;
    height: 45px;
}

.avatar-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    width: 49px;
    height: 49px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-cyan) 100%);
    opacity: 0.8;
    z-index: 1;
}

.chat-avatar {
    position: relative;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    z-index: 2;
    border: 2px solid var(--bg-card);
}

.chat-title-info h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
}

.status-online {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    color: #00ffaa;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #00ffaa;
    box-shadow: 0 0 8px #00ffaa;
    animation: dotPulse 1.5s infinite;
}

@keyframes dotPulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

.chat-history {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.chat-history::-webkit-scrollbar {
    width: 5px;
}

.chat-history::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.chat-bubble {
    max-width: 85%;
    padding: 0.95rem 1.25rem;
    border-radius: 18px;
    font-size: 0.9rem;
    line-height: 1.5;
    animation: slideIn 0.3s ease-out forwards;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-bubble.received {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #e0e4ff;
    border-top-left-radius: 4px;
}

.chat-bubble.sent {
    align-self: flex-end;
    background: linear-gradient(135deg, rgba(125, 83, 222, 0.3) 0%, rgba(224, 33, 138, 0.3) 100%);
    border: 1px solid rgba(125, 83, 222, 0.3);
    color: #ffffff;
    border-top-right-radius: 4px;
}

/* Typing Indicator */
.chat-bubble.loading {
    display: flex;
    gap: 0.35rem;
    padding: 0.75rem 1.1rem;
    align-items: center;
}

.chat-bubble.loading span {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: typing 1s infinite alternate;
}

.chat-bubble.loading span:nth-child(2) {
    animation-delay: 0.2s;
}

.chat-bubble.loading span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    from { transform: translateY(0); opacity: 0.3; }
    to { transform: translateY(-5px); opacity: 1; }
}

/* Chat Recommendation Card */
.chat-reading-recommendation {
    margin-top: 0.85rem;
    background: rgba(22, 14, 46, 0.6);
    border: 1px solid var(--color-gold);
    border-radius: 14px;
    padding: 1.25rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(224, 184, 92, 0.08);
}

.rec-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.rec-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.recommend-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-cyan) 100%);
    border: none;
    color: #000000;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.recommend-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}

.chat-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(10, 6, 27, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.tag-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #c2c7e6;
    padding: 0.45rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tag-btn:hover {
    background: rgba(0, 229, 255, 0.08);
    border-color: var(--color-cyan);
    color: #fff;
}

.chat-input-area {
    display: flex;
    padding: 1rem 1.5rem;
    background: rgba(22, 14, 46, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    gap: 1rem;
}

.chat-input-area input {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    color: #fff;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-smooth);
}

.chat-input-area input:focus {
    border-color: var(--color-cyan);
    background: rgba(255, 255, 255, 0.06);
}

.send-chat-btn {
    background: var(--color-purple);
    border: none;
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.send-chat-btn:hover {
    background: var(--color-pink);
    transform: scale(1.05);
}
