.footer-simple {
    background: transparent;
    padding: 3rem 2rem;
    text-align: center;
    color: #636e72;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

/* Horoscope Page Styles */
body.horoscope-page {
    background: linear-gradient(135deg, #fff5f7 0%, #ffe8ec 25%, #fff0e8 50%, #f8f0ff 75%, #e8f4ff 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
}

.back-link {
    position: fixed;
    top: 2rem;
    left: 2rem;
    padding: 0.8rem 1.5rem;
    background: white;
    color: #ff6b6b;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.back-link:hover {
    transform: translateX(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.horoscope-hero {
    padding: 9rem 2rem 3rem;
    position: relative;
    z-index: 1;
}

.horoscope-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 50%, #feca57 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.3rem;
    color: #636e72;
}

.sign-selector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.sign-btn-circle {
    background: white;
    border: 3px solid transparent;
    border-radius: 20px;
    padding: 1.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.sign-btn-circle:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.sign-btn-circle.active {
    border-color: currentColor;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px) scale(1.05);
}

.sign-symbol {
    font-size: 2.5rem;
    transition: transform 0.3s ease;
}

.sign-btn-circle:hover .sign-symbol {
    transform: scale(1.2) rotate(10deg);
}

.sign-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2d3436;
}

/* Sign button colors */
.aries-btn {
    color: #ff6b6b;
}

.aries-btn.active {
    background: rgba(255, 107, 107, 0.1);
}

.taurus-btn {
    color: #1dd1a1;
}

.taurus-btn.active {
    background: rgba(29, 209, 161, 0.1);
}

.gemini-btn {
    color: #feca57;
}

.gemini-btn.active {
    background: rgba(254, 202, 87, 0.1);
}

.cancer-btn {
    color: #48dbfb;
}

.cancer-btn.active {
    background: rgba(72, 219, 251, 0.1);
}

.leo-btn {
    color: #ff9ff3;
}

.leo-btn.active {
    background: rgba(255, 159, 243, 0.1);
}

.virgo-btn {
    color: #54a0ff;
}

.virgo-btn.active {
    background: rgba(84, 160, 255, 0.1);
}

.libra-btn {
    color: #fd79a8;
}

.libra-btn.active {
    background: rgba(253, 121, 168, 0.1);
}

.scorpio-btn {
    color: #5f27cd;
}

.scorpio-btn.active {
    background: rgba(95, 39, 205, 0.1);
}

.sagittarius-btn {
    color: #ff6348;
}

.sagittarius-btn.active {
    background: rgba(255, 99, 72, 0.1);
}

.capricorn-btn {
    color: #0abde3;
}

.capricorn-btn.active {
    background: rgba(10, 189, 227, 0.1);
}

.aquarius-btn {
    color: #a29bfe;
}

.aquarius-btn.active {
    background: rgba(162, 155, 254, 0.1);
}

.pisces-btn {
    color: #00d2d3;
}

.pisces-btn.active {
    background: rgba(0, 210, 211, 0.1);
}

.horoscope-display-section {
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
}

.horoscope-card-new {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.horoscope-header-new {
    margin-bottom: 2.5rem;
}

.current-sign-display {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid #f8f9fa;
}

.current-sign-icon-large {
    font-size: 6rem;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.current-sign-info h2 {
    font-size: 2.5rem;
    color: #2d3436;
    margin-bottom: 0.5rem;
}

.date-range-new {
    font-size: 1.1rem;
    color: #636e72;
    font-weight: 500;
}

.tab-navigation-new {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.tab-btn-new {
    flex: 1;
    background: #f8f9fa;
    border: none;
    padding: 1.2rem;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 600;
    color: #636e72;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.tab-btn-new:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.tab-btn-new.active {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.tab-icon {
    font-size: 1.3rem;
}

.horoscope-text-new {
    color: #2d3436;
    line-height: 1.9;
    font-size: 1.15rem;
    margin-bottom: 3rem;
}

.horoscope-text-new p {
    margin-bottom: 1.2rem;
}

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

.insight-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.insight-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.insight-label {
    font-weight: 600;
    color: #636e72;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.insight-rating {
    font-size: 1.3rem;
    color: #feca57;
}

.love-card {
    border-top: 4px solid #fd79a8;
}

.career-card {
    border-top: 4px solid #54a0ff;
}

.health-card {
    border-top: 4px solid #1dd1a1;
}

.finance-card {
    border-top: 4px solid #feca57;
}

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

.lucky-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.lucky-box:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #fff5f7 0%, #ffe8ec 100%);
}

.lucky-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.lucky-label {
    font-size: 0.9rem;
    color: #636e72;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.lucky-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b6b;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.action-button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary-button {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 107, 107, 0.5);
}

.secondary-button {
    background: rgba(255, 255, 255, 0.9);
    color: #ff6b6b;
    border: 2px solid #ff6b6b;
}

.secondary-button:hover {
    background: white;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .back-link {
        top: 1rem;
        left: 1rem;
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

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

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

    .sign-selector-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1rem;
    }

    .sign-btn-circle {
        padding: 1rem 0.5rem;
    }

    .sign-symbol {
        font-size: 2rem;
    }

    .sign-name {
        font-size: 0.8rem;
    }

    .current-sign-display {
        flex-direction: column;
        text-align: center;
    }

    .current-sign-icon-large {
        font-size: 4.5rem;
    }

    .current-sign-info h2 {
        font-size: 2rem;
    }

    .horoscope-card-new {
        padding: 2rem;
    }

    .tab-navigation-new {
        flex-direction: column;
    }

    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lucky-info-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .action-button {
        width: 100%;
    }
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 25%, #ffeaa7 50%, #ff9ff3 75%, #a29bfe 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: #2d3436;
    overflow-x: hidden;
    min-height: 100vh;
}

body.home-page {
    background: linear-gradient(135deg, #fff5f7 0%, #ffe8ec 25%, #fff0e8 50%, #f8f0ff 75%, #e8f4ff 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Floating decorative elements */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.stars::before,
.stars::after {
    content: '✨';
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.4;
}

.stars::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.stars::after {
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.twinkling {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.twinkling::before,
.twinkling::after {
    content: '🌙';
    position: absolute;
    font-size: 3rem;
    animation: float 8s ease-in-out infinite;
    opacity: 0.3;
}

.twinkling::before {
    top: 30%;
    right: 20%;
    animation-delay: 1s;
}

.twinkling::after {
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
    content: '⭐';
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 50%, #c44569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    color: #636e72;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ff6b6b;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #feca57);
    border-radius: 2px;
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 50%, #c44569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #636e72;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.5);
}

/* Zodiac Wheel Animation */
.hero-decoration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.zodiac-wheel {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 3px solid rgba(255, 107, 107, 0.3);
    animation: rotate 60s linear infinite;
    box-shadow: 0 15px 50px rgba(255, 107, 107, 0.2);
}

.zodiac-symbol {
    position: absolute;
    font-size: 2.5rem;
    animation: counterRotate 60s linear infinite;
}

.zodiac-symbol:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    color: #ff6b6b;
}

.zodiac-symbol:nth-child(2) {
    top: 7%;
    right: 15%;
    color: #ff7979;
}

.zodiac-symbol:nth-child(3) {
    top: 25%;
    right: 0;
    color: #ff8787;
}

.zodiac-symbol:nth-child(4) {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    color: #feca57;
}

.zodiac-symbol:nth-child(5) {
    bottom: 25%;
    right: 0;
    color: #48dbfb;
}

.zodiac-symbol:nth-child(6) {
    bottom: 7%;
    right: 15%;
    color: #0abde3;
}

.zodiac-symbol:nth-child(7) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    color: #1dd1a1;
}

.zodiac-symbol:nth-child(8) {
    bottom: 7%;
    left: 15%;
    color: #10ac84;
}

.zodiac-symbol:nth-child(9) {
    bottom: 25%;
    left: 0;
    color: #5f27cd;
}

.zodiac-symbol:nth-child(10) {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: #a29bfe;
}

.zodiac-symbol:nth-child(11) {
    top: 25%;
    left: 0;
    color: #fd79a8;
}

.zodiac-symbol:nth-child(12) {
    top: 7%;
    left: 15%;
    color: #fdcb6e;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes counterRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Zodiac Grid Section */
.zodiac-grid {
    padding: 5rem 2rem;
    position: relative;
    z-index: 1;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.sign-card {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    border-radius: 25px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: #2d3436;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.1);
}

.sign-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #ff6b6b;
    box-shadow: 0 20px 50px rgba(255, 107, 107, 0.25);
    background: rgba(255, 255, 255, 1);
}

.sign-card:nth-child(1) .sign-icon {
    color: #ff6b6b;
}

.sign-card:nth-child(2) .sign-icon {
    color: #1dd1a1;
}

.sign-card:nth-child(3) .sign-icon {
    color: #feca57;
}

.sign-card:nth-child(4) .sign-icon {
    color: #48dbfb;
}

.sign-card:nth-child(5) .sign-icon {
    color: #ff9ff3;
}

.sign-card:nth-child(6) .sign-icon {
    color: #54a0ff;
}

.sign-card:nth-child(7) .sign-icon {
    color: #fd79a8;
}

.sign-card:nth-child(8) .sign-icon {
    color: #5f27cd;
}

.sign-card:nth-child(9) .sign-icon {
    color: #ff6348;
}

.sign-card:nth-child(10) .sign-icon {
    color: #0abde3;
}

.sign-card:nth-child(11) .sign-icon {
    color: #a29bfe;
}

.sign-card:nth-child(12) .sign-icon {
    color: #00d2d3;
}

.sign-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

.sign-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2d3436;
}

.sign-card p {
    color: #636e72;
    font-size: 0.9rem;
}

/* Horoscope Page Styles */
.horoscope-section {
    padding: 3rem 2rem;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.sign-selector {
    margin-bottom: 3rem;
    text-align: center;
}

.sign-selector h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sign-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.sign-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 107, 107, 0.2);
    color: #636e72;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-weight: 600;
}

.sign-btn:hover {
    border-color: #ff6b6b;
    background: rgba(255, 255, 255, 1);
    color: #2d3436;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.2);
}

.sign-btn.active {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.horoscope-content {
    max-width: 800px;
    margin: 0 auto;
}

.horoscope-card {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 107, 107, 0.2);
    border-radius: 30px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(255, 107, 107, 0.2);
}

.horoscope-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 107, 107, 0.2);
}

.current-sign-icon {
    font-size: 5rem;
    filter: drop-shadow(0 5px 15px rgba(255, 107, 107, 0.3));
}

#sign-name {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #2d3436;
}

.date-range {
    color: #636e72;
    font-size: 1.1rem;
}

.tab-navigation {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 107, 107, 0.2);
}

.tab-btn {
    background: transparent;
    border: none;
    color: #636e72;
    padding: 1rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    font-weight: 600;
}

.tab-btn:hover {
    color: #ff6b6b;
}

.tab-btn.active {
    color: #ff6b6b;
    border-bottom-color: #ff6b6b;
}

.horoscope-text {
    color: #2d3436;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.horoscope-text p {
    margin-bottom: 1rem;
}

.horoscope-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(254, 202, 87, 0.1) 100%);
    border-radius: 20px;
}

.stat-item {
    text-align: center;
}

.stat-label {
    color: #636e72;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.stat-value {
    font-size: 1.5rem;
    color: #feca57;
    filter: drop-shadow(0 2px 5px rgba(254, 202, 87, 0.3));
}

.lucky-elements {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(72, 219, 251, 0.1) 0%, rgba(162, 155, 254, 0.1) 100%);
    border-radius: 20px;
}

.lucky-item {
    text-align: center;
}

.lucky-label {
    display: block;
    color: #636e72;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.lucky-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff6b6b;
}

/* Footer */
.footer {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    text-align: center;
    color: #636e72;
    box-shadow: 0 -4px 20px rgba(255, 107, 107, 0.1);
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

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

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

    .zodiac-wheel {
        width: 300px;
        height: 300px;
    }

    .zodiac-symbol {
        font-size: 1.8rem;
    }

    .signs-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .horoscope-card {
        padding: 2rem;
    }

    .horoscope-header {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .nav-links {
        gap: 1rem;
    }

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

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

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

    .sign-buttons {
        gap: 0.5rem;
    }

    .sign-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .horoscope-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .tab-navigation {
        flex-wrap: wrap;
    }

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

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

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

    .signs-container-colorful {
        grid-template-columns: 1fr;
    }
}

/* Main Hero Section */
.main-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.hero-content-center {
    text-align: center;
    max-width: 800px;
    position: relative;
    animation: fadeInUp 1.2s ease;
}

.sparkle-decoration {
    font-size: 4rem;
    position: absolute;
    top: -50px;
    left: -30px;
    animation: float 4s ease-in-out infinite;
    opacity: 0.6;
}

.sparkle-right {
    left: auto;
    right: -30px;
    top: -30px;
    animation-delay: 2s;
}

.mega-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 25%, #feca57 50%, #ee5a6f 75%, #c44569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: -1px;
}

.mega-subtitle {
    font-size: 1.5rem;
    color: #636e72;
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 400;
}

.mega-cta {
    display: inline-block;
    padding: 1.3rem 3rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
    cursor: pointer;
    animation: pulse 2s ease-in-out infinite;
}

.mega-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 107, 107, 0.6);
    animation: none;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Colorful Sign Cards */
.section-title-colorful {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 50%, #48dbfb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.signs-container-colorful {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    padding-bottom: 3rem;
}

.sign-card-colorful {
    background: white;
    border-radius: 30px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-decoration: none;
    color: #2d3436;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.sign-card-colorful::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    border-radius: 30px 30px 0 0;
    transition: height 0.4s ease;
}

.sign-card-colorful:hover {
    transform: translateY(-15px) rotate(-2deg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.sign-card-colorful:hover::before {
    height: 100%;
    opacity: 0.15;
}

.sign-icon-large {
    font-size: 5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.15));
    transition: transform 0.4s ease;
}

.sign-card-colorful:hover .sign-icon-large {
    transform: scale(1.2) rotate(10deg);
}

.sign-card-colorful h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.date-text {
    color: #636e72;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.card-trait {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-top: 0.5rem;
}

.intro-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(57, 20, 37, 0.95), rgba(177, 116, 116, 0.95));
    position: relative;
    overflow: hidden;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-icon {
    font-size: 1.2rem;
    animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.badge-text {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.intro-title {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.intro-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.main-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.3rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    text-decoration: none;
}

.main-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.5);
}

.cta-icon {
    font-size: 1.5rem;
}

.cta-arrow {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.main-cta-btn:hover .cta-arrow {
    transform: translateX(5px);
}

.intro-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.actions-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 1rem 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.activity-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: currentColor;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.activity-card:hover::before {
    opacity: 1;
}

.activity-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.activity-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.activity-content {
    flex: 1;
    position: relative;
}

.activity-content h4 {
    color: #2d3436;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.4rem 0;
}

.activity-content p {
    color: #636e72;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.activity-arrow {
    font-size: 1.5rem;
    color: #b2bec3;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.activity-card:hover .activity-arrow {
    color: #636e72;
    transform: translateX(5px);
}

.love-card {
    color: #ff6b6b;
}

.wheel-card {
    color: #4ecdc4;
}

.coming-soon-card {
    color: #a8e6cf;
    opacity: 0.7;
    cursor: default;
}

.coming-soon-card:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.coming-soon-badge {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.3rem 0.8rem;
    background: linear-gradient(135deg, #feca57 0%, #f39c12 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 968px) {
    .intro-section {
        padding: 3rem 1rem;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .intro-description {
        font-size: 1rem;
    }

    .main-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .activity-card {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .intro-section {
        padding: 2rem 0.75rem;
    }

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

    .intro-badge {
        padding: 0.5rem 1rem;
    }

    .badge-text {
        font-size: 0.8rem;
    }

    .main-cta-btn {
        padding: 1.1rem 1.8rem;
        font-size: 1rem;
    }

    .cta-icon {
        font-size: 1.3rem;
    }

    .actions-title {
        font-size: 1.3rem;
    }

    .activity-card {
        padding: 1rem;
        gap: 1rem;
    }

    .activity-icon {
        font-size: 2rem;
    }

    .activity-content h4 {
        font-size: 1.2rem;
    }

    .activity-content p {
        font-size: 1rem;
    }
}

/* Individual sign colors */
.aries-card::before {
    background: linear-gradient(135deg, #ff6b6b, #ff8787);
}

.aries-card .sign-icon-large {
    color: #ff6b6b;
}

.aries-card .card-trait {
    background: rgba(255, 107, 107, 0.15);
    color: #ff6b6b;
}

.taurus-card::before {
    background: linear-gradient(135deg, #1dd1a1, #10ac84);
}

.taurus-card .sign-icon-large {
    color: #1dd1a1;
}

.taurus-card .card-trait {
    background: rgba(29, 209, 161, 0.15);
    color: #10ac84;
}

.gemini-card::before {
    background: linear-gradient(135deg, #feca57, #fdcb6e);
}

.gemini-card .sign-icon-large {
    color: #feca57;
}

.gemini-card .card-trait {
    background: rgba(254, 202, 87, 0.15);
    color: #e17055;
}

.cancer-card::before {
    background: linear-gradient(135deg, #48dbfb, #0abde3);
}

.cancer-card .sign-icon-large {
    color: #48dbfb;
}

.cancer-card .card-trait {
    background: rgba(72, 219, 251, 0.15);
    color: #0abde3;
}

.leo-card::before {
    background: linear-gradient(135deg, #ff9ff3, #f368e0);
}

.leo-card .sign-icon-large {
    color: #ff9ff3;
}

.leo-card .card-trait {
    background: rgba(255, 159, 243, 0.15);
    color: #c44569;
}

.virgo-card::before {
    background: linear-gradient(135deg, #54a0ff, #2e86de);
}

.virgo-card .sign-icon-large {
    color: #54a0ff;
}

.virgo-card .card-trait {
    background: rgba(84, 160, 255, 0.15);
    color: #2e86de;
}

.libra-card::before {
    background: linear-gradient(135deg, #fd79a8, #e84393);
}

.libra-card .sign-icon-large {
    color: #fd79a8;
}

.libra-card .card-trait {
    background: rgba(253, 121, 168, 0.15);
    color: #e84393;
}

.scorpio-card::before {
    background: linear-gradient(135deg, #5f27cd, #341f97);
}

.scorpio-card .sign-icon-large {
    color: #5f27cd;
}

.scorpio-card .card-trait {
    background: rgba(95, 39, 205, 0.15);
    color: #341f97;
}

.sagittarius-card::before {
    background: linear-gradient(135deg, #ff6348, #ff4757);
}

.sagittarius-card .sign-icon-large {
    color: #ff6348;
}

.sagittarius-card .card-trait {
    background: rgba(255, 99, 72, 0.15);
    color: #c23616;
}

.capricorn-card::before {
    background: linear-gradient(135deg, #0abde3, #00a8cc);
}

.capricorn-card .sign-icon-large {
    color: #0abde3;
}

.capricorn-card .card-trait {
    background: rgba(10, 189, 227, 0.15);
    color: #00a8cc;
}

.aquarius-card::before {
    background: linear-gradient(135deg, #a29bfe, #6c5ce7);
}

.aquarius-card .sign-icon-large {
    color: #a29bfe;
}

.aquarius-card .card-trait {
    background: rgba(162, 155, 254, 0.15);
    color: #6c5ce7;
}

.pisces-card::before {
    background: linear-gradient(135deg, #00d2d3, #01a3a4);
}

.pisces-card .sign-icon-large {
    color: #00d2d3;
}

.pisces-card .card-trait {
    background: rgba(0, 210, 211, 0.15);
    color: #01a3a4;
}

.footer-simple {
    background: transparent;
    padding: 3rem 2rem;
    text-align: center;
    color: #636e72;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}