/* Splash Screen Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.splash-body {
    font-family: 'Ubuntu', sans-serif;
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.splash-container {
    text-align: center;
    padding: 40px;
    max-width: 900px;
    animation: fadeIn 1s ease-in;
}

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

.splash-logo {
    width: 200px;
    height: auto;
    margin-bottom: 40px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.splash-container h1 {
    font-size: 3.5em;
    color: #fc3;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.welcome-block {
    background: rgba(42, 42, 58, 0.7);
    border: 3px solid #fc3;
    border-radius: 16px;
    padding: 30px 40px;
    margin: 30px 0;
    box-shadow: 0 8px 32px rgba(252, 195, 0, 0.2);
}

.welcome-block h1 {
    margin-bottom: 10px;
}

.welcome-subtitle {
    font-size: 2em;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 500;
}

.welcome-greetings {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(252, 195, 0, 0.3);
}

.greeting {
    font-size: 1.1em;
    color: #ccc;
    padding: 5px 12px;
    background: rgba(26, 26, 42, 0.5);
    border-radius: 20px;
    cursor: default;
    transition: all 0.3s ease;
}

.greeting:hover {
    color: #fc3;
    background: rgba(252, 195, 0, 0.15);
    transform: scale(1.05);
}

.action-buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.splash-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 3px solid;
    cursor: pointer;
}

.splash-btn-login {
    background-color: #fc3;
    color: #0a0a23;
    border-color: #fc3;
}

.splash-btn-login:hover {
    background-color: #ffd700;
    border-color: #ffd700;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(252, 195, 0, 0.5);
}

.splash-btn-register {
    background-color: transparent;
    color: #fc3;
    border-color: #fc3;
}

.splash-btn-register:hover {
    background-color: #fc3;
    color: #0a0a23;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(252, 195, 0, 0.5);
}

.splash-btn i {
    font-size: 1.2em;
}

.loading {
    margin-top: 30px;
    font-size: 1.1em;
    color: #fc3;
}

.spinner {
    border: 3px solid rgba(252, 195, 0, 0.3);
    border-top: 3px solid #fc3;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#countdown {
    font-weight: bold;
    color: #fc3;
}
