* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@font-face {
    font-family: 'CustomFont';
    src: url('sources/font.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'CustomFont', sans-serif;
    display: flex;
    overflow-x: hidden;
}

.layout_padding {
    padding: 90px 0;
}

.layout_margin {
    margin: 90px 0;
}

.sidebar {
    width: 240px;
    height: 100vh;
    background-color: #111;
    position: fixed;
    left: 0;
    top: 0;
    padding: 2rem 0;
    border-right: 1px solid #333;
    transition: all 0.3s ease;
    z-index: 1000;
}

.logo-container {
    padding: 0 1.5rem 2rem;
    border-bottom: 1px solid #333;
    margin-bottom: 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.logo:hover {
    color: #7335b7;
    transform: translateY(-2px);
}

.nav-item {
    padding: 0.5rem 1.5rem;
}

.nav-item.active .nav-link {
    background-color: #7335b7;
    transform: translateX(5px);
    color: #fff;
}

.nav-item.active .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 2px;
    background-color: #f8842b;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    padding: 0.75rem 1rem;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    background-color: #7335b7;
    transform: translateX(5px);
    color: #fff;
}

.nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background-color: #f8842b;
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 4px;
}

.main-content {
    margin-left: 240px;
    width: calc(100% - 240px);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

h1 {
    font-size: 8rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5rem;
    background: linear-gradient(45deg, #7335b7, #f8842b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-weight: bold;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #7335b7;
    color: #ffffff;
    border-radius: 50px;
    transition: all 0.3s;
    border: 1px solid #7335b7;
    text-decoration: none;
    font-weight: 600;
}

.cta-button:hover {
    background-color: #f8842b;
    border-color: #f8842b;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(248, 132, 43, 0.3);
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #b300ff;
    text-align: center;
    padding: 10px 0;
    z-index: 100;
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 1rem;
    transition: all 0.3s;
}

footer a:hover {
    color: #f8842b;
    transform: translateY(-2px);
    display: inline-block;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1002;
    transition: all 0.3s;
}

.sidebar {
    transition: transform 0.3s ease, visibility 0.3s ease;
    visibility: visible;
}

.menu-toggle:hover {
    color: #7335b7;
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .sidebar {
        transform: translateX(-100%);
        width: 100%;
        max-width: 300px;
        visibility: hidden;
    }

    .sidebar.active {
        transform: translateX(0);
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.5);
        visibility: visible;
    }

    .main-content {
        margin-left: 0;
        width: 100%;
    }

    h1 {
        font-size: 4rem;
        letter-spacing: 0.25rem;
    }

    .container {
        padding: 1rem;
    }

    .menu-toggle.active {
        position: fixed;
    }
    
    .backdrop {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1001;
    }
    
    .backdrop.active {
        display: block;
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

.slide-in {
    animation: slideIn 0.5s ease-out;
}

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

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

.text-gradient {
    background: linear-gradient(45deg, #7335b7, #f8842b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.shadow-hover {
    transition: all 0.3s ease;
}

.shadow-hover:hover {
    box-shadow: 0 5px 15px rgba(115, 53, 183, 0.3);
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.5rem;
}

.logo-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #7335b7;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slides-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.slide {
    min-width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 70vh;
}

.slide-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    padding: 0 20px;
}

.slide-nav button {
    background-color: #333;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.slide-nav button:hover {
    background-color: #555;
    transform: scale(1.1);
}

.slide-nav button:active {
    transform: scale(0.95);
}

.slide-dots {
    display: flex;
    gap: 12px;
    align-items: center;
}

.slide-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slide-dot:hover {
    transform: scale(1.2);
}

.slide-dot.active {
    background-color: #333;
    border-color: #555;
    transform: scale(1.2);
}

.main-content {
    overflow: hidden;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.neon-text {
    position: relative;
    color: white;
  }
  
  .neon-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(166, 0, 255, 0.5);
    filter: blur(20px);
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.2s ease;
  }