* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html, body {
    height: 100%;
    width: 100%;
    background-color: #000;
    color: #fff;
}

/* BACK BUTTON */
.back-btn {
    position: fixed;
    top: 14px;
    left: 14px;
    z-index: 999;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.back-btn:hover {
    background: rgba(139, 92, 246, 0.15);
    transform: translateX(-4px);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

/* MAIN CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px 60px;
}

/* HERO SECTION */
.hero-section {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 80px;
    position: relative;
    padding: 60px;
    background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1), transparent);
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.hero-content h3 {
    font-size: 24px;
    font-weight: 400;
    color: #8b5cf6;
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
    letter-spacing: 1px;
}

/* DEGREE SECTION */
.degree-section {
    margin-bottom: 80px;
}

.degree-section h2 {
    font-size: 48px;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #8b5cf6, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.degree-card {
    padding: 40px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(34, 211, 238, 0.05));
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.degree-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.25);
}

.degree-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.degree-header h3 {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    flex: 1;
}

.honor-badge {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.degree-details p {
    font-size: 18px;
    color: #b0b0b0;
    margin-bottom: 12px;
    padding: 8px 0;
}

.degree-details strong {
    color: #8b5cf6;
}

/* MODULES SECTION */
.modules-section {
    margin-bottom: 80px;
}

.modules-section h2 {
    font-size: 48px;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.module-item {
    padding: 25px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(236, 72, 153, 0.08));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.module-item:hover {
    transform: translateY(-6px);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.12));
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.25);
}

/* PHILOSOPHY SECTION */
.philosophy-section {
    margin-bottom: 80px;
    padding: 60px;
    background: radial-gradient(circle at 30% 70%, rgba(139, 92, 246, 0.15), transparent);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.philosophy-section h2 {
    font-size: 48px;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #8b5cf6, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.philosophy-quote {
    font-size: 22px;
    font-style: italic;
    line-height: 1.8;
    color: #d1d5db;
    border-left: 4px solid #8b5cf6;
    padding-left: 30px;
    margin-left: 10px;
}

/* MEDIA SECTION */
.media-section {
    margin-bottom: 80px;
}

.media-section h2 {
    font-size: 48px;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.media-item {
    text-align: center;
}

.media-item p {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #8b5cf6;
}

.media-image {
    width: 100%;
    border-radius: 12px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.media-image:hover {
    transform: scale(1.05);
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.3);
}

/* VIDEO SECTION */
.video-section {
    margin-top: 80px;
    padding: 60px;
    background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.08), transparent);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.video-section h2 {
    font-size: 48px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #8b5cf6, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.video-section p {
    font-size: 18px;
    color: #b0b0b0;
    margin-bottom: 30px;
}

.academic-video {
    width: 100%;
    max-height: 600px;
    border-radius: 12px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    background: #000;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .container {
        padding: 80px 30px 40px;
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .degree-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .degree-header h3 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 80px 20px 40px;
    }

    .hero-section {
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content h3 {
        font-size: 18px;
    }

    .degree-section h2,
    .modules-section h2,
    .philosophy-section h2,
    .media-section h2,
    .video-section h2 {
        font-size: 36px;
    }

    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .module-item {
        padding: 18px;
        font-size: 14px;
    }

    .philosophy-quote {
        font-size: 18px;
        padding-left: 20px;
    }

    .media-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-section {
        padding: 40px 20px;
    }

    .video-section {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 70px 15px 30px;
    }

    .hero-section {
        padding: 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content h3 {
        font-size: 16px;
    }

    .degree-section h2,
    .modules-section h2,
    .philosophy-section h2,
    .media-section h2,
    .video-section h2 {
        font-size: 28px;
    }

    .degree-card {
        padding: 25px;
    }

    .degree-header h3 {
        font-size: 20px;
    }

    .degree-details p {
        font-size: 16px;
    }

    .modules-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .module-item {
        padding: 15px;
        font-size: 13px;
    }

    .philosophy-quote {
        font-size: 16px;
        padding-left: 15px;
    }

    .philosophy-section,
    .video-section {
        padding: 25px 15px;
    }
}
