.slide {
    width: 100%;
    height: 100%;
    display: none;
    padding: 40px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 25%, #2c3e50 75%, #34495e 100%);
    color: white;
    overflow-y: auto;
}

.slide.active {
    display: flex;
    opacity: 1;
    animation: slideIn 0.6s ease-out;
}

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

.slide-logo {
    position: absolute;
    top: 20px;
    right: 20px;
    width: auto;
    height: 80px;
    z-index: 10;
    opacity: 1;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
    background: rgba(255, 255, 255);
    padding: 8px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.slide-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    min-height: 100%;
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #e8f4f8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.4);
}

h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.subtitle {
    font-size: 1.8rem;
    margin-bottom: 20px;
    opacity: 0.9;
    font-weight: 300;
}

.website {
    font-size: 1.2rem;
    margin-top: 30px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}