﻿html,
body {
    margin: 0;
    padding: 0;
}

body {
    background-color: #ffffff;
}

.home-page {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

.home-header {
    position: relative;
    z-index: 10;
    width: 100%;
    background-color: #001f47;
}

.home-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.home-intro {
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
}

.home-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 18px;
    border-radius: 24px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .home-button:hover {
        color: #ffffff;
        transform: translateY(-1px);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    }

.home-button-register {
    background: linear-gradient( 180deg, #0199da 0%, #082484 100% );
}

.home-button-participate {
    background: linear-gradient( 180deg, #d78c07 0%, #ba6c06 100% );
}

.home-image-section {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
}

    .home-image-section picture {
        display: block;
        width: 100%;
    }

.home-image {
    display: block;
    width: 100%;
    height: auto;
}

.home-winners {
    padding-top: 36px;
    padding-bottom: 36px;
}

