/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2d1b2d 100%);
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #000000 0%, #1a0a1a 100%);
    border-bottom: 2px solid #ff1493;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 20, 147, 0.3);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.4);
}

.register-btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 20, 147, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.register-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.6);
    background: linear-gradient(135deg, #ff69b4, #ff1493);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ff1493;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Main Content */
.main {
    padding: 40px 0;
}

.content-section {
    margin-bottom: 60px;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 20, 147, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.content-section h1 {
    font-size: 2.5rem;
    color: #ff1493;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.content-section h2 {
    font-size: 2rem;
    color: #ff69b4;
    margin-bottom: 20px;
    border-left: 4px solid #ff1493;
    padding-left: 20px;
}

.content-section p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #e0e0e0;
    line-height: 1.8;
}

.content-section ul, .content-section ol {
    margin: 20px 0;
    padding-left: 30px;
}

.content-section li {
    margin-bottom: 10px;
    color: #e0e0e0;
    font-size: 1.1rem;
}

.content-section dt {
    font-weight: bold;
    color: #ff69b4;
    margin-top: 20px;
    font-size: 1.2rem;
}

.content-section dd {
    margin-bottom: 15px;
    color: #e0e0e0;
    padding-left: 20px;
}

/* Banner Styles */
.banner {
    margin: 30px auto;
    max-width: 1000px;
    text-align: center;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
    transition: transform 0.3s ease;
}

.banner:hover {
    transform: scale(1.02);
}

.banner-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
}

.banner-first {
    margin-top: 0;
}

.banner-second {
    display: block;
    margin: 40px auto;
}

/* Banner Carousel Styles */
.banner-carousel {
    margin: 0;
    width: 100vw;
    max-width: 100%;
    text-align: center;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
    position: relative;
    left: 50%;
    margin-left: -50vw;
    aspect-ratio: 10 / 3;
    transition: transform 0.3s ease;
}

.banner-carousel-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

.banner-carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.banner-carousel-item.active {
    opacity: 1;
    z-index: 2;
}

.banner-carousel-img {
    width: 100%;

    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 0;
}

.banner-carousel:hover {
    transform: scale(1.02) translateX(0);
}

.cta-scroll-btn {
    display: block;
    width: fit-content;
    margin: 40px auto;
    padding: 15px 40px;
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 40px;
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-scroll-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 20, 147, 0.45);
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #000000 0%, #1a0a1a 100%);
    border-top: 2px solid #ff1493;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    text-align: left;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 15px;
}

.footer-description {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-title {
    color: #ff1493;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #ff1493;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 20, 147, 0.3);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright p {
    color: #a0a0a0;
    font-size: 0.9rem;
}


/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .nav {
        display: none;
        width: 100%;
        order: 4;
    }
    
    .nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 10px;
        background: rgba(0, 0, 0, 0.9);
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .register-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    
    .content-section h1 {
        font-size: 2rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .content-section {
        padding: 30px 25px;
        margin-bottom: 40px;
    }
    
    .content-container {
        padding: 0 25px;
    }
    
    .content-section {
        scroll-margin-top: 80px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .banner-img {
        max-height: 150px;
    }
    
    
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .content-section h1 {
        font-size: 1.8rem;
    }
    
    .content-section h2 {
        font-size: 1.3rem;
    }
    
    .content-section {
        padding: 25px 20px;
    }
    
    .content-container {
        padding: 0 20px;
    }
    
    .content-section {
        scroll-margin-top: 70px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* Smooth scrolling with header offset */
html {
    scroll-behavior: smooth;
}

/* Add offset for fixed header */
.content-section {
    scroll-margin-top: 100px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section {
    animation: fadeInUp 0.6s ease-out;
}

.banner {
    animation: fadeInUp 0.8s ease-out;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #000000;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.6);
}

.scroll-to-top.show {
    display: flex;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
}
