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

:root {
    --primary-color: #1a237e;
    --primary-light: #3949ab;
    --primary-lighter: #5c6bc0;
    --accent-color: #00bcd4;
    --accent-light: #4dd0e1;
    --bg-color: #0a1033;
    --bg-card: #16213e;
    --bg-card-light: #1e2a4a;
    --text-color: #e8eaed;
    --text-muted: #9aa0a6;
    --border-color: #2d3748;
    --white: #ffffff;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.6);
    --gradient: linear-gradient(135deg, #0a1033, #1a237e, #0d47a1);
}

body {
    font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
}

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

/* HEADER & NAVBAR */
.navbar {
    background: var(--gradient);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-light);
    background: rgba(0, 188, 212, 0.1);
}

/* HERO SECTION */
.hero {
    background: var(--gradient);
    color: var(--white);
    padding: 7rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 188, 212, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 300;
}

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

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Roboto', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: var(--bg-color);
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--accent-light);
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--bg-color);
    transform: translateY(-3px);
}

.btn-service {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-lighter));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(57, 73, 171, 0.4);
}

.btn-service:hover {
    background: linear-gradient(135deg, var(--primary-lighter), var(--primary-light));
    transform: translateY(-3px);
}

.btn-small {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-light);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: var(--bg-color);
}

/* SECTIONS */
section {
    padding: 5rem 0;
}

.services {
    background: var(--bg-card);
}

.services h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--text-color);
    margin-bottom: 3.5rem;
    font-weight: 700;
}

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

.service-card {
    background: var(--bg-card-light);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 188, 212, 0.1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 188, 212, 0.3);
}

.service-icon {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: var(--accent-light);
    margin-bottom: 1.2rem;
    font-size: 1.7rem;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1.8rem;
    font-size: 1.05rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-muted);
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* ABOUT SECTION */
.about {
    background: var(--bg-color);
}

.about h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--text-color);
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.about-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 1.8rem;
}

/* CONTACT SECTION */
.contact {
    background: var(--bg-card);
    text-align: center;
}

.contact h2 {
    font-size: 2.8rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.15rem;
    color: var(--text-color);
}

.contact-icon {
    font-size: 1.8rem;
}

/* HOROSCOPE PAGES */
.horoscope-header {
    background: var(--gradient);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.horoscope-header h1 {
    font-size: 3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 300;
}

.horoscope-content {
    background: var(--bg-color);
}

.horoscope-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.9rem 2.2rem;
    font-size: 1.1rem;
    border: 2px solid var(--primary-light);
    background: var(--bg-card-light);
    color: var(--text-color);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

.tab-btn:hover,
.tab-btn.active {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-lighter));
    color: var(--white);
    border-color: var(--primary-lighter);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(57, 73, 171, 0.4);
}

.horoscope-group {
    display: none;
    gap: 2rem;
}

.horoscope-group.active {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
}

.horoscope-card {
    background: var(--bg-card-light);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 188, 212, 0.1);
}

.horoscope-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 188, 212, 0.3);
}

.zodiac-title {
    font-size: 2rem;
    color: var(--accent-light);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.zodiac-dates {
    color: var(--primary-lighter);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.horoscope-text {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.horoscope-text strong {
    color: var(--accent-light);
}

.horoscope-cta {
    background: var(--bg-card-light);
    padding: 3.5rem;
    text-align: center;
    border-radius: 20px;
    margin-top: 3.5rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 188, 212, 0.1);
}

.horoscope-cta h3 {
    color: var(--text-color);
    font-size: 2rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.horoscope-cta p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

/* PRIVACY POLICY */
.policy-header {
    background: var(--gradient);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.policy-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.policy-content {
    background: var(--bg-color);
}

.policy-section {
    background: var(--bg-card-light);
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 188, 212, 0.1);
}

.policy-section h2 {
    color: var(--accent-light);
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.policy-section p,
.policy-section li {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.policy-section ul {
    margin-left: 1.8rem;
    margin-bottom: 1.2rem;
}

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

.policy-section strong {
    color: var(--accent-light);
}

.policy-contact {
    background: var(--bg-card);
    padding: 1.8rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 188, 212, 0.1);
}

.policy-contact p {
    margin-bottom: 0.6rem;
    color: var(--text-color);
}

/* FOOTER */
.footer {
    background: var(--bg-card);
    color: var(--text-color);
    padding: 4rem 0 1.5rem;
    border-top: 1px solid rgba(0, 188, 212, 0.1);
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.2rem;
    color: var(--accent-light);
    font-weight: 600;
}

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

.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 0.6rem;
}

.footer-section a:hover {
    color: var(--accent-light);
    transform: translateX(5px);
}

.footer-section p {
    margin-bottom: 0.6rem;
    color: var(--text-muted);
}

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

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    color: var(--text-color);
    padding: 1.8rem 0;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
    border-top: 1px solid rgba(0, 188, 212, 0.1);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    color: var(--text-muted);
}

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

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-lighter);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    section {
        padding: 3.5rem 0;
    }

    .horoscope-card,
    .policy-section,
    .horoscope-cta {
        padding: 1.8rem;
    }
}