.quote-section {
    max-width: 800px;
    margin: 0 auto;
}

.turkish-quote {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-style: italic;
}

.quote-translation {
    font-size: 1.2rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

/* Schedule Section */
.schedule-section {
    margin-bottom: 80px;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.time-block {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(243, 244, 246, 0.98) 100%);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

.time-block:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.time-block.morning {
    border-top: 4px solid #fbbf24;
}

.time-block.afternoon {
    border-top: 4px solid #f97316;
}

.time-period {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 25px;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(226, 232, 240, 0.95) 100%);
    font-size: 1.2rem;
    font-weight: 600;
    color: #374151;
    transition: all 0.3s ease;
}

.time-period i {
    font-size: 1.1rem;
    color: #fbbf24;
}

.activities {
    padding: 10px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    margin-bottom: 8px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(248, 250, 252, 0.5) 100%);
}

.activity-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #4f46e5;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.activity-item:hover {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.9) 0%, rgba(241, 245, 249, 0.9) 100%);
    transform: translateX(5px);
}

.activity-item:hover::before {
    transform: scaleY(1);
}

.activity-item.completed {
    background: linear-gradient(135deg, rgba(220, 252, 231, 0.8) 0%, rgba(187, 247, 208, 0.8) 100%);
    border: 1px solid #bbf7d0;
}

.activity-item.completed .activity-icon {
    background: #22c55e;
    color: white;
}

.activity-item.current-activity {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
    }
}

.time-slot {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4f46e5;
    background: rgba(237, 233, 254, 0.8);
    padding: 6px 12px;
    border-radius: 20px;
    min-width: 100px;
    text-align: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.activity-content {
    flex: 1;
    min-width: 0;
}

.activity-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.activity-content p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.activity-icon {
    width: 40px;
    height: 40px;
    background: #4f46e5;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.activity-item:hover .activity-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

/* YouTube Section */
.youtube-section {
    margin-top: 40px;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.channel-category {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(243, 244, 246, 0.98) 100%);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.08);
}

.channel-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff0000, #cc0000);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.channel-category:hover {
    border-color: #ff0000;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.1);
    transform: translateY(-3px);
}

.channel-category:hover::before {
    transform: scaleX(1);
}

.category-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.category-title i {
    color: #ff0000;
    font-size: 1.1rem;
}

.channel-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.channel-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(241, 245, 249, 0.8) 100%);
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.channel-item:hover {
    background: #ff0000;
    color: white;
    border-color: #ff0000;
    transform: translateX(5px);
}

.channel-item i {
    color: #ff0000;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.channel-item:hover i {
    color: white;
}

.channel-item span {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.3;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
    .schedule-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .turkish-quote {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .quote-translation {
        font-size: 1rem;
    }

    .schedule-grid {
        gap: 15px;
    }

    .time-block {
        border-radius: 15px;
    }

    .time-period {
        padding: 15px 20px;
        font-size: 1.1rem;
    }

    .activity-item {
        padding: 15px;
        gap: 12px;
    }

    .time-slot {
        min-width: 80px;
        font-size: 0.8rem;
        padding: 4px 8px;
    }

    .activity-content h4 {
        font-size: 0.95rem;
    }

    .activity-content p {
        font-size: 0.8rem;
    }

    .activity-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .channels-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .channel-category {
        padding: 20px;
    }

    .category-title {
        font-size: 1.1rem;
    }

    .channel-item {
        padding: 8px 10px;
    }

    .channel-item span {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .turkish-quote {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .quote-translation {
        font-size: 0.9rem;
    }

    .time-period {
        padding: 12px 15px;
        font-size: 1rem;
    }

    .activity-item {
        padding: 12px;
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-areas:
            "icon time"
            "icon content";
        gap: 8px 12px;
        align-items: start;
    }

    .time-slot {
        grid-area: time;
        margin: 0;
        align-self: center;
        width: fit-content;
        font-size: 0.75rem;
        order: unset;
        /* Remove flex order */
    }

    .activity-icon {
        grid-area: icon;
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
        margin-top: 4px;
        order: unset;
        /* Remove flex order */
    }

    .activity-content {
        grid-area: content;
        order: unset;
        /* Remove flex order */
    }

    .activity-content h4 {
        font-size: 0.95rem;
        margin-bottom: 2px;
        line-height: 1.3;
    }

    .activity-content p {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .channel-category {
        padding: 15px;
    }

    .category-title {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .channel-item span {
        font-size: 0.8rem;
    }
}

/* Landscape orientation fixes for tablets */
@media (max-width: 1024px) and (orientation: landscape) {
    .schedule-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .turkish-quote {
        font-size: 1.8rem;
    }
}

/* Print styles */
@media print {
    .activity-item:hover {
        transform: none;
        background: transparent;
    }

    .time-block:hover {
        transform: none;
    }
}

/* Use Blue from Index instead of Gray */
.time-block,
.channel-category {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border: 2px solid rgba(74, 144, 226, 0.3) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
}

.time-block:hover,
.channel-category:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15) !important;
    border-color: rgba(74, 144, 226, 0.5) !important;
}

/* Mobile Fix for Schedule Grid */
@media (max-width: 768px) {
    .schedule-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
}