body {
    background: #000;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

.fs-7 {
    font-size: 0.75rem !important;
}

.fw-semibold {
    font-weight: 600;
}

.fw-medium {
    font-weight: 500;
}

.text-red {
    color: #ff2b2b;
}

.main-wrapper {
    background: linear-gradient(145deg, #1c1c1c, #111);
    border-radius: 30px;
    padding: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.price-card {
    background: #000;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid #333;
}

.price-top {
    background: #626262;
    text-align: center;
    padding: 25px;
    color: #fff;
}

.price-body {
    padding: 25px;
}

.price-title {
    text-align: center;
    font-weight: 600;
}

.ticket-price {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
}

.price-list li {
    margin-bottom: 12px;
    font-size: 15px;
}

.form-control,
.form-select {
    background-color: #1f1f1f !important;
    border-radius: 50px !important;
    padding: 12px 20px !important;
    font-size: 14px;
    color: #aaa;
    border: 1px solid #333;
}

.form-control::placeholder {
    color: #aaa;
    opacity: 1;
}

.form-select:invalid {
    color: #aaa;
}

.form-control:focus,
.form-select:focus {
    background-color: #1f1f1f !important;
    color: #fff !important;
    box-shadow: none !important;
}

.form-select {
    padding-right: 45px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 14px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

textarea.form-control {
    border-radius: 6px !important;
}

.submit-btn {
    background: #ff2b2b;
    border: none;
    padding: 10px 40px;
    border-radius: 30px;
    font-weight: 500;
    color: #fff;
}

.submit-btn:hover {
    background: #e60000;
}

.ad-section {
    background: #111;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
}

.footer {
    background: #111;
    text-align: center;
    padding: 15px;
    font-size: 12px;
    color: #aaa;
    border-radius: 15px;
    margin-bottom: 25px;
}

.footer a {
    color: #ff2b2b;
    font-weight: 500;
}

.custom-check input {
    display: none;
}

.check-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #fff;
    user-select: none;
}

.check-box {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: #1f1f1f;
    border: 2px solid #444;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.check-icon {
    width: 14px;
    height: 14px;
    stroke: #fff;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 30;
    stroke-dashoffset: 30;
    transition: .3s;
}

.custom-check input:checked+.check-label .check-box {
    background: #ff2b2b;
    border-color: #ff2b2b;
}

.custom-check input:checked+.check-label .check-icon {
    stroke-dashoffset: 0;
}

.check-label:hover .check-box {
    border-color: #ff2b2b;
}

.event-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 30px;
    padding: 25px;
    margin-top: 25px;
    color: #ddd;
    font-size: 14px;
}

.event-card h6 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 18px;
}

.event-card ul {
    padding-left: 18px;
}

.event-card i {
    font-size: 20px;
    color: #ff2b2b;
    margin-right: 6px;
}

.upload-wrapper {
    display: flex;
    align-items: center;
    background: #1f1f1f;
    border: 1px solid #333;
    border-radius: 50px;
    padding: 5px 5px;
    color: #aaa;
    font-size: 14px;
    transition: all .3s ease;
}

.upload-btn {
    position: relative;
    background: #ff2b2b;
    border-radius: 30px;
    padding: 8px 20px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    flex-shrink: 0;
    margin-right: 15px;
    transition: all .3s ease;
    text-align: center;
}

.upload-text {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #aaa;
}

.upload-btn input[type="file"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* --------------- Custom Radio --------------- */
.custom-radio input {
    display: none;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #fff;
    user-select: none;
}

.radio-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #1f1f1f;
    border: 2px solid #444;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.radio-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff2b2b;
    transform: scale(0);
    transition: .3s;
}

.custom-radio input:checked+.radio-label .radio-circle {
    border-color: #ff2b2b;
}

.custom-radio input:checked+.radio-label .radio-dot {
    transform: scale(1);
}

.radio-label:hover .radio-circle {
    border-color: #ff2b2b;
}

.partner-section {
    padding: 50px;
    background: linear-gradient(145deg, #1c1c1c, #111);
    margin-bottom: 40px;
    border-radius: 30px;
}

.partner-section .partner-card {
    background: #1f1f1f;
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    border: 1px solid #333;
    transition: all .3s ease;
}

.partner-section .partner-card:hover {
    border-color: #ff2b2b;
    box-shadow: 0 15px 30px rgba(255, 43, 43, 0.2);
}

.partner-section .partner-role {
    color: #ff3b3b;
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 500;
}

.partner-section .partner-logo {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    max-width: 120px;
    margin: 0 auto 30px;
    height: 120px;
    display: flex;
}

.partner-section .partner-company {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1;
}

.partner-section .partner-person {
    font-size: 18px;
    color: #d0d0d0;
    margin-bottom: 15px;
    line-height: 1;
}

.partner-section .partner-phone {
    font-size: 16px;
    color: #aaa;
    margin-bottom: 12px;
}

.partner-section .partner-chapter {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.partner-section .owl-theme .owl-dots {
    margin-top: 40px;
}

.partner-section .owl-theme .owl-dots .owl-dot span {
    background: #444;
    width: 10px;
    height: 10px;
}

.partner-section .owl-theme .owl-dots .owl-dot.active span {
    background: #ff3b3b;
}

#divLoading {
    display: none;
}

#divLoading.show {
    display: block;
    position: fixed;
    z-index: 99999;
    background-image: url('../images/loader.gif');
    background-color: #000;
    opacity: 0.5;
    background-repeat: no-repeat;
    background-position: center;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
}


@media screen and (max-width:1399px) {
    .logo img {
        max-width: 135px;
    }
}

@media screen and (max-width:1199px) {
    .logo img {
        max-width: 116px;
    }
}

@media screen and (max-width:991px) {
    .logo img {
        max-width: 86px;
    }

    .main-wrapper {
        padding: 30px 30px;
    }

    .event-card {
        margin-top: 12px;
    }

    .submit-btn {
        width: 100%;
    }
}

@media screen and (max-width:575px) {
    .main-wrapper {
        padding: 20px;
    }

    .price-body {
        padding: 20px;
    }

    .event-card {
        padding: 20px;
    }
}