/* Base Styles */
:root {
    --primary-color: #1a237e;
    --secondary-color: #0d47a1;
    --accent-color: #5c6bc0;
    --light-accent: #e8eaf6;
    --text-color: #333;
    --light-text: #666;
    --lighter-text: #999;
    --white: #fff;
    --light-bg: #f5f7fa;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --error-color: #f44336;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 4px;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-y: scroll; /* Always show scrollbar to prevent layout shift */
}

html {
    scrollbar-gutter: stable; /* Reserve space for scrollbar */
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    line-height: 1.3;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-weight: 500;
}

.btn:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.primary-btn {
    background-color: var(--primary-color);
}

.secondary-btn {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.small-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Header & Navigation */
header {
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    min-height: 50px;
    height: 50px;
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    flex-shrink: 0;
}

.logo h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--primary-color);
    line-height: 50px;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 2px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background-color: var(--light-bg);
    padding: 64px 0; /* 0.8x of original 80px */
    text-align: center;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.hero-content h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--light-text);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--light-text);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* About Section */
.about {
    padding: 80px 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.credentials {
    margin-top: 30px;
}

.credential {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.credential i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
}

/* Featured Courses Section */
.featured-courses {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.course-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.course-image {
    height: 200px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.course-card:hover .course-image img {
    transform: scale(1.05);
}

.course-content {
    padding: 20px;
}

.course-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.course-content p {
    margin-bottom: 20px;
    color: var(--light-text);
}

.center-btn {
    text-align: center;
}

/* Latest Research Section */
.latest-research {
    padding: 80px 0;
}

.research-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
}

.research-item {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.research-item:hover {
    box-shadow: var(--box-shadow);
}

.research-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.research-item p {
    margin-bottom: 20px;
    color: var(--light-text);
}

.read-more {
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Upcoming Events Section */
.upcoming-events {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.events-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
}

.event-card {
    display: flex;
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.event-date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px;
    min-width: 80px;
}

.event-date .month {
    font-size: 0.9rem;
    font-weight: 700;
}

.event-date .day {
    font-size: 1.8rem;
    font-weight: 700;
}

.event-details {
    padding: 20px;
    flex: 1;
}

.event-details h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.event-details p {
    margin-bottom: 5px;
    color: var(--light-text);
    display: flex;
    align-items: center;
}

.event-details p i {
    margin-right: 10px;
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: #1a237e;
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3,
.footer-contact h3,
.footer-links h3,
.footer-social h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-info h3::after,
.footer-contact h3::after,
.footer-links h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-info p,
.footer-contact p {
    margin-bottom: 10px;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--accent-color);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--white);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Page Header */
.page-header {
    background-color: var(--light-bg);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--light-text);
}

/* Courses Page */
.courses-section {
    padding: 60px 0;
}

.course-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 20px;
    background-color: var(--light-bg);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.courses-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.course-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.course-header {
    background-color: var(--light-bg);
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.course-header h2 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.course-tag {
    display: inline-block;
    padding: 5px 10px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.8rem;
    margin-right: 10px;
}

.course-tag.current {
    background-color: var(--success-color);
}

.course-content {
    padding: 30px;
}

.course-description {
    margin-bottom: 30px;
}

.course-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
}

.detail-item {
    display: flex;
    align-items: center;
}

.detail-item i {
    margin-right: 10px;
    color: var(--primary-color);
}

.course-materials h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.material-section {
    margin-bottom: 30px;
}

.material-section h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.video-item h5 {
    margin-top: 10px;
    font-size: 1rem;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.resources-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.resources-list li {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

.resources-list li:hover {
    background-color: var(--light-accent);
}

.resources-list li a {
    color: var(--text-color);
    text-decoration: none;
    position: relative;
}

.resources-list li a::after {
    content: '►';
    position: absolute;
    right: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-family: Arial, sans-serif;
}

.resources-list li:hover a::after {
    opacity: 1;
}

/* Research Page */
.research-areas {
    padding: 60px 0;
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.research-area {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.research-area:hover {
    transform: translateY(-5px);
}

.research-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.research-area h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.research-project {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.project-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 40px;
}

.project-item h3 {
    padding: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1.5rem;
}

.project-content {
    padding: 30px;
    display: flex;
    gap: 30px;
}

.project-description {
    flex: 2;
}

.project-description p {
    margin-bottom: 20px;
}

.project-description ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.project-description ul li {
    list-style-type: disc;
    margin-bottom: 10px;
}

.project-collaborators {
    margin-top: 30px;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
}

.project-collaborators h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.project-collaborators ul {
    padding-left: 20px;
}

.project-collaborators ul li {
    list-style-type: disc;
    margin-bottom: 5px;
}

.project-image {
    flex: 1;
}

.project-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.research-group {
    padding: 60px 0;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.team-member {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    height: 220px;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .member-photo img {
    transform: scale(1.05);
}

.team-member h3 {
    margin: 15px 0 5px;
    padding: 0 15px;
}

.member-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 5px;
}

.member-research {
    padding: 0 15px 15px;
    font-size: 0.9rem;
    color: var(--light-text);
}

.join-research {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
}

.join-research h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.join-research p {
    margin-bottom: 20px;
}

.funding {
    padding: 60px 0;
    background-color: var(--light-bg);
}

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

.funding-item {
    background-color: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.funding-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.grant-title {
    font-weight: 500;
    margin-bottom: 5px;
}

.grant-period {
    color: var(--light-text);
    font-style: italic;
}

/* Publications Page */
.publications-section {
    padding: 60px 0;
}

.publication-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    min-width: 150px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--light-text);
}

.publications-list {
    margin-top: 40px;
}

.publications-list h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-accent);
}

.publication-year h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--light-text);
}

.publication-items {
    margin-bottom: 40px;
}

.publication-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
    transition: var(--transition);
}

.publication-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.publication-content {
    padding: 25px;
}

.publication-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.authors {
    margin-bottom: 5px;
    font-weight: 500;
}

.journal {
    font-style: italic;
    color: var(--light-text);
    margin-bottom: 15px;
}

.abstract {
    margin-bottom: 15px;
    color: var(--light-text);
}

.publication-links {
    display: flex;
    gap: 15px;
}

.pub-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.pub-link i {
    margin-right: 5px;
}

/* Contact Page */
.contact-section {
    padding: 60px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
}

.contact-info {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
}

.contact-info h2 {
    margin-bottom: 30px;
    color: var(--primary-color);
}

.info-item {
    display: flex;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.info-item h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.info-item p {
    color: var(--light-text);
    margin-bottom: 5px;
}

.info-item a {
    color: var(--light-text);
}

.info-item a:hover {
    color: var(--primary-color);
}

.social-profiles {
    margin-top: 30px;
}

.contact-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form h2 {
    margin-bottom: 30px;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(26, 35, 126, 0.2);
}

.map-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.faq-section {
    padding: 60px 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: var(--light-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.toggle-icon {
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-item.active .toggle-icon i {
    transform: rotate(45deg);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .about-content {
        flex-direction: column;
    }
    
    .project-content {
        flex-direction: column;
    }
    
    .project-image {
        order: -1;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content h3 {
        font-size: 1.3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .research-highlights,
    .events-list {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h3 {
        font-size: 1.1rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .about,
    .featured-courses,
    .latest-research,
    .upcoming-events {
        padding: 60px 0;
    }
    
    .courses-grid,
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .publication-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        width: 100%;
    }
}

/* Loading Spinner */
.loading-container {
    text-align: center;
    padding: 60px 20px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--light-accent);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-container p {
    color: var(--light-text);
    font-size: 1.1rem;
}
