body {
    font-family: 'Exo 2', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    font-size: 16px;
    text-align: center;
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background-color: #ff0000;
    border-radius: 10px;
    border: 2px solid #1a1a1a;
}
::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 10px;
}

h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: #ff0000;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1 {
    font-size: 48px; 
}

h2 {
    font-size: 36px; 
}

h3 {
    font-size: 24px; 
}

p {
    font-size: 18px; 
}

@media (max-width: 768px) {
    h1 {
        font-size: 36px; 
    }

    h2 {
        font-size: 28px; 
    }

    h3 {
        font-size: 20px; 
    }

    p {
        font-size: 16px; 
    }
}

#logo {
    width : 40px;
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    #logo {
        width : 30px;
        margin: 0;
        position: absolute;
        top: 50%;
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    box-shadow: 0 4px 6px rgba(255, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .logo {
    font-size: 28px;
    font-weight: bold;
    color: #ff0000;
    letter-spacing: 2px;
    text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

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

.navbar .nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.navbar .nav-links a:hover {
    color: #ff0000;
    text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000;
}

.navbar .menu-icon {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 768px) {
    .navbar .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        position: absolute;
        top: 60px;
        left: 0;
    }

    .navbar .nav-links.active {
        display: flex;
    }

    .navbar .nav-links li {
        margin: 10px 0;
        text-align: center;
    }

    .navbar .menu-icon {
        display: block;
    }
}

.footer {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 40px 20px; 
    text-align: center;
    border-top: 1px solid rgba(255, 0, 0, 0.2);
    box-shadow: 0 -4px 6px rgba(255, 0, 0, 0.3);
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    margin: 20px;
    max-width: 250px;
    flex: 1 1 100%; 
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 22px;
    color: #ff0000;
    text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000;
}

.footer-section a {
    color: #ffcc00;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-section a:hover {
    color: #ff0000;
    text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000;
}

.footer-bottom {
    margin-top: 30px;
    border-top: 1px solid rgba(255, 0, 0, 0.2);
    padding-top: 20px;
    font-size: 14px;
    color: #ff0000;
    text-shadow: 0 0 5px #ff0000, 0 0 10px #ff0000;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        max-width: 100%;
        margin: 10px 0;
    }

    .footer-section h3 {
        font-size: 20px; 
    }

    .footer-section a {
        font-size: 16px; 
    }

    .footer-bottom {
        font-size: 12px; 
    }
}

.hero {
    text-align: center;
    padding: 150px 20px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.1), rgba(0, 0, 0, 0.9)), url('https://via.placeholder.com/1920x1080') no-repeat center center/cover;
    color: #fff;
    animation: fadeIn 2s ease-in-out;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: slideIn 1.5s ease-in-out;
    text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    animation: slideIn 1.8s ease-in-out;
    text-shadow: 0 0 5px #ff0000, 0 0 10px #ff0000;
}

.hero .btn {
    background-color: #ff0000;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    margin: 0 10px;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000;
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 20px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes glow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

body {
    background: linear-gradient(-45deg, #000, #222, #000, #222);
    background-size: 400% 400%;
    animation: gradientBG 10s ease infinite;
    min-height: 100vh;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero .btn-container {
    display: flex;
    justify-content: center;
    gap: 20px; 
}

.hero .btn {
    background-color: #ff0000;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000;
}

.hero .btn:hover {
    background-color: #cc0000;
    transform: translateY(-5px);
    box-shadow: 0 0 20px #ff0000, 0 0 40px #ff0000;
}

@media (max-width: 768px) {
    .hero .btn-container {
        flex-direction: column; 
        gap: 10px; 
        align-items: center;
    }

    .hero .btn {
        width: 70%; 
        text-align: center;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 20px; 
    }

    .navbar .logo {
        font-size: 24px; 
    }

    .navbar .menu-icon {
        font-size: 20px; 
    }

    .hero {
        padding: 100px 20px; 
    }

    .hero h1 {
        font-size: 36px; 
    }

    .hero p {
        font-size: 16px; 
    }
}

.auth-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
    text-align: center;
}

.auth-container h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #ff0000;
    text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000;
}

.auth-container .form-group {
    margin-bottom: 15px;
    text-align: left;
}

.auth-container .form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    color: #fff;
}

.auth-container .form-group input {
    width: 94.5%;
    padding: 10px;
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
}

.auth-container .form-group input:focus {
    outline: none;
    border-color: #ff0000;
    box-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000;
}

.auth-container .btn {
    width: 100%;
    padding: 10px;
    background-color: #ff0000;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.auth-container .btn:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
}

.auth-container p {
    margin-top: 15px;
    font-size: 14px;
    color: #fff;
}

.auth-container a {
    color: #ffcc00;
    text-decoration: none;
    transition: color 0.3s ease;
}

.auth-container a:hover {
    color: #ff0000;
}

.auth-container .error,
.auth-container .message {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
}

.auth-container .error {
    background: rgba(255, 0, 0, 0.2);
    color: #ff0000;
}

.auth-container .message {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
}

.container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
}

.workshop-list,
.course-list {
    display: grid;
    
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .workshop-list,
    .course-list {
        display: grid;
        
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.workshop-item,
.course-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
    text-align: center;
}

.workshop-item h3,
.course-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ff0000;
    text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000;
}

.workshop-item p,
.course-item p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #fff;
}

.workshop-item .btn,
.course-item .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff0000;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.workshop-item .btn:hover,
.course-item .btn:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
}

.dashboard-content {
    margin-top: 20px;
}

.dashboard-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ff0000;
    text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000;
}

.dashboard-content .workshop-list,
.dashboard-content .course-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.dashboard-content .workshop-item,
.dashboard-content .course-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
    text-align: center;
}

.dashboard-content .workshop-item h4,
.dashboard-content .course-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ff0000;
    text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000;
}

.dashboard-content .workshop-item p,
.dashboard-content .course-item p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #fff;
}

.dashboard-content .workshop-item .btn,
.dashboard-content .course-item .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff0000;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.dashboard-content .workshop-item .btn:hover,
.dashboard-content .course-item .btn:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
}

.logout-btn {
    display: block;
    width: fit-content;
    margin: 20px auto;
    background-color: #333;
    color: #fff;
    border: 1px solid #ff0000;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.logout-btn:hover {
    background-color: #ff0000;
    color: #fff;
}

li {
    list-style-type:none;
}

.dashboard-section {
    margin-bottom: 40px;
}

.dashboard-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ff0000;
    text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000;
}

.enrolled-list,
.upcoming-sessions,
.recommended-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.enrolled-item,
.session-item,
.recommended-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.enrolled-item h4,
.session-item h4,
.recommended-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ff0000;
    text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000;
}

.enrolled-item p,
.session-item p,
.recommended-item p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #fff;
}

.profile-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.profile-info p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #fff;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: #111;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
    text-align: center;
}

.modal-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ff0000;
    text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000;
}

.modal-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #fff;
}

.modal-content .btn {
    margin: 0 10px;
}

.modal-content .cancel-btn {
    background-color: #333;
    color: #fff;
    border: 1px solid #ff0000;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.modal-content .cancel-btn:hover {
    background-color: #ff0000;
    color: #fff;
}

.dashboard-section {
    margin-bottom: 40px;
}

.dashboard-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ff0000;
    text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000;
}

.enrolled-list,
.upcoming-sessions,
.recommended-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.enrolled-item,
.session-item,
.recommended-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
    text-align: left;
}

.enrolled-item h4,
.session-item h4,
.recommended-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ff0000;
    text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000;
}

.enrolled-item p,
.session-item p,
.recommended-item p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #fff;
}

.profile-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.profile-info p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #fff;
}