/* ==============================
   Reset i style podstawowe
   ============================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Courier New', Courier, monospace;
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333;
}

/* ==============================
   Górny niebieski pasek
   ============================== */
.top-bar {
    width: 100%;
    background-color: #0066ff;
    color: #ffffff;
    text-align: center;
    padding: 25px 10px;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

/* ==============================
   Kontener głównej zawartości
   ============================== */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 40px;
}

/* ==============================
   Pozycja Ikonki Logowania (Link)
   ============================== */
.login-container {
    text-align: center;
}

.login-link {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    line-height: 0;
    border-radius: 20px;
   
    /* Płynna poświata i rozjaśnienie */
    transition: box-shadow 0.3s ease-in-out, filter 0.3s ease-in-out;
}

.login-link .login-icon {
    display: block;
    max-width: 100%;
    height: auto;
}

/*---------------HOVER LOG-------------------
Efekt hover dla ikonki logowania (monitor) */
.login-link:hover {
    box-shadow: 0 0 20px rgba(0,0,0,0.50);
}

/* ==============================
   Pozycja Logo YouFinder
   ============================== */
.logo-container {
    text-align: center;
}

.logo-container .logo-img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* ======================================
   Link <SEARCH CHANNELS> na dole strony
   =================================== */
.search-link-container {
    text-align: center;
    color: #0044cc;
}

.search-link {
    font-family: Arial, sans-serif;
    color: #0044cc;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    
    transition: all 0.2s ease-in-out;
}

.search-link:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-thickness: 1px;
}
