/* 24h Stream Event Styling */

.event-content {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* Schedule Section */
.schedule-section {
    margin-bottom: 3rem;
}

.schedule-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ff69b4;
    text-align: center;
}

.schedule-disclaimer {
    text-align: center;
    margin-bottom: 1.5rem;
}

.schedule-disclaimer p {
    color: #ffd700;
    font-size: 1.1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.schedule-box {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.25) 0%, rgba(75, 0, 130, 0.25) 100%);
    backdrop-filter: blur(10px);
    border: 3px solid #8a2be2;
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
    max-width: 900px;
    margin: 0 auto;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.schedule-table thead {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.3) 0%, rgba(138, 43, 226, 0.3) 100%);
}

.schedule-table th {
    padding: 1.2rem;
    font-size: 1.3rem;
    font-weight: bold;
    color: #ff69b4;
    text-align: left;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    border-bottom: 3px solid rgba(138, 43, 226, 0.5);
}

.schedule-table tbody tr {
    border-bottom: 2px solid rgba(138, 43, 226, 0.3);
    transition: all 0.3s ease;
}

.schedule-table tbody tr:last-child {
    border-bottom: none;
}

.schedule-table tbody tr:hover {
    background: rgba(138, 43, 226, 0.3);
}

.schedule-table td.schedule-time {
    width: 120px;
    padding: 1.2rem;
    font-size: 1.4rem;
    font-weight: bold;
    color: #ff69b4;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.15) 0%, rgba(138, 43, 226, 0.15) 100%);
    border-right: 2px solid rgba(138, 43, 226, 0.5);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.schedule-table td.schedule-activity {
    padding: 1.2rem 1.5rem;
    font-size: 1.1rem;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.schedule-activity .alternative {
    display: block;
    font-size: 0.95rem;
    color: #ffd700;
    font-style: italic;
    margin-top: 0.5rem;
}

.subgoals-section {
    margin-bottom: 3rem;
}

.subgoals-section h2,
.special-rules h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ff69b4;
    text-align: center;
}

.subgoals-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.rules-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.subgoal-item {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.25) 0%, rgba(138, 43, 226, 0.25) 100%);
    backdrop-filter: blur(10px);
    border: 3px solid #ff69b4;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.subgoal-item:hover {
    transform: translateY(-5px);
    border-color: #ff1493;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.5);
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.35) 0%, rgba(138, 43, 226, 0.35) 100%);
}

.subgoal-count {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff69b4;
}

.subgoal-reward {
    font-size: 1.1rem;
    color: #ffffff;
}

.special-rules {
    margin-top: 2rem;
}

.rule-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(255, 165, 0, 0.25) 100%);
    backdrop-filter: blur(10px);
    border: 3px solid #ffd700;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.rule-box p {
    font-size: 1.2rem;
    margin: 0;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.rule-box strong {
    color: #ff6347;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(255, 99, 71, 0.8), 0 1px 3px rgba(0, 0, 0, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .schedule-table th,
    .schedule-table td.schedule-time {
        font-size: 1.1rem;
        padding: 1rem;
    }
    
    .schedule-table td.schedule-activity {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .schedule-table td.schedule-time {
        width: 80px;
    }
    
    .subgoals-list {
        grid-template-columns: 1fr;
    }
    
    .rules-grid-2x2 {
        grid-template-columns: 1fr;
    }
    
    .subgoals-section h2,
    .special-rules h2 {
        font-size: 1.5rem;
    }
    
    .subgoal-count {
        font-size: 1.3rem;
    }
    
    .subgoal-reward {
        font-size: 1rem;
    }
    
    .rule-box p {
        font-size: 1rem;
    }
}
