body {
    background: linear-gradient(135deg, #f0f4f8 0%, #d9e2ec 100%);
    color: #10145b;
    font-family: 'Outfit', sans-serif;
    overflow: hidden;
}
.slide {
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 5rem;
    bottom: 1.5rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    transform: scale(0.98) translateY(10px);
    overflow-y: auto;
    overflow-x: hidden;
}
.slide::before,
.slide::after {
    content: '';
    margin: auto;
}
/* Scrollbar styling for slides */
.slide::-webkit-scrollbar {
    width: 6px;
}
.slide::-webkit-scrollbar-track {
    background: transparent;
}
.slide::-webkit-scrollbar-thumb {
    background: rgba(16, 20, 91, 0.2);
    border-radius: 10px;
}
.slide::-webkit-scrollbar-thumb:hover {
    background: rgba(16, 20, 91, 0.4);
}

@media (min-width: 768px) {
    .slide {
        top: 6rem;
        bottom: 3rem;
        left: 2rem;
        right: 2rem;
        padding: 3rem;
    }
}
.slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
    z-index: 10;
}
.glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(16, 20, 91, 0.1);
    border-radius: 2rem;
    box-shadow: 0 30px 60px -12px rgba(16, 20, 91, 0.15);
}
.gradient-text {
    background: linear-gradient(135deg, #10145b, #2b3a8c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nav-btn {
    background: #10145b;
    color: #ffffff;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(16, 20, 91, 0.2);
}
.nav-btn:hover:not(:disabled) {
    background: #1c238c;
    transform: scale(1.1) rotate(0deg);
    box-shadow: 0 8px 24px rgba(16, 20, 91, 0.3);
}
.nav-btn:active:not(:disabled) {
    transform: scale(0.95);
}
.nav-btn:disabled {
    background: #cbd5e1;
    color: #94a3b8;
    cursor: not-allowed;
    box-shadow: none;
}

.logo-container {
    background: #ffffff;
    padding: 1.5rem 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

/* Side Navigation */
.side-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1024px) {
    body:hover .side-nav:not(:disabled) {
        opacity: 0.8;
    }
    .side-nav:hover:not(:disabled) {
        opacity: 1 !important;
        transform: translateY(-50%) scale(1.1);
    }
}

@media (max-width: 1023px) {
    .side-nav {
        display: none !important;
    }
}

.grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 50px 50px;
    background-image: linear-gradient(to right, rgba(16, 20, 91, 0.04) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(16, 20, 91, 0.04) 1px, transparent 1px);
    z-index: -1;
}

.primary-blue { color: #10145b; }
.bg-primary-blue { background-color: #10145b; }
