* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.welcome-page {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.welcome-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.welcome-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.welcome-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 40px 20px;
    gap: 170px;
}

.welcome-logo {
    flex-shrink: 0;
}

.welcome-logo img {
    height: 100px;
    width: auto;
}

.welcome-text {
    text-align: center;
    color: #fff;
    margin-top: 0;
}

.welcome-text h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.welcome-text p {
    font-size: 20px;
    font-weight: 400;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.welcome-actions {
    display: flex;
    gap: 30px;
    flex-shrink: 0;
}

.welcome-btn {
    display: inline-block;
    padding: 16px 60px;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: all 0.3s ease;
    text-align: center;
    min-width: 200px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.welcome-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 768px) {
    .welcome-content {
        padding: 30px 16px;
        gap: 120px;
    }

    .welcome-logo img {
        height: 50px;
    }

    .welcome-text {
        margin-top: 0;
    }

    .welcome-text h1 {
        font-size: 24px;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .welcome-text p {
        font-size: 14px;
        line-height: 1.5;
        padding: 0 10px;
    }

    .welcome-actions {
        gap: 12px;
        width: 100%;
        justify-content: center;
    }

    .welcome-btn {
        padding: 12px 20px;
        font-size: 15px;
        min-width: 0;
        flex: 1;
        max-width: 170px;
        white-space: nowrap;
    }
}