  /* Main Container */
  .zodiac-match-container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1rem;
  }

  /* Zodiac Selector Styles */
  .zodiac-selector {
    position: relative;
    margin-bottom: 2rem;
  }
  
  .selector-button {
    background: linear-gradient(135deg, #6e48aa, #9d50bb);
    color: white;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
  }
  
  .selector-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  }
  
  .selector-button i {
    transition: transform 0.3s ease;
  }
  
  .selector-button.active i {
    transform: rotate(180deg);
  }
  
  .zodiac-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 100;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  
  .zodiac-dropdown.show {
    max-height: none;
    padding: 1rem 0;
    border: 1px solid #eee;
  }
  
  .zodiac-option {
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  .zodiac-option:hover {
    background: #f8f9fa;
  }
  
  .zodiac-option i {
    margin-right: 1rem;
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
  }
  
  /* Zodiac colors */
  .aries { color: #e74c3c; }
  .taurus { color: #27ae60; }
  .gemini { color: #f39c12; }
  .cancer { color: #3498db; }
  .leo { color: #e67e22; }
  .virgo { color: #2ecc71; }
  .libra { color: #9b59b6; }
  .scorpio { color: #e74c3c; }
  .sagittarius { color: #f1c40f; }
  .capricorn { color: #1abc9c; }
  .aquarius { color: #3498db; }
  .pisces { color: #8e44ad; }

  /* Pair Section */
  .zodiac-pair {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    padding: 1.5rem;
    margin-top: 2rem;
    border-top: 4px solid var(--pair-color);
    display: none;
  }
  
  .zodiac-pair.active {
    display: block;
    animation: fadeIn 0.3s ease;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* Pair Header */
  .pair-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
  }
  
  .pair-title {
    font-size: 1.5rem;
    margin: 0;
    color: var(--pair-color);
  }
  
  .pair-subtitle {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.25rem;
  }
  
  .pair-icon {
    width: 50px;
    height: 50px;
    background: var(--pair-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.25rem;
  }
  .element-matches {
    background: #f9a8d4 ;
    background: linear-gradient(to right, #0a0a2e, #1d3d6e, #0a1a3a);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}
  .classic-interpretations {
    background: #e2e8f0 ;
    background: linear-gradient(to right, #2e0a0a, #6e1d2d, #3a0a1a);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}
.element-matches h3 {
    color: #e2e2ff;
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: center;
}

.elements-container {
    display: grid;
    grid-template-columns: repeat(10px, minmax(150px, 1fr));
    gap: 10px;
}

.element {
    text-align: center;
    padding: 20px 15px;
    border-radius: 12px;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.element::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.element:hover {
    transform: translateY(-5px);
}

.fire {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.fire::before {
    background: linear-gradient(to right, #ff6b6b, #ff8e53);
}

.earth {
    background: rgba(123, 237, 159, 0.1);
    border: 1px solid rgba(123, 237, 159, 0.3);
}

.earth::before {
    background: linear-gradient(to right, #7bed9f, #2ecc71);
}

.air {
    background: rgba(112, 161, 255, 0.1);
    border: 1px solid rgba(112, 161, 255, 0.3);
}

.air::before {
    background: linear-gradient(to right, #70a1ff, #3498db);
}

.water {
    background: rgba(165, 94, 234, 0.1);
    border: 1px solid rgba(165, 94, 234, 0.3);
}

.water::before {
    background: linear-gradient(to right, #a55eea, #9b59b6);
}

.element-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.element-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2c3e50;
}

.element-score {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 500;
}
.sun-sign {
  background: rgba(15, 14, 23, 0.7);
  background: linear-gradient(to right, #0a2e2a, #1d6e5c, #0a3a2d);
  
  margin-bottom: 30px;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zodiac-wheel {
    flex: 0 0 120px;
    margin-right: 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wheel {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(
        #ff6b6b, #ffb347, #f5d76e, #7bed9f, 
        #70a1ff, #a55eea, #ff6b6b
    );
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    overflow: hidden; /* Ensures the inner circle stays contained */
}

/* Inner circle matching your background */
.wheel::after {
    content: '';
    position: absolute;
    width: 80%; /* Adjust size of the center cutout */
    height: 80%;
    background: radial-gradient(
        circle at center,
        #0a2e2a 0%,
        #1d6e5c 80%,
        #0a3a2d 100%
    );
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: inset 0 0 10px rgba(0,0,0,0.3);
}

.wheel::before {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 50%;
    top: 15px;
    left: 15px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
}

.compatibility-content {
    flex: 1;
}

.sun-sign h3 {
    color: #2c3e50;
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
}

.compatibility-meter {
    height: 30px;
    background: #f5f5f5;
    border-radius: 15px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.meter-fill {
    height: 100%;
    background: linear-gradient(to right, #ff9a9e, #fad0c4);
    border-radius: 15px;
    transition: width 1s ease;
}

.meter-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #2c3e50;
    font-weight: 600;
    font-size: 14px;
    text-shadow: 0 0 2px white;
}

.compatibility-content p {
    color: #555;
    line-height: 1.6;
    margin: 0;
    font-size: 16px;
}
.advice-card, 
.moon-phase, 
.planetary-influences, 
.sun-sign, 
.element-matches, 
.classic-interpretations,
.compatibility-content
    p {
    color: #e6e6fa;
}
.planetary-influences {
    background: #1e1e2e;
    background: linear-gradient(to right, #1e1e2e, #1e6f6f, #24243e);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid #39394a;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.planetary-influences h3 {
    color: #d4af37;
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    font-weight: 500;
}
.sun-sign h3 {
    color: #d4af37;
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    font-weight: 500;
}
.planet-icon {
    font-size: 28px;
    margin-right: 15px;
}

.planet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.planet-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.planet-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.planet-name {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.planet-name::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 10px;
}

.planet-item:nth-child(1) .planet-name::before {
    background: #f5d76e; /* Venus */
}

.planet-item:nth-child(2) .planet-name::before {
    background: #e74c3c; /* Mars */
}

.planet-item:nth-child(3) .planet-name::before {
    background: #f39c12; /* Jupiter */
}

.planet-effect {
    color: #b8b8c0;
    font-size: 15px;
    line-height: 1.5;
}
.moon-phase {
    background: #0f0c29;
    background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
    border-radius: 15px;
    padding: 25px;
    color: #e6e6fa;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.moon-phase::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
    opacity: 0.5;
}

.phase-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.moon-icon {
    width: 50px;
    height: 50px;
    background: #1a1a2e;
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5), 
                0 0 20px rgba(255,215,0,0.3);
}

.moon-shape {
    position: absolute;
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border-radius: 50%;
    top: 5px;
    left: 5px;
}

.waxing-crescent {
    clip-path: polygon(50% 0%, 50% 100%, 100% 100%, 100% 0%);
    box-shadow: inset -10px 0 0 #1a1a2e;
}

.phase-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #fff;
}

.phase-content {
    line-height: 1.6;
    font-size: 16px;
    position: relative;
    z-index: 2;
}
.advice-card {
    background: #6e48aa ;
    background: linear-gradient(to right, #1a0a2e, #4b1d6e, #2d0a3a);
    border-radius: 15px;
    padding: 25px;
    color: white;
    box-shadow: 0 10px 30px rgba(110, 72, 170, 0.3);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.advice-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    transform: rotate(30deg);
}

.advice-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.advice-header i {
    font-size: 28px;
    margin-right: 15px;
    color: #ffd700;
}

.advice-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
}

.advice-content {
    position: relative;
    z-index: 2;
    line-height: 1.6;
    font-size: 16px;
}