﻿
<style >
.hero-section {
    height: calc(100vh - 80px);
    min-height: 650px;
    background: linear-gradient(135deg, #a8c0ff 0%, #c0d6ff 100%);
}

.hero-overlay {
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
}

.countdown-box {
    background: rgba(30, 58, 138, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 35px;
    border-radius: 12px;
    min-width: 90px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.countdown-value {
    font-size: 48px;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.countdown-label {
    font-size: 14px;
    color: white;
    opacity: 0.9;
    margin-top: 8px;
    font-weight: 600;
}

.edition-badge {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 28px;
    line-height: 1.2;
}

.race-category-early1 {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    color: white;
}

.race-category-early2 {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
}

.race-category-regular {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    color: white;
}

.poster-tagline {
    background: linear-gradient(90deg, #ff6b35, #f7931e, #4caf50);
    padding: 10px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.participant-item {
    background: #f9fafb;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

    .participant-item:hover {
        transform: translateY(-5px);
    }

.participant-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.why-participate-section {
    background: linear-gradient(135deg, #c0d6ff 0%, #a8c0ff 100%);
}

.why-item {
    font-size: 18px;
    line-height: 1.8;
    color: #1f2937;
    font-weight: 500;
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
}

    .why-item::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #10b981;
        font-weight: 700;
        font-size: 24px;
    }

.btn-register-custom {
    background: #1e3a8a;
    border: none;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 15px 50px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.6);
    transition: all 0.3s ease;
}

    .btn-register-custom:hover {
        background: #1e40af;
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(30, 58, 138, 0.7);
    }


/*body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 40px 0;
}*/

.contact-section {
    background: #2d3561;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.section-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

.address-info {
    color: #fff;
}

    .address-info h4 {
        font-size: 1.5rem;
        margin-bottom: 25px;
        font-weight: 600;
    }

    .address-info p {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 30px;
    }

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    color: #fff;
}

    .contact-item i {
        font-size: 1.2rem;
        margin-right: 15px;
        width: 24px;
    }

    .contact-item a {
        color: #fff;
        text-decoration: none;
        transition: color 0.3s;
    }

        .contact-item a:hover {
            color: #a8b3ff;
        }

.contact-form {
    background: #f5f5f5;
    padding: 40px;
    border-radius: 15px;
}

.form-control {
    border: none;
    border-bottom: 2px solid #2d3561;
    border-radius: 0;
    padding: 12px 0;
    background: transparent;
    font-size: 1rem;
}

    .form-control:focus {
        box-shadow: none;
        border-bottom-color: #667eea;
        background: transparent;
    }

    .form-control::placeholder {
        color: #999;
    }

.btn-submit {
    background: #2d3561;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 20px;
}

    .btn-submit:hover {
        background: #3d4671;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .btn-submit i {
        margin-right: 8px;
    }

@@media (max-width: 768px) {
    .contact-section {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-form {
        padding: 25px;
        margin-top: 30px;
    }
}


.video-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px;
}

.section-title {
    color: #2d3561;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

.btn-load-more {
    background: #2d3561;
    color: #fff;
    padding: 12px 40px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    margin: 0 auto 50px;
    box-shadow: 0 4px 10px rgba(45, 53, 97, 0.3);
}

    .btn-load-more:hover {
        background: #3d4671;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(45, 53, 97, 0.4);
    }

.video-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

    .video-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    }

    .video-card img {
        width: 100%;
        object-fit: cover;
        display: block;
    }

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.video-card:hover .video-overlay {
    background: rgba(0,0,0,0.5);
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.video-card:hover .play-button {
    background: #fff;
    transform: scale(1.1);
}

.play-button i {
    color: #2d3561;
    font-size: 2rem;
    margin-left: 5px;
}

@@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .video-card img {
        height: 250px;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

        .play-button i {
            font-size: 1.5rem;
        }
}

.photo-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px;
}

.section-title {
    color: #2d3561;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

.photo-card {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    border: none;
}

    .photo-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    }

    .photo-card img {
        width: 100%;
        object-fit: cover;
        display: block;
        cursor: pointer;
    }

.btn-load-more {
    background: #2d3561;
    color: #fff;
    padding: 12px 40px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    margin: 50px auto 0;
    box-shadow: 0 4px 10px rgba(45, 53, 97, 0.3);
}

    .btn-load-more:hover {
        background: #3d4671;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(45, 53, 97, 0.4);
    }

.gallery-row {
    margin-bottom: 30px;
}

@@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .photo-card img {
        height: 220px;
    }
}

</style >
