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

/* Header */
.header {
    position: relative;
    z-index: 10;
    padding: 24px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #0b1426;
    font-weight: bold;
}

.logo-text {
    color: #ffd700;
    font-size: 20px;
    font-weight: bold;
}

.nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    color: #ffd700;
}

/* Main Content */
.main {
    position: relative;
    z-index: 10;
    padding: 32px 0;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 48px;
}

.page-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 18px;
    color: #d1d5db;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Predictions List */
.predictions-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

/* Prediction Card */
.prediction-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.prediction-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.card-content {
    padding: 24px;
}

.card-header {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.zodiac-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.2);
    padding: 8px;
    flex-shrink: 0;
    object-fit: contain;
}

.card-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}

.card-meta {
    flex: 1;
}

.card-title {
    color: #ffd700;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.3;
}

.card-date {
    color: #9ca3af;
    font-size: 14px;
}

/* Category Tags */
.category-tag {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.category-amor {
    background: rgba(244, 63, 94, 0.2);
    color: #fda4af;
}

.category-trabajo {
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
}

.category-salud {
    background: rgba(34, 197, 94, 0.2);
    color: #86efac;
}

.category-dinero {
    background: rgba(234, 179, 8, 0.2);
    color: #fde047;
}

.category-familia {
    background: rgba(168, 85, 247, 0.2);
    color: #c4b5fd;
}

.category-espiritualidad {
    background: rgba(99, 102, 241, 0.2);
    color: #a5b4fc;
}

/* Card Body */
.card-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-title {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 16px;
}

.question-section {
}

.question-text {
    color: #d1d5db;
    font-style: italic;
    border-left: 2px solid rgba(255, 215, 0, 0.5);
    padding-left: 16px;
    margin: 0;
    line-height: 1.6;
}

.response-section {
}

.response-text {
    color: #d1d5db;
    line-height: 1.7;
    margin: 0;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.card-stats {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #9ca3af;
}

.btn-read-more {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #0b1426;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    background: linear-gradient(45deg, #ffed4e, #ffd700);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pagination-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.pagination-btn:hover:not(:disabled) {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
}

.pagination-btn.active {
    background: #ffd700;
    color: #0b1426;
    border-color: #ffd700;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Footer */
.footer {
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    margin-top: 64px;
    padding: 32px 0;
}

.footer-content {
    text-align: center;
}

.footer-text {
    color: #9ca3af;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffd700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .nav {
        justify-content: center;
    }

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

    .card-info {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        margin: auto;
    }

    .card-footer {
        flex-direction: column;
        text-align: center;
    }

    .zodiac-icon {
        align-self: center;
    }

    .pagination {
        gap: 4px;
    }

    .pagination-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
}

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

    .card-content {
        padding: 20px;
    }

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

    .page-subtitle {
        font-size: 16px;
    }

    .footer-links {
        gap: 16px;
    }
}

/* Hidden class for JavaScript functionality */
.hidden {
    display: none;
}

/* Full text styles */
.full-text {
    white-space: pre-line;
}