.event-card {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        margin-bottom: 2rem;
        padding: 17px;
    }

    .event-title {
        color: #fff;
        font-weight: 500;
        margin-bottom: 1rem;
        font-size: 22px;
        line-height: 1.3;
    }

    .event-details {
        display: grid;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .event-detail {
        display: flex;
        align-items: center;
        color: rgba(255, 255, 255, 0.8);
        font-family: var(--number-font);
        font-size: 14px;
        gap: 0.75rem;
    }

    .event-detail-icon {
        width: 16px;
        height: 16px;
        color: var(--accent);
    }

    .form-card {
       background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        margin-bottom: 2rem;
        padding: 17px;
    }

    .form-title {
color: #fff;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 22px;
    line-height: 1.3;
    }

    .form-subtitle {
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 24px;
        font-size: 14px;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-label {
        display: block;
        font-weight: 500;
        color: #fff;
        margin-bottom: 10px;
        font-size: 14px;
        font-family: var(--number-font);
        line-height: 1;
    }

    .required {
        color: #e76464;
        margin-left: 0.25rem;
    }

    .form-input {
    width: 100%;
    padding: 12px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 7px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s;
    background: transparent;
color: rgba(255, 255, 255, 0.8);
    }

    ::placeholder {
        color: rgba(255, 255, 255, 0.8);
    }

    .form-input:focus {
        outline: none;
        border-color: var(--accent);
        box-shadow: 0 0 0 3px rgba(111, 187, 92, 0.1);
    }

    .radio-group {
        display: grid;
        gap: 0.75rem;
    }

    .radio-option {
        position: relative;
    }

    .radio-input {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    .radio-label {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 1.25rem;
        background: rgba(255, 255, 255, 0.1);
border-radius: 16px;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.2s;
    }

    .radio-input:checked + .radio-label {
        background: #fff;
    }

    .radio-input:checked + .radio-label .radio-label-price,
    .radio-input:checked + .radio-label .radio-label-desc,
    .radio-input:checked + .radio-label .radio-label-text {
    color: #333
    }

    .radio-label-text {
        font-weight: 500;
        color: var(--while);
    }

    .radio-label-desc {
        font-size: 12px;
        font-family: var(--number-font);
        color: rgba(255, 255, 255, 0.8);
        margin-top: 0.25rem;
    }

    .radio-label-price {
        font-weight: 700;
        color: var(--while);
        font-family: var(--number-font);
        font-size: 1.1rem;
    }

    .amount-display {
        background: #C0FFB1;
        color: var(--white);
        padding: 1.5rem;
        border-radius: 12px;
        text-align: center;
        margin-bottom: 2rem;
    }

    .amount-label {
        font-size: 16px;
        color: #000;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .amount-value {
        font-size: 2.5rem;
        font-weight: 700;
        color: #000;
        font-family: var(--number-font);
    }

    .submit-btn {
width: 100%;
    background: #77CA24;
    color: #000000;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    font-family: var(--number-font);
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 1rem;
    padding: 10px 5px;
    font-weight: 600;
    }

    .submit-btn:active {
        transform: translateY(0);
    }

    .submit-btn i {
        font-size: 9px;
    }

    .error-message {
        background: #fee;
        border-left: 4px solid var(--error);
        padding: 1rem;
        border-radius: 8px;
        margin-bottom: 1.5rem;
        color: var(--error);
        font-size: 0.9rem;
    }

    .program-btn {
width: 100%;
    background: #77CA24;
    color: #000000;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    font-family: var(--number-font);
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin-top: 1rem;
    padding: 10px 5px;
    font-weight: 600;
    }

    .modal-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.75);
        z-index: 1000;
        animation: fadeIn 0.3s;
    }

    .modal-overlay.active {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .modal-container {
        background: rgb(54 54 54);
        border-radius: 16px;
        max-width: 900px;
        width: 100%;
        max-height: 90vh;
        overflow-y: auto;
        animation: slideUp 0.3s;
    }

    @keyframes slideUp {
        from { 
            opacity: 0;
            transform: translateY(30px);
        }
        to { 
            opacity: 1;
            transform: translateY(0);
        }
    }

    .modal-header {
        background: #77CA24;
        color: var(--white);
        padding: 15px;
        border-radius: 0px;
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .modal-header-top {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 9px;
    }

    .modal-title {
        font-size: 18px;
        color: #000;
        font-weight: 700;
        line-height: 1.3;
    }

    .modal-close {
background: #2b2b2b;
    border: none;
    color: var(--white);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    right: 6px;
    top: 7px;
    position: absolute;
    padding: 0;
    justify-content: center;
    transition: all 0.2s;
    }

    .modal-close svg {
        width: 12px;
        height: 12px;
    }

    .modal-close:hover {
        background: rgba(255,255,255,0.3);
        transform: rotate(90deg);
    }

    .modal-dates {
        display: flex;
        gap: 1rem;
        font-size: 0.95rem;
        opacity: 0.95;
    }

    .modal-meta {
        display: flex;
        flex-direction: column;
        gap: 5px;
        font-size: 0.9rem;
    }

    .meta-item {
        display: flex;
    align-items: self-start;
    font-size: 11px;
    font-family: var(--number-font);
    gap: 5px;
    color: #040404;
    }

    .meta-item svg {
        flex-shrink: 0;
            width: 16px;
    }

    .modal-body {
        padding: 20px 12px;
    }

    .about-section {
        margin-bottom: 2rem;
    }

    .section-title {
    color: #fff;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 22px;
    line-height: 1.3;
    }

    .about-text {
      color: rgba(255, 255, 255, 0.8);
    margin-bottom: 14px;
    font-size: 14px;
    }

    .about-text strong {
        color: #fff;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .feature-card {
        background: var(--bg-light);
        padding: 1.5rem;
        border-radius: 12px;
        text-align: center;
    }

    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }

    .feature-title {
        font-weight: 600;
        color: var(--primary);
        margin-bottom: 0.5rem;
        font-size: 1.1rem;
    }

    .feature-desc {
        color: var(--text-light);
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .highlight-box {
            background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #fff;
    padding: 10px 15px;
    border-radius: 8px;
    margin: 15px 0;
    }

    .bullet-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .bullet-list li {
    padding: 4px 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    font-size: 12px;
    }

    .bullet-list li::before {
content: ' \f058';
    font-family: 'fontawesome';
    position: absolute;
    left: 0;
    top: 8px;
    font-size: 14px;
    color: #77CA24;
    line-height: 1;
    }

    .outcomes-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 0px;
    }

    .outcome-item {
            padding: 4px 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    font-size: 12px;
    }

        .outcome-item::before {
content: ' \f00c';
    font-family: 'fontawesome';
    position: absolute;
    left: 0;
    top: 8px;
    font-size: 14px;
    color: #77CA24;
    line-height: 1;
    }

    .day-cards {
        display: grid;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .day-card {
       background: rgba(255, 255, 255, 0.1);
        border: 2px solid var(--border);
        border-radius: 12px;
        overflow: hidden;
    }

    .day-header {
        background: #fff;
    color: var(--white);
    padding: 15px 17px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    }

    .day-number {
    background: rgb(0 0 0 / 20%);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 9px;
    color: #333;
    }

    .day-title {
        font-size: 17px;
        font-weight: 600;
    color: #333;
    line-height: 1.3;

    }

    .day-theme {
    background: #ffffff7d;
    color: #000;
    padding: 10px;
    font-weight: 500;
    font-size: 11px;
        padding: 10px 15px;

        font-style: italic;
    }

    .day-list {
        list-style: none;
        padding: 15px;
        margin: 0;
    }

    .day-list li {
        padding: 4px 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    font-size: 12px;
    }

    .day-list li::before {
content: ' \f00c';
    font-family: 'fontawesome';
    position: absolute;
    left: 0;
    top: 8px;
    font-size: 14px;
    color: #77CA24;
    line-height: 1;
    }

    .day-outcome {
        background: #9fcf96;
        padding: 15px 17px;
            font-size: 13px;
    color: #000;

    }

    .awards-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .award-item {
            background: rgba(255, 255, 255, 0.1);
        padding: 1.25rem;
        border-radius: 10px;
        text-align: center;
    }

    .award-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .award-name {
        font-weight: 600;
        color: #fff;
        font-family: var(--number-font);
        font-size: 14px;
    }

    .value-grid {
        display: grid;
        gap: 1rem;
        margin-top: 1rem;
    }

    .value-item {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #fff;
    padding: 1rem 10px;
    border-radius: 8px;
    }

    .value-icon {
        font-size: 1.75rem;
        flex-shrink: 0;
    }

    .value-text {
            font-family: var(--number-font);
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    }

    .closing-statement {
    background: #77ca24f2;
    color: var(--white);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    margin-top: 30px;
    }

    .closing-statement p {
 font-family: var(--number-font);
    color: #000;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 10px;
    }

    .closing-statement p:last-child {
        margin-bottom: 0;
    }

    .closing-statement .tagline {
        color: rgba(255, 255, 255, 0.9);
    }

    .tabs {
        display: flex;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        border-bottom: 2px solid var(--bg-light);
        overflow-x: auto;
    }

    .tab-btn {
        padding: 0.875rem 1.5rem;
        background: none;
        border: none;
        color: var(--text-light);
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s;
        white-space: nowrap;
        border-bottom: 3px solid transparent;
    }

    .tab-btn.active {
        color: var(--primary);
        border-bottom-color: var(--accent);
    }

    .tab-content {
        display: none;
    }

    .tab-content.active {
        display: block;
    }

    .schedule-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 1rem;
    }

    .schedule-table th {
        background: var(--primary);
        color: var(--white);
        padding: 1rem;
        text-align: left;
        font-weight: 600;
    }

    .schedule-table td {
        padding: 1rem;
        border-bottom: 1px solid var(--bg-light);
    }

    .schedule-table tr:hover {
        background: var(--bg-light);
    }

    .time-col {
        font-weight: 600;
        color: var(--primary);
        white-space: nowrap;
        width: 150px;
    }

    .activity-col {
        color: var(--text-dark);
    }

    .guest-row {
            display: flex;
    flex-wrap: wrap;
        justify-content: center;
        margin: 0 -12px;
    }

    .guest-col {
        width: 50%;
        padding: 15px;
    }

    .guest-card-img {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 100%;
margin: 0 auto 15px;
    border: 4px solid #ffffff94;
    }

        .guest-card-img img {
    width: 100%;
    height: 100%;
}

.guest-card h3 {
    font-size: 15px;
    line-height: 1;
    margin: 0 0 4px;
}

.guest-col {
    text-align: center;
}

.guest-card span {
    font-size: 12px;
}

    @media (max-width: 640px) {

        .modal-container {
            max-height: 95vh;
            border-radius: 12px;
        }

        .modal-dates {
            flex-direction: column;
            gap: 0.25rem;
        }

        .features-grid {
            grid-template-columns: 1fr;
        }

        .outcomes-grid {
            grid-template-columns: 1fr;
        }

        .awards-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .tabs {
            gap: 0;
        }

        .tab-btn {
            flex: 1;
            padding: 0.75rem 0.5rem;
            font-size: 0.9rem;
        }

        .schedule-table {
            display: block;
            overflow-x: auto;
        }

        .schedule-table th,
        .schedule-table td {
            padding: 0.75rem;
            font-size: 0.9rem;
        }

        .time-col {
            width: 120px;
        }
    }