:root {
    /* Gypsy Color Palette - Rich & Vibrant */
    --primary-burgundy: #8B1538;
    --deep-purple: #4A1942;
    --burnt-orange: #D2691E;
    --golden-yellow: #DAA520;
    --emerald-green: #2E8B57;
    --royal-blue: #2E4C6D;
    --crimson: #DC143C;
    
    /* Supporting Colors */
    --warm-beige: #F5DEB3;
    --cream: #FFF8DC;
    --dark-brown: #3E2723;
    --rich-gold: #FFD700;
    --teal: #008080;
    
    /* Gradients */
    --gradient-sunset: linear-gradient(135deg, #8B1538 0%, #D2691E 50%, #DAA520 100%);
    --gradient-mystic: linear-gradient(135deg, #4A1942 0%, #2E4C6D 100%);
    --gradient-earth: linear-gradient(135deg, #3E2723 0%, #8B1538 50%, #2E4C6D 100%);
    
    /* Text */
    --text-light: #FFF8DC;
    --text-dark: #3E2723;
    
    /* Shadows */
    --shadow-warm: 0 8px 25px rgba(139, 21, 56, 0.4);
    --shadow-deep: 0 12px 35px rgba(74, 25, 66, 0.5);
    --shadow-glow: 0 0 30px rgba(218, 165, 32, 0.6);
}

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

body {
    font-family: 'Lato', sans-serif;
    background: var(--dark-brown);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

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

/* Navigation */
.navbar {
    background: linear-gradient(to right, var(--deep-purple), var(--primary-burgundy));
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 3px solid var(--golden-yellow);
    box-shadow: var(--shadow-deep);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    font-weight: 700;
    color: var(--rich-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.nav-brand i {
    font-size: 2.2rem;
    filter: drop-shadow(0 0 10px var(--golden-yellow));
}

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

.nav-link {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--golden-yellow);
    transition: width 0.3s ease;
}

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

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: 2px solid var(--golden-yellow);
    color: var(--rich-gold);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: var(--golden-yellow);
    color: var(--dark-brown);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    background: url('../images/bohemian-pattern.jpg') center/cover;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 25, 66, 0.85) 0%, rgba(139, 21, 56, 0.8) 50%, rgba(62, 39, 35, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    animation: fadeInLeft 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--rich-gold);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: var(--warm-beige);
    font-style: italic;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-warm);
}

.btn-primary {
    background: var(--gradient-sunset);
    color: var(--cream);
    border: 2px solid var(--golden-yellow);
}

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

.btn-secondary {
    background: transparent;
    color: var(--rich-gold);
    border: 2px solid var(--golden-yellow);
}

.btn-secondary:hover {
    background: var(--golden-yellow);
    color: var(--dark-brown);
    transform: translateY(-3px);
}

.hero-image {
    animation: fadeInRight 1s ease-out;
}

.hero-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: var(--shadow-deep);
    border: 4px solid var(--golden-yellow);
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Section Styles */
.section {
    padding: 5rem 0;
    position: relative;
}

.section:nth-child(even) {
    background: linear-gradient(180deg, rgba(62, 39, 35, 0.5) 0%, rgba(74, 25, 66, 0.3) 100%);
}

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

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--rich-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section-title i {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px var(--golden-yellow));
}

.section-description {
    font-size: 1.2rem;
    color: var(--warm-beige);
    font-style: italic;
}

/* Horoscope Section */
.zodiac-selector-modern {
    text-align: center;
    margin-bottom: 3rem;
}

.sign-select-modern {
    width: 100%;
    max-width: 500px;
    padding: 1.2rem 1.5rem;
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--deep-purple), var(--primary-burgundy));
    color: var(--cream);
    border: 3px solid var(--golden-yellow);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
    box-shadow: var(--shadow-warm);
}

.sign-select-modern:focus {
    outline: none;
    box-shadow: var(--shadow-glow);
    transform: scale(1.02);
}

.sign-select-modern option {
    background: var(--deep-purple);
    padding: 1rem;
}

.horoscope-result {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    animation: slideUp 0.6s ease-out;
}

.horoscope-result.hidden {
    display: none;
}

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

.horoscope-card {
    background: linear-gradient(135deg, rgba(74, 25, 66, 0.9), rgba(139, 21, 56, 0.8));
    border-radius: 20px;
    padding: 2.5rem;
    border: 3px solid var(--burnt-orange);
    box-shadow: var(--shadow-deep);
}

.horoscope-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--golden-yellow);
}

.sign-display {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sign-icon-large {
    font-size: 4rem;
    color: var(--rich-gold);
    text-shadow: 0 0 20px var(--golden-yellow);
}

.sign-name-display {
    font-size: 2.5rem;
    color: var(--rich-gold);
}

.date-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: var(--warm-beige);
}

.horoscope-description {
    margin-bottom: 2rem;
}

.horoscope-description h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--burnt-orange);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.horoscope-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--cream);
}

.loading-text {
    font-style: italic;
    opacity: 0.7;
}

.horoscope-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--burnt-orange);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(218, 165, 32, 0.3);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-icon.love { color: #FF69B4; }
.stat-icon.career { color: #4169E1; }
.stat-icon.health { color: #32CD32; }
.stat-icon.finance { color: #FFD700; }

.stat-card h5 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--warm-beige);
}

.stat-stars {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    font-size: 1.3rem;
}

.stat-stars i {
    color: var(--golden-yellow);
    transition: all 0.3s ease;
}

.stat-stars i.fas {
    text-shadow: 0 0 10px var(--golden-yellow);
}

.horoscope-extras {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid var(--emerald-green);
}

.extra-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.extra-item i {
    color: var(--burnt-orange);
    font-size: 1.3rem;
}

.extra-item strong {
    color: var(--warm-beige);
}

.extra-item span {
    color: var(--rich-gold);
    font-weight: 600;
}

.horoscope-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.horoscope-image img {
    width: 100%;
    border-radius: 20px;
    border: 3px solid var(--golden-yellow);
    box-shadow: var(--shadow-deep);
    transition: transform 0.3s ease;
}

.horoscope-image img:hover {
    transform: scale(1.05) rotate(2deg);
}

/* Tarot Section */
.tarot-section {
    background: linear-gradient(180deg, rgba(46, 76, 109, 0.3) 0%, rgba(139, 21, 56, 0.3) 100%);
}

.tarot-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.tarot-image-section {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-deep);
}

.tarot-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.tarot-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: var(--rich-gold);
    text-align: center;
}

.tarot-interaction {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.spread-selector label {
    display: block;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    color: var(--warm-beige);
    font-weight: 600;
}

.spread-select {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--deep-purple), var(--royal-blue));
    color: var(--cream);
    border: 2px solid var(--burnt-orange);
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
}

.tarot-deck-container {
    text-align: center;
}

.tarot-deck {
    position: relative;
    height: 250px;
    margin-bottom: 2rem;
    perspective: 1000px;
}

.card-stack {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 220px;
    background: var(--gradient-mystic);
    border: 4px solid var(--golden-yellow);
    border-radius: 15px;
    box-shadow: var(--shadow-deep);
    transition: all 0.5s ease;
}

.card-stack::before,
.card-stack::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-earth);
    border: 4px solid var(--burnt-orange);
    border-radius: 15px;
    z-index: -1;
}

.card-stack::before {
    transform: rotate(5deg) translate(-5px, -5px);
}

.card-stack::after {
    transform: rotate(-5deg) translate(5px, -5px);
}

.tarot-deck:hover .card-stack {
    transform: translate(-50%, -60%) scale(1.1);
    box-shadow: var(--shadow-glow);
}

.draw-button-new {
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--gradient-sunset);
    color: var(--cream);
    border: 3px solid var(--golden-yellow);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-warm);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.draw-button-new:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.draw-button-new:active {
    transform: scale(0.98);
}

.tarot-result-area {
    margin-top: 2rem;
}

.tarot-result-area.hidden {
    display: none;
}

.drawn-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.drawn-card {
    background: var(--gradient-mystic);
    border: 3px solid var(--burnt-orange);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    animation: cardReveal 0.6s ease-out;
    box-shadow: var(--shadow-deep);
}

@keyframes cardReveal {
    from {
        opacity: 0;
        transform: rotateY(180deg) scale(0.5);
    }
    to {
        opacity: 1;
        transform: rotateY(0) scale(1);
    }
}

.drawn-card-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.drawn-card-name {
    font-size: 1.3rem;
    color: var(--rich-gold);
    margin-bottom: 0.5rem;
}

.drawn-card-position {
    font-size: 0.9rem;
    color: var(--warm-beige);
    font-style: italic;
}

.reading-text {
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--golden-yellow);
    font-size: 1.1rem;
    line-height: 1.8;
}

.reading-text h4 {
    color: var(--burnt-orange);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.reading-text p {
    margin-bottom: 1rem;
    color: var(--cream);
}

/* Compatibility Section */
.compatibility-content {
    max-width: 900px;
    margin: 0 auto;
}

.compatibility-form {
    background: linear-gradient(135deg, rgba(74, 25, 66, 0.8), rgba(46, 76, 109, 0.7));
    padding: 3rem;
    border-radius: 20px;
    border: 3px solid var(--golden-yellow);
    box-shadow: var(--shadow-deep);
    margin-bottom: 3rem;
}

.sign-inputs {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.sign-input-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    color: var(--warm-beige);
    font-weight: 600;
}

.compat-sign-select {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    background: rgba(0, 0, 0, 0.3);
    color: var(--cream);
    border: 2px solid var(--burnt-orange);
    border-radius: 10px;
    cursor: pointer;
}

.heart-separator {
    font-size: 3rem;
    color: var(--crimson);
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.check-compatibility-btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--gradient-sunset);
    color: var(--cream);
    border: 3px solid var(--golden-yellow);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.check-compatibility-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.compatibility-result {
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.8), rgba(62, 39, 35, 0.9));
    padding: 3rem;
    border-radius: 20px;
    border: 3px solid var(--burnt-orange);
    box-shadow: var(--shadow-deep);
    animation: slideUp 0.6s ease-out;
}

.compatibility-result.hidden {
    display: none;
}

.compatibility-score {
    text-align: center;
    margin-bottom: 3rem;
}

.score-circle {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
}

.score-ring {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.score-ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 8;
}

.score-ring-fill {
    fill: none;
    stroke: var(--golden-yellow);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 251.2;
    stroke-dashoffset: 251.2;
    transition: stroke-dashoffset 2s ease;
    filter: drop-shadow(0 0 10px var(--golden-yellow));
}

.score-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    font-weight: 700;
    color: var(--rich-gold);
}

.score-number {
    font-size: 3.5rem;
}

.compatibility-details h4 {
    font-size: 2rem;
    color: var(--burnt-orange);
    margin-bottom: 1.5rem;
    text-align: center;
}

.compatibility-details p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--cream);
}

.compat-aspects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.aspect-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid var(--emerald-green);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.aspect-item i {
    font-size: 2rem;
    color: var(--burnt-orange);
}

.aspect-item strong {
    display: block;
    color: var(--warm-beige);
    margin-bottom: 0.3rem;
}

.aspect-item span {
    color: var(--rich-gold);
    font-weight: 600;
}

/* Moon Section */
.moon-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: start;
}

.moon-display {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    border: 3px solid var(--burnt-orange);
    box-shadow: var(--shadow-deep);
}

.moon-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFF8DC 0%, #FFE4B5 100%);
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
    overflow: hidden;
}

.moon-shadow {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-brown);
    border-radius: 50%;
    transition: all 1s ease;
}

.moon-phase-name {
    font-size: 1.8rem;
    color: var(--rich-gold);
    margin-bottom: 0.5rem;
}

.moon-illumination {
    color: var(--warm-beige);
    font-size: 1.1rem;
}

.moon-info {
    display: grid;
    gap: 2rem;
}

.moon-image-container img {
    width: 100%;
    border-radius: 15px;
    border: 3px solid var(--golden-yellow);
    box-shadow: var(--shadow-deep);
}

.moon-details {
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--emerald-green);
}

.moon-details h4 {
    font-size: 1.8rem;
    color: var(--burnt-orange);
    margin-bottom: 1rem;
}

.moon-details p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--cream);
}

.moon-activities h5 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    color: var(--warm-beige);
    margin-bottom: 1rem;
}

.moon-activities ul {
    list-style: none;
    padding-left: 0;
}

.moon-activities li {
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--burnt-orange);
    color: var(--cream);
}

.moon-activities li::before {
    content: '✦ ';
    color: var(--golden-yellow);
    margin-right: 0.5rem;
}

/* Birth Chart Section */
.birthchart-content {
    max-width: 1000px;
    margin: 0 auto;
}

.birthchart-form {
    background: linear-gradient(135deg, rgba(74, 25, 66, 0.8), rgba(139, 21, 56, 0.7));
    padding: 3rem;
    border-radius: 20px;
    border: 3px solid var(--golden-yellow);
    box-shadow: var(--shadow-deep);
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

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

.form-group label {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: var(--warm-beige);
    font-weight: 600;
}

.form-input {
    padding: 1rem;
    font-size: 1.1rem;
    background: rgba(0, 0, 0, 0.3);
    color: var(--cream);
    border: 2px solid var(--burnt-orange);
    border-radius: 10px;
    font-family: 'Lato', sans-serif;
}

.form-input:focus {
    outline: none;
    border-color: var(--golden-yellow);
    box-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
}

.calculate-btn {
    grid-column: 1 / -1;
    padding: 1.2rem;
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--gradient-sunset);
    color: var(--cream);
    border: 3px solid var(--golden-yellow);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.calculate-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.birthchart-result {
    animation: slideUp 0.6s ease-out;
}

.birthchart-result.hidden {
    display: none;
}

.chart-summary {
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.8), rgba(62, 39, 35, 0.9));
    padding: 3rem;
    border-radius: 20px;
    border: 3px solid var(--burnt-orange);
    box-shadow: var(--shadow-deep);
    margin-bottom: 2rem;
}

.big-three {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.sign-display-item {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 2px solid var(--emerald-green);
    transition: all 0.3s ease;
}

.sign-display-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(218, 165, 32, 0.3);
}

.sign-display-item i {
    font-size: 3rem;
    color: var(--burnt-orange);
    margin-bottom: 1rem;
}

.sign-display-item h4 {
    font-size: 1.2rem;
    color: var(--warm-beige);
    margin-bottom: 0.8rem;
}

.sign-display-item .sign-name {
    font-size: 1.8rem;
    color: var(--rich-gold);
    font-weight: 700;
}

.chart-interpretation {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--golden-yellow);
}

.chart-interpretation h4 {
    font-size: 1.8rem;
    color: var(--burnt-orange);
    margin-bottom: 1rem;
}

.chart-interpretation p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--cream);
}

.fortune-teller-wisdom {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 20px;
    border: 3px solid var(--primary-burgundy);
    box-shadow: var(--shadow-deep);
}

.fortune-teller-wisdom img {
    width: 250px;
    border-radius: 15px;
    border: 3px solid var(--golden-yellow);
    box-shadow: var(--shadow-warm);
}

.wisdom-text {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    color: var(--rich-gold);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: linear-gradient(to right, var(--deep-purple), var(--primary-burgundy), var(--dark-brown));
    padding: 3rem 0 1rem;
    border-top: 4px solid var(--golden-yellow);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.5rem;
    color: var(--rich-gold);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--warm-beige);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--cream);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--rich-gold);
    padding-left: 0.5rem;
}

.footer-section p a {
    color: var(--rich-gold);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.5rem 0;
}

.footer-section p a:hover {
    color: var(--cream);
    text-shadow: 0 0 10px var(--golden-yellow);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--gradient-sunset);
    border-radius: 50%;
    color: var(--cream);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border: 2px solid var(--golden-yellow);
}

.social-links a:hover {
    transform: scale(1.15);
    box-shadow: var(--shadow-glow);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid var(--burnt-orange);
    color: var(--warm-beige);
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image img {
        max-width: 350px;
    }

    .horoscope-result {
        grid-template-columns: 1fr;
    }

    .tarot-layout {
        grid-template-columns: 1fr;
    }

    .sign-inputs {
        grid-template-columns: 1fr;
    }

    .heart-separator {
        transform: rotate(90deg);
    }

    .moon-content {
        grid-template-columns: 1fr;
    }

    .fortune-teller-wisdom {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .fortune-teller-wisdom img {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(180deg, var(--deep-purple), var(--primary-burgundy));
        flex-direction: column;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .horoscope-card {
        padding: 1.5rem;
    }

    .big-three {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .horoscope-stats {
        grid-template-columns: 1fr;
    }

    .drawn-cards-container {
        grid-template-columns: 1fr;
    }
}

/* Hidden utility */
.hidden {
    display: none !important;
}

/* Page Header (for individual pages) */
.page-header {
    background: var(--gradient-mystic);
    padding: 4rem 0 3rem;
    border-bottom: 3px solid var(--golden-yellow);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    color: var(--rich-gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-title i {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 15px var(--golden-yellow));
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--warm-beige);
    font-style: italic;
}

/* Services Grid (Home Page) */
.services-section {
    background: linear-gradient(180deg, rgba(62, 39, 35, 0.5) 0%, rgba(74, 25, 66, 0.3) 100%);
}

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

.service-card {
    background: linear-gradient(135deg, rgba(74, 25, 66, 0.8), rgba(139, 21, 56, 0.7));
    padding: 2.5rem;
    border-radius: 20px;
    border: 3px solid var(--burnt-orange);
    box-shadow: var(--shadow-deep);
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: translateX(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: var(--golden-yellow);
}

.service-icon {
    font-size: 4rem;
    color: var(--burnt-orange);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    color: var(--rich-gold);
    transform: scale(1.1) rotate(10deg);
}

.service-card h3 {
    font-size: 1.8rem;
    color: var(--rich-gold);
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-arrow {
    font-size: 1.5rem;
    color: var(--golden-yellow);
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-arrow {
    transform: translateX(10px);
}

.service-card-special {
    background: linear-gradient(135deg, rgba(46, 76, 109, 0.7), rgba(62, 39, 35, 0.8));
    border-color: var(--teal);
}

.service-card-special .service-icon {
    color: var(--teal);
}

/* About Section (Home Page) */
.about-section {
    padding: 6rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    border: 4px solid var(--golden-yellow);
    box-shadow: var(--shadow-deep);
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--rich-gold);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--warm-beige);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.about-stats .stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 2px solid var(--emerald-green);
}

.about-stats .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--rich-gold);
    margin-bottom: 0.5rem;
}

.about-stats .stat-label {
    display: block;
    font-size: 1rem;
    color: var(--warm-beige);
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(180deg, rgba(74, 25, 66, 0.3) 0%, rgba(139, 21, 56, 0.3) 100%);
}

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

.testimonial-card {
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--burnt-orange);
    box-shadow: var(--shadow-warm);
}

.testimonial-stars {
    color: var(--golden-yellow);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--cream);
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(218, 165, 32, 0.3);
}

.testimonial-author strong {
    color: var(--rich-gold);
}

.testimonial-author span {
    color: var(--warm-beige);
    font-size: 1.2rem;
}

/* Responsive additions */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
    }

    .page-header {
        padding: 3rem 0 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.8rem;
        flex-direction: column;
    }

    .service-card {
        padding: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}