.horoscope-page {
    padding: 24px 0;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .horoscope-page {
        padding: 16px 0;
    }
}

.horoscope-header {
    margin-bottom: 32px;
}

.horoscope-header__title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin: 0 0 24px 0;
    line-height: 1.2;
}

@media (max-width: 767px) {
    .horoscope-header__title {
        font-size: 24px;
        margin-bottom: 20px;
    }
}

.horoscope-period-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 0;
}

.horoscope-period-tabs__tab {
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #666;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all 0.2s;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
}

.horoscope-period-tabs__tab:hover {
    color: #ff7a00;
    text-decoration: none;
}

.horoscope-period-tabs__tab--active {
    color: #ff7a00;
    border-bottom-color: #ff7a00;
}

@media (max-width: 767px) {
    .horoscope-period-tabs__tab {
        padding: 10px 16px;
        font-size: 14px;
    }
}

.horoscope-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

@media (max-width: 767px) {
    .horoscope-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.horoscope-sign-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: relative;
}

.horoscope-sign-card:hover {
    border-color: #ff7a00;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-decoration: none;
    color: inherit;
    transform: translateY(-2px);
}

.horoscope-sign-card__icon {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 16px;
    text-align: center;
}

.horoscope-sign-card__info {
    margin-bottom: 16px;
}

.horoscope-sign-card__name {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin: 0 0 8px 0;
    line-height: 1.2;
    text-align: center;
}

.horoscope-sign-card__meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #666;
}

.horoscope-sign-card__dates {
    font-weight: 500;
}

.horoscope-sign-card__element {
    padding: 4px 12px;
    background: #f5f5f5;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    color: #666;
}

.horoscope-sign-card__preview {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.horoscope-sign-card__arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #999;
    transition: color 0.2s;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.horoscope-sign-card:hover .horoscope-sign-card__arrow {
    color: #ff7a00;
}

.horoscope-detail {
    margin-bottom: 32px;
}

.horoscope-sign-header {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: center;
}

.horoscope-sign-header__icon {
    font-size: 80px;
    line-height: 1;
    margin-bottom: 16px;
}

.horoscope-sign-header__name {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin: 0 0 12px 0;
}

.horoscope-sign-header__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    color: #666;
    flex-wrap: wrap;
}

.horoscope-sign-header__separator {
    color: #ccc;
}

@media (max-width: 767px) {
    .horoscope-sign-header {
        padding: 24px;
    }
    
    .horoscope-sign-header__icon {
        font-size: 64px;
    }
    
    .horoscope-sign-header__name {
        font-size: 28px;
    }
    
    .horoscope-sign-header__meta {
        font-size: 13px;
        flex-direction: column;
        gap: 8px;
    }
}

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

.horoscope-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.horoscope-card__header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.horoscope-card__title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.horoscope-card__icon {
    font-size: 20px;
}

.horoscope-text {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin: 0;
}

.horoscope-section-title {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin: 0 0 24px 0;
}

.horoscope-aspects {
    margin-bottom: 40px;
}

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

@media (max-width: 767px) {
    .horoscope-aspects-grid {
        grid-template-columns: 1fr;
    }
}

.horoscope-aspect-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.2s;
}

.horoscope-aspect-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: #e0e0e0;
}

.horoscope-aspect-card__header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.horoscope-aspect-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    background: #f5f5f5;
}

.horoscope-aspect-card__info {
    flex: 1;
}

.horoscope-aspect-card__title {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin: 0 0 6px 0;
}

.horoscope-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.horoscope-rating__stars {
    display: flex;
    gap: 2px;
}

.horoscope-rating__star {
    font-size: 14px;
    color: #ddd;
}

.horoscope-rating__star--active {
    color: #ff7a00;
}

.horoscope-rating__value {
    font-size: 13px;
    font-weight: 600;
    color: #666;
}

.horoscope-aspect-card__progress {
    margin-bottom: 12px;
}

.horoscope-progress-bar {
    width: 100%;
    height: 6px;
    background: #f0f0f0;
    border-radius: 3px;
    overflow: hidden;
}

.horoscope-progress-bar__fill {
    height: 100%;
    background: #ff7a00;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.horoscope-aspect-card__text {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.horoscope-lucky {
    margin-bottom: 40px;
}

.horoscope-lucky-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.horoscope-lucky-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.2s;
}

.horoscope-lucky-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: #ff7a00;
}

.horoscope-lucky-item__icon {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
}

.horoscope-lucky-item__label {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.horoscope-lucky-item__value {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.horoscope-compatibility-section {
    margin-bottom: 40px;
}

.horoscope-compatibility-selector {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.horoscope-select {
    flex: 1;
    min-width: 200px;
    padding: 10px 14px;
    font-size: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: #fff;
    color: #000;
    transition: border-color 0.2s;
    font-family: inherit;
}

.horoscope-select:focus {
    outline: none;
    border-color: #ff7a00;
}

.horoscope-btn {
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid #ff7a00;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: inherit;
}

.horoscope-btn--primary {
    background: #ff7a00;
    color: #fff;
}

.horoscope-btn--primary:hover {
    background: #ff9a3d;
    border-color: #ff9a3d;
    text-decoration: none;
    color: #fff;
}

.horoscope-btn--secondary {
    background: #fff;
    color: #ff7a00;
}

.horoscope-btn--secondary:hover {
    background: #fff5f0;
    text-decoration: none;
    color: #ff7a00;
}

.horoscope-compatibility-result {
    margin-top: 24px;
}

.horoscope-compatibility-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: center;
}

.horoscope-compatibility-card__header {
    margin-bottom: 20px;
}

.horoscope-compatibility-card__signs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.horoscope-compatibility-card__heart {
    font-size: 24px;
}

.horoscope-compatibility-card__score {
    margin-bottom: 20px;
}

.horoscope-compatibility-card__score-value {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1;
    color: #000;
}

.horoscope-compatibility-card__score-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.horoscope-compatibility-card__progress {
    max-width: 400px;
    margin: 0 auto;
}

.horoscope-actions {
    text-align: center;
    margin-top: 32px;
}

.horoscope-info {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px;
    margin-top: 32px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.horoscope-info__title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin: 0 0 12px 0;
}

.horoscope-info__text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

@media (max-width: 767px) {
    .horoscope-info {
        padding: 20px;
    }
}
