/* ===== BLA.BA LOGIN PAGE — VESELE NARANDŽASTO-ŽUTE BOJE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* --- Hero Section --- */
#login_logo {
    height: 80px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

#intro_top {
    width: 100%;
    min-height: 100vh;
    z-index: 1;
    position: relative;
    background: #ff9a00 url('images/background.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

#intro_top::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(255, 140, 0, 0.92) 0%, rgba(255, 193, 7, 0.85) 40%, rgba(255, 87, 34, 0.88) 100%);
    z-index: 0;
}

#login_wrap {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

#login_all {
    width: 520px;
    max-width: 92%;
    display: block;
    margin: 0 auto;
    color: #fff;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: fadeSlideUp 0.6s ease-out;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Login Text & Buttons --- */
.login_text {
    text-align: center;
}

.login_text .bold {
    font-size: 28px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.login_text .text_med {
    opacity: 0.92;
    line-height: 1.6;
    font-size: 15px;
}

.intro_login_btn,
.intro_guest_btn,
.intro_register_btn {
    width: 100% !important;
    padding: 14px 24px !important;
    border-radius: 14px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
    letter-spacing: 0.3px;
    border: none !important;
    cursor: pointer;
}

.intro_login_btn {
    background: #fff !important;
    color: #e65100 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
}

.intro_login_btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
    background: #fff8e1 !important;
}

.intro_guest_btn {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
}

.intro_guest_btn:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-2px) !important;
}

/* "ili" divider between buttons */
.login_ili_divider {
    text-align: center;
    margin: 4px 0 14px 0;
    position: relative;
}

.login_ili_divider span {
    display: inline-block;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.login_ili_divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

/* registration button */
.intro_register_btn {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.6) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.intro_register_btn:hover {
    background: #fff !important;
    color: #e65100 !important;
    border-color: #fff !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
    transform: translateY(-2px) !important;
}

.intro_register_btn i {
    margin-right: 4px;
}

/* registration link */
.login_register_link {
    opacity: 0.8;
    transition: opacity 0.3s;
}

.login_register_link:hover {
    opacity: 1;
}

.login_not_member {
    text-align: center;
    padding-top: 5px;
}

/* --- Feature Cards Section (DARK) --- */
.seo_features {
    width: 100%;
    background: #161616;
    padding: 80px 0;
    overflow: hidden;
}

.seo_features_inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.seo_feature_card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background: #1e1e1e;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    border: 1px solid #2a2a2a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeSlideUp 0.6s ease-out both;
}

.seo_feature_card:nth-child(2) {
    animation-delay: 0.15s;
}

.seo_feature_card:nth-child(3) {
    animation-delay: 0.3s;
}

.seo_feature_card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(255, 140, 0, 0.12);
    border-color: rgba(255, 140, 0, 0.25);
}

.seo_feature_icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #111;
}

.seo_feature_icon.icon_community {
    background: linear-gradient(135deg, #ff8c00, #ffb300);
}

.seo_feature_icon.icon_secure {
    background: linear-gradient(135deg, #ff6d00, #ff9100);
}

.seo_feature_icon.icon_free {
    background: linear-gradient(135deg, #ffc107, #ffeb3b);
}

.seo_feature_card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffb300;
    margin-bottom: 12px;
}

.seo_feature_card p {
    font-size: 15px;
    color: #999;
    line-height: 1.7;
}

/* --- SEO Content Section (DARK) --- */
.seo_content {
    width: 100%;
    background: #111;
    padding: 80px 0;
}

.seo_content_inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.seo_content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #ffb300;
    margin-bottom: 20px;
    text-align: center;
}

.seo_content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ff8c00;
    margin-top: 36px;
    margin-bottom: 12px;
}

.seo_content p {
    font-size: 16px;
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 16px;
}

.seo_content .seo_divider {
    width: 60px;
    height: 4px;
    border-radius: 2px;
    margin: 0 auto 32px;
    background: linear-gradient(90deg, #ff8c00, #ffc107);
}

/* --- Stats Bar --- */
.seo_stats {
    width: 100%;
    padding: 60px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #ff8c00 0%, #ffb300 50%, #ff6d00 100%);
}

.seo_stats_inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

.seo_stat_item {
    flex: 1;
    min-width: 140px;
}

.seo_stat_number {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.seo_stat_label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Section css --- */
.section {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.section_content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.section_inside {
    margin: 0 auto;
}

/* --- Responsive --- */
@media screen and (max-width: 600px) {
    #login_all {
        padding: 28px 20px;
        border-radius: 16px;
        max-width: 88%;
    }

    #login_logo {
        height: 55px;
    }

    .login_text .bold {
        font-size: 20px;
    }

    .login_text .text_med {
        font-size: 13px;
    }

    .intro_login_btn,
    .intro_guest_btn,
    .intro_register_btn {
        padding: 12px 20px !important;
        font-size: 14px !important;
        border-radius: 12px !important;
    }

    .seo_features {
        padding: 40px 0;
    }

    .seo_feature_card {
        padding: 28px 20px;
        min-width: auto;
    }

    .seo_content {
        padding: 40px 0;
    }

    .seo_content h2 {
        font-size: 20px;
    }

    .seo_content h3 {
        font-size: 17px;
    }

    .seo_content p {
        font-size: 14px;
    }

    .seo_stats {
        padding: 30px 0;
    }

    .seo_stat_number {
        font-size: 26px;
    }

    .seo_stat_label {
        font-size: 11px;
    }
}

@media screen and (max-width: 1120px) {
    .section_inside {
        width: 96%;
    }
}