/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Georgia', serif; 
    background: #000; 
    color: #fff; 
    overflow-x: hidden; 
}

/* Canvas Background */
#constellation { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    z-index: 1; 
}

/* Main Layout Container */
.content { 
    position: relative; 
    z-index: 10; 
    max-width: 1400px; 
    margin: 0 auto; 
    padding: 60px 20px; 
}

/* Header Styling */
header { text-align: center; margin-bottom: 80px; }
header h1 { 
    font-size: 3em; 
    margin-bottom: 20px; 
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    background-clip: text; 
}
header p { font-size: 1.2em; color: #a0aec0; font-style: italic; }

/* Cards Grid */
.cards-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
    gap: 30px; 
    margin-bottom: 60px; 
}

/* Standard Blue/Purple Cards */
.card { 
    background: rgba(20, 20, 40, 0.6); 
    backdrop-filter: blur(10px); 
    border: 1px solid rgba(100, 150, 255, 0.2); 
    border-radius: 20px; 
    padding: 30px; 
    transition: all 0.4s ease; 
    cursor: pointer; 
    min-height: 300px; 
    display: flex; 
    flex-direction: column; 
}
.card:hover { 
    transform: translateY(-10px) scale(1.02); 
    border-color: rgba(100, 150, 255, 0.5); 
    box-shadow: 0 20px 60px rgba(100, 150, 255, 0.3); 
}

/* Card Internal Elements */
.card-header { display: flex; align-items: center; margin-bottom: 20px; }
.week-badge { 
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
    color: white; 
    padding: 6px 16px; 
    border-radius: 20px; 
    font-size: 0.85em; 
    font-weight: bold; 
    margin-right: 12px; 
}
.card-title { font-size: 1.4em; color: #e0e7ff; flex: 1; line-height: 1.3; }
.card-content { color: #cbd5e0; line-height: 1.8; font-size: 1em; flex-grow: 1; }
.card-content em { color: #a0c4ff; font-style: italic; }

/* Quote Card Variant */
.quote-card { 
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%); 
    border: 2px solid rgba(102, 126, 234, 0.3); 
    text-align: center; 
    font-size: 1.2em; 
    font-style: italic; 
    padding: 40px; 
}
.quote-card:hover { background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%); }

/* Resolution Section (Golden/Alchemy Theme) */
.resolution-section { 
    margin: 60px auto 80px; 
    max-width: 800px; 
    text-align: center; 
}
.resolution-card {
    display: block;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(218, 165, 32, 0.1) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-decoration: none;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}
.resolution-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(218, 165, 32, 0.2) 100%);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.6);
}
.resolution-label {
    display: inline-block;
    font-size: 0.8em;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffd700;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 5px;
}
.resolution-title { font-size: 2em; color: #fff; margin-bottom: 15px; font-family: 'Georgia', serif; }
.resolution-desc { color: #d0d0d0; font-size: 1.1em; font-style: italic; }

/* Footer */
footer { text-align: center; padding: 40px 20px; color: #718096; font-style: italic; }

/* Responsive */
@media (max-width: 768px) { 
    header h1 { font-size: 2em; } 
    .cards-grid { grid-template-columns: 1fr; } 
}