.tips-header {
    text-align: center;
    margin-bottom: 50px;
}

.tips-header h1 {
    font-size: 2.5rem;
    color: #5a2d7a;
    margin-bottom: 15px;
    font-weight: 300;
}

.mystic-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px 0 20px 0;
}

.mystic-divider .line {
    width: 200px;
    height: 1px;
    background: linear-gradient(to right, #8d5ba4, #5a2d7a);
}

.mystic-divider .crystal {
    width: 10px;
    height: 10px;
    background: #8d5ba4;
    transform: rotate(45deg);
    margin: 0 15px;
}

.subtitle {
    font-size: 1.1rem;
    color: #6a6a6a;
    font-style: italic;
}

.tips-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.tip-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.tip-card.dark {
    background: linear-gradient(135deg, #5a2d7a, #3a1a4a);
    color: white;
}

.tip-card.dark h2,
.tip-card.dark h3,
.tip-card.dark h4 {
    color: white;
}

.tip-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.tip-card h2 {
    color: #5a2d7a;
    margin-bottom: 25px;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 10px;
}

.tip-card h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #8d5ba4;
}

.tip-card.dark h2::after {
    background: #c9a0dc;
}

.tip-content h3 {
    color: #5a2d7a;
    margin: 25px 0 15px 0;
    font-size: 1.3rem;
}

.tip-card.dark h3 {
    color: #e2c1f5;
}

.tip-content ul, 
.tip-content ol {
    padding-left: 20px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.tip-content li {
    margin-bottom: 10px;
    position: relative;
}

.tip-content li::before {
    content: "•";
    color: #8d5ba4;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
}

.tip-card.dark li::before {
    color: #c9a0dc;
}

.example-box {
    background: rgba(141, 91, 164, 0.1);
    border-left: 3px solid #8d5ba4;
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.tip-card.dark .example-box {
    background: rgba(255, 255, 255, 0.1);
    border-left: 3px solid #c9a0dc;
}

.example-bad {
    color: #e74c3c;
    margin-bottom: 10px;
}

.example-good {
    color: #2ecc71;
}

.card-meaning {
    margin-top: 30px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.tarot-card {
    text-align: center;
}

.tarot-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.tarot-card p {
    font-size: 0.9rem;
    color: #555;
}

.tip-card.dark .tarot-card p {
    color: #ddd;
}

.warning-box {
    background: rgba(231, 76, 60, 0.1);
    border-left: 3px solid #e74c3c;
    padding: 15px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
}

.moon-table {
    margin: 20px 0;
}

.moon-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(255,255,255,0.2);
}

.moon-phase {
    font-size: 1.5rem;
    margin-right: 20px;
    width: 40px;
    text-align: center;
}

.moon-desc {
    flex: 1;
}

.tip-note {
    font-style: italic;
    color: #aaa;
    margin-top: 25px;
}

.knowledge-base {
    margin-top: 50px;
}

.knowledge-base h2 {
    text-align: center;
    color: #5a2d7a;
    margin-bottom: 30px;
    font-size: 2rem;
}

.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.knowledge-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.knowledge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.knowledge-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #8d5ba4;
}

.knowledge-card h3 {
    color: #5a2d7a;
    margin-bottom: 15px;
}

.knowledge-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.knowledge-link {
    color: #8d5ba4;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    border-bottom: 1px dashed #8d5ba4;
    transition: all 0.3s;
}

.knowledge-link:hover {
    color: #5a2d7a;
    border-bottom-color: transparent;
}

@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .knowledge-grid {
        grid-template-columns: 1fr;
    }
}