* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}


.racing-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.racing-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.racing-logo {
    font-size: 24px;
    font-weight: bold;
    color: #ff6b00;
}

.racing-nav {
    display: flex;
    align-items: center;
}

.racing-nav-list {
    display: flex;
    list-style: none;
    margin-right: 20px;
}

.racing-nav-item {
    margin-left: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.racing-nav-item:hover {
    color: #ff6b00;
}

.racing-auth-buttons {
    display: flex;
}

.racing-auth-btn {
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    margin-left: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.racing-login-btn {
    border: 1px solid #ddd;
    background: transparent;
}

.racing-login-btn:hover {
    border-color: #ff6b00;
    color: #ff6b00;
}

.racing-signup-btn {
    background-color: #ff6b00;
    color: white;
    border: 1px solid #ff6b00;
}

.racing-signup-btn:hover {
    background-color: #e05e00;
    border-color: #e05e00;
}

.racing-mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
}


.racing-hero {
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url('../img/main-banner.png') no-repeat center center;
    background-size: cover;
    padding: 80px 0;
    text-align: center;
}

.racing-hero-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 10px;
}

.racing-hero-title {
    font-size: 42px;
    font-weight: bold;
    color: #222;
    margin-bottom: 20px;
}

.racing-hero-text {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 30px;
}

.racing-hero-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ff6b00;
    color: white;
    font-weight: bold;
    border-radius: 4px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.racing-event-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.racing-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.racing-event-content {
    padding: 20px;
}

.racing-event-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: #222;
    border-bottom: 2px solid #ff6b00;
    padding-bottom: 8px;
}

.racing-event-list {
    list-style: none;
    margin-bottom: 20px;
}

.racing-event-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.racing-event-item:last-child {
    border-bottom: none;
}

.racing-event-date {
    color: #ff6b00;
    font-weight: 500;
    min-width: 70px;
}

.racing-event-name {
    flex-grow: 1;
    padding: 0 10px;
    color: #444;
}

.racing-event-time {
    color: #666;
    font-weight: 500;
}

.racing-event-btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: #ff6b00;
    color: white;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.racing-event-btn:hover {
    background-color: #e05e00;
}

@media (max-width: 768px) {
    .racing-events-grid {
        grid-template-columns: 1fr;
    }

    .racing-event-item {
        flex-direction: column;
    }

    .racing-event-date,
    .racing-event-time {
        font-size: 12px;
    }

    .racing-event-name {
        padding: 5px 0;
    }
}

.racing-hero-btn:hover {
    background-color: #e05e00;
}


.racing-about {
    padding: 80px 0;
    background-color: #fff;
}

.racing-section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #222;
}

.racing-about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.racing-about-text {
    flex: 1;
}

.racing-about-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #222;
}

.racing-about-desc {
    margin-bottom: 20px;
    color: #555;
}

.racing-about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.racing-about-image img {
    width: 100%;
    height: auto;
    display: block;
}


.racing-events {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.racing-events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.racing-event-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.racing-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.racing-event-image {
    height: 180px;
    overflow: hidden;
}

.racing-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.racing-event-card:hover .racing-event-image img {
    transform: scale(1.05);
}

.racing-event-content {
    padding: 20px;
}

.racing-event-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #222;
}

.racing-event-desc {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
}

.racing-event-btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: #ff6b00;
    color: white;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color 0.3s;
}

.racing-event-btn:hover {
    background-color: #e05e00;
}


.racing-faq {
    padding: 80px 0;
    background-color: #fff;
}

.racing-faq-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.racing-faq-questions {
    flex: 1;
}

.racing-faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 6px;
    overflow: hidden;
}

.racing-faq-question {
    padding: 15px 20px;
    background-color: #f9f9f9;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.racing-faq-question:hover {
    background-color: #f1f1f1;
}

.racing-faq-answer {
    padding: 15px 20px;
    display: none;
    color: #555;
    font-size: 14px;
}

.racing-faq-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.racing-faq-image img {
    width: 100%;
    height: auto;
    display: block;
}


.racing-footer {
    background-color: #222;
    color: #ddd;
    padding: 50px 0 20px;
    text-align: center;
}

.racing-footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #ff6b00;
    margin-bottom: 20px;
    display: inline-block;
}

.racing-footer-disclaimer {
    font-size: 12px;
    color: #999;
    max-width: 1100px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.racing-footer-help {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.racing-footer-help-link {
    color: #ff6b00;
    font-size: 14px;
    margin: 0 10px;
}

.racing-footer-links {
    margin-bottom: 20px;
}

.racing-footer-link {
    font-size: 12px;
    color: #999;
    margin: 0 10px;
    transition: color 0.3s;
}

.racing-footer-link:hover {
    color: #ff6b00;
}


.racing-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.racing-modal-content {
    background-color: #fff;
    border-radius: 8px;
    width: 100%;
    max-width: 480px;
    padding: 30px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.racing-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #999;
}

.racing-modal-close:hover {
    color: #333;
}

.racing-modal-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #222;
    text-align: center;
}

.racing-form-group {
    margin-bottom: 15px;
}

.racing-form-label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #555;
}

.racing-form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.racing-form-input:focus {
    border-color: #ff6b00;
    outline: none;
}

.racing-form-submit {
    width: 100%;
    padding: 12px;
    background-color: #ff6b00;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.racing-form-submit:hover {
    background-color: #e05e00;
}

.racing-form-switch {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

.racing-form-switch-btn {
    color: #ff6b00;
    cursor: pointer;
    font-weight: 500;
}

.racing-modal-message {
    text-align: center;
    padding: 20px;
    display: none;
}

.racing-modal-success {
    color: #28a745;
}

.racing-modal-error {
    color: #dc3545;
}

.racing-policy {
    padding: 60px 0;
    background-color: #fff;
}

.racing-policy-title {
    font-size: 32px;
    color: #222;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 2px solid #ff6b00;
    padding-bottom: 10px;
    display: inline-block;
}

.racing-policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.racing-policy-section {
    margin-bottom: 30px;
}

.racing-policy-subtitle {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 4px solid #ff6b00;
}

.racing-policy-text {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.racing-policy-list {
    margin-left: 20px;
    color: #555;
    margin-bottom: 15px;
}

.racing-policy-list li {
    margin-bottom: 8px;
}

.racing-policy-updated {
    font-size: 14px;
    color: #888;
    text-align: right;
    font-style: italic;
}

.racing-responsible {
    padding: 60px 0;
    background-color: #fff;
}

.racing-responsible-title {
    font-size: 32px;
    color: #222;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 2px solid #ff6b00;
    padding-bottom: 10px;
    display: inline-block;
}

.racing-responsible-content {
    max-width: 900px;
    margin: 0 auto;
}

.racing-responsible-section {
    margin-bottom: 40px;
}

.racing-responsible-subtitle {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 4px solid #ff6b00;
}

.racing-responsible-text {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.racing-responsible-list {
    margin-left: 20px;
    color: #555;
    margin-bottom: 15px;
}

.racing-responsible-list li {
    margin-bottom: 8px;
}

.racing-responsible-tools {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.racing-responsible-tool {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 6px;
    border-top: 3px solid #ff6b00;
}

.racing-responsible-tool h3 {
    color: #ff6b00;
    margin-bottom: 10px;
}

.racing-responsible-tool p {
    color: #666;
    font-size: 14px;
}

.racing-responsible-help {
    margin-left: 20px;
    color: #555;
}

.racing-responsible-help li {
    margin-bottom: 12px;
}

.racing-responsible-help a {
    color: #ff6b00;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .racing-responsible-title {
        font-size: 26px;
    }

    .racing-responsible-subtitle {
        font-size: 20px;
    }

    .racing-responsible-tools {
        grid-template-columns: 1fr;
    }
}

.racing-cookies {
    padding: 60px 0;
    background-color: #fff;
}

.racing-cookies-title {
    font-size: 32px;
    color: #222;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 2px solid #ff6b00;
    padding-bottom: 10px;
    display: inline-block;
}

.racing-cookies-content {
    max-width: 900px;
    margin: 0 auto;
}

.racing-cookies-section {
    margin-bottom: 30px;
}

.racing-cookies-subtitle {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 4px solid #ff6b00;
}

.racing-cookies-text {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.racing-cookies-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.racing-cookies-type {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 6px;
}

.racing-cookies-type h3 {
    color: #ff6b00;
    font-size: 18px;
    margin-bottom: 8px;
}

.racing-cookies-type p {
    color: #666;
    font-size: 14px;
}

.racing-cookies-smalltitle {
    font-size: 18px;
    color: #444;
    margin: 20px 0 10px;
}

.racing-cookies-list {
    margin-left: 20px;
    color: #555;
}

.racing-cookies-list li {
    margin-bottom: 8px;
}

.racing-cookies-list a {
    color: #ff6b00;
    text-decoration: underline;
}

.copy{
    font-size: 13px;
}

.racing-cookies-updated {
    font-size: 14px;
    color: #888;
    text-align: right;
    font-style: italic;
}

@media (max-width: 768px) {
    .racing-cookies-title {
        font-size: 26px;
    }

    .racing-cookies-subtitle {
        font-size: 20px;
    }

    .racing-cookies-types {
        grid-template-columns: 1fr;
    }
}












@media (max-width: 768px) {
    .racing-policy-title {
        font-size: 26px;
    }

    .racing-policy-subtitle {
        font-size: 20px;
    }
}


@media (max-width: 992px) {

    .racing-about-content,
    .racing-faq-content {
        flex-direction: column;
    }

    .racing-about-image,
    .racing-faq-image {
        order: -1;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .racing-nav-list {
        display: none;
    }

    .racing-nav-list.active {
        display: block;
        position: absolute;
        left: 0;
        top: 50px;
        width: 100%;
        padding: 20px 0;
        box-sizing: border-box;
        background: #fff;
    }

    .racing-nav-list.active li {
        margin: 10px 10px;
    }

    .racing-mobile-menu {
        display: block;
    }

    .racing-hero-title {
        font-size: 32px;
    }

    .racing-events-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .racing-hero-title {
        font-size: 28px;
    }

    .racing-section-title {
        font-size: 26px;
    }

    .racing-auth-buttons {
        display: none;
    }
}