/* robott.sk - Hlavné štýly */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.container {
    text-align: center;
    padding: 2rem;
}

.logo {
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.5s forwards;
}

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

.logo img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3));
}

.robot-container {
    display: inline-block;
    margin: 1rem 0;
}

.robot {
    width: 180px;
    height: 216px;
    filter: drop-shadow(0 10px 30px rgba(0, 212, 255, 0.2));
}

h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-top: 1.5rem;
    background: linear-gradient(90deg, #00d4ff, #7b2cbf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: fadeIn 1s ease-out 2s forwards;
}

.subtitle {
    font-size: 1.1rem;
    color: #888;
    margin-top: 0.5rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 2.5s forwards;
}

/* Responzivita */
@media (max-width: 480px) {
    .robot {
        width: 140px;
        height: 168px;
    }
    h1 {
        font-size: 1.8rem;
    }
    .subtitle {
        font-size: 0.95rem;
    }
}
