/* ===================================
   ComplyFest 2026 - Tickets Page Styles
   =================================== */

/* Section Styling */
.ticketing-section {
    padding: 100px 0;
    padding-top: 150px;
    margin-top: 80px;
    position: relative;
}

/* Welcome Section */
.welcome-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 60px 80px;
    margin-bottom: 60px;
    position: relative;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #f4a21f, transparent);
}

.welcome-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.welcome-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.welcome-content p:last-child {
    margin-bottom: 0;
}

.welcome-content strong {
    color: #f4a21f;
    font-weight: 600;
}

.welcome-content a {
    color: #f4a21f;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(244, 162, 31, 0.3);
}

.welcome-content a:hover {
    color: #ffc107;
    border-bottom-color: #ffc107;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.tag-dot {
    width: 8px;
    height: 8px;
    background: #f4a21f;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.tag-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #f4a21f;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #f4a21f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    text-align: center;
}

/* Pricing Features Section */
.pricing-features {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin: 50px auto;
    max-width: 1200px;
}

.features-header {
    text-align: center;
    margin-bottom: 30px;
}

.features-header h3 {
    font-size: 1.5rem;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.features-header i {
    color: #f4a21f;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(244, 162, 31, 0.1);
    transform: translateY(-2px);
}

.feature-item i {
    font-size: 1.5rem;
    color: #f4a21f;
}

.feature-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Enhanced Ticket Cards */
.tickets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    padding-top: 80px;
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.ticket-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 35px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.ticket-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, transparent, #f4a21f, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ticket-card:hover::before {
    opacity: 1;
}

.ticket-card:hover {
    transform: translateY(-10px);
    border-color: rgba(244, 162, 31, 0.4);
    box-shadow: 0 25px 60px rgba(244, 162, 31, 0.2);
}

/* Featured Ticket */
.featured-ticket {
    border-color: rgba(244, 162, 31, 0.5);
    background: linear-gradient(135deg, rgba(244, 162, 31, 0.1), rgba(244, 162, 31, 0.03));
    transform: scale(1.05);
}

.featured-ticket:hover {
    transform: translateY(-10px) scale(1.05);
}

.ticket-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #f4a21f, #e43227);
    color: #ffffff;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(244, 162, 31, 0.4);
}

/* Premium Ticket */
.premium-ticket {
    border-color: rgba(228, 50, 39, 0.5);
    background: linear-gradient(135deg, rgba(228, 50, 39, 0.1), rgba(228, 50, 39, 0.03));
}

/* Virtual Ticket */
.virtual-ticket {
    border-color: rgba(60, 172, 168, 0.4);
    background: linear-gradient(135deg, rgba(60, 172, 168, 0.08), rgba(60, 172, 168, 0.03));
}

/* Ticket Header */
.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.ticket-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 162, 31, 0.1);
    border: 2px solid rgba(244, 162, 31, 0.3);
    border-radius: 15px;
    color: #f4a21f;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.ticket-icon.featured {
    background: rgba(244, 162, 31, 0.2);
    border-color: rgba(244, 162, 31, 0.5);
}

.ticket-icon.premium {
    background: rgba(228, 50, 39, 0.1);
    border-color: rgba(228, 50, 39, 0.3);
    color: #e43227;
}

.ticket-icon.virtual {
    background: rgba(60, 172, 168, 0.1);
    border-color: rgba(60, 172, 168, 0.3);
    color: #3caca8;
}

.ticket-card:hover .ticket-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Ticket Badges */
.ticket-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ticket-badge.super-early {
    background: linear-gradient(135deg, #f4a21f, #e43227);
    color: #ffffff;
}

.ticket-badge.early-bird {
    background: linear-gradient(135deg, #f4a21f, #ffc107);
    color: #000000;
}

.ticket-badge.premium {
    background: linear-gradient(135deg, #e43227, #c62828);
    color: #ffffff;
}

.ticket-badge.virtual {
    background: linear-gradient(135deg, #3caca8, #2d8b87);
    color: #ffffff;
}

.ticket-badge.limited {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: #ffffff;
}

/* Ticket Title */
.ticket-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

/* Ticket Price */
.ticket-price {
    margin-bottom: 20px;
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 10px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f4a21f;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #f4a21f;
    line-height: 1;
}

.contact-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3caca8;
}

.price-details {
    display: flex;
    align-items: center;
    gap: 10px;
}

.original-price {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.discount-badge {
    background: rgba(244, 162, 31, 0.2);
    color: #f4a21f;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.discount-badge.premium {
    background: rgba(228, 50, 39, 0.2);
    color: #e43227;
}

.discount-badge.virtual {
    background: rgba(60, 172, 168, 0.2);
    color: #3caca8;
}

/* Ticket Type & Info */
.ticket-type {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.ticket-type i {
    color: #f4a21f;
}

.ticket-opens {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244, 162, 31, 0.15);
    color: #f4a21f;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.ticket-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(228, 50, 39, 0.1);
    border-left: 3px solid #e43227;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.ticket-highlight i {
    color: #e43227;
    font-size: 1.2rem;
}

.ticket-highlight span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.ticket-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.ticket-note i {
    color: #3caca8;
}

.ticket-note.limited {
    color: #ff9800;
    font-weight: 600;
}

.ticket-note.limited i {
    color: #ff9800;
}

/* Ticket Divider */
.ticket-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 20px 0;
}

/* Ticket Features */
.ticket-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.ticket-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.ticket-features li i {
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.ticket-features li .fa-check-circle {
    color: #5e9843;
}

.ticket-features li .fa-times-circle {
    color: rgba(255, 255, 255, 0.3);
}

.ticket-features li .not-included {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

/* Ticket Buttons */
.btn-ticket {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 30px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    margin-top: 25px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #f4a21f, #ffc107);
    color: #000000;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(244, 162, 31, 0.5);
}

.btn-featured {
    background: linear-gradient(135deg, #f4a21f, #e43227);
    color: #ffffff;
}

.btn-featured:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(244, 162, 31, 0.6);
}

.btn-premium {
    background: linear-gradient(135deg, #e43227, #c62828);
    color: #ffffff;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(228, 50, 39, 0.5);
}

.btn-virtual {
    background: linear-gradient(135deg, #3caca8, #2d8b87);
    color: #ffffff;
}

.btn-virtual:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(60, 172, 168, 0.5);
}

/* Ticket Footer */
.ticket-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.ticket-fo: 80px auto 0;
    max-width: 120{
    color: #f4a21f;
}

/* Trust Section */
.trust-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 80px;
    padding: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-item i {
    font-size: 2.5rem;
    color: #f4a21f;
}

.trust-item strong {
    display: block;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 4px;
}

.trust-item span {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .welcome-section {
        padding: 50px 40px;
    }

    .tickets-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .featured-ticket {
        transform: scale(1);
    }
    
    .featured-ticket:hover {
        transform: translateY(-10px) scale(1);
    }
}

@media (max-width: 768px) {
    .welcome-section {
        padding: 40px 30px;
    }

    .welcome-title {
        font-size: 2rem;
    }

    .welcome-content p {
        font-size: 1rem;
    }

    .tickets-page-header {
        padding: 80px 0 60px;
    }
    
    .pricing-features {
        padding: 30px 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .tickets-grid {
        grid-template-columns: 1fr;
    }
    
    .ticket-card {
        padding: 30px 25px;
    }
    
    .ticket-title {
        font-size: 1.5rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .trust-section {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .welcome-section {
        padding: 30px 20px;
    }

    .welcome-title {
        font-size: 1.3rem;
    }

    .welcome-content p {
        font-size: 0.95rem;
    }

    .page-title {
        font-size: 1.8rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .ticket-ribbon {
        display: none;
    }

    .tickets-page-header {
        padding: 80px 0 60px;
    }
    
    .pricing-features {
        padding: 30px 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .tickets-grid {
        grid-template-columns: 1fr;
    }
    
    .ticket-card {
        padding: 30px 25px;
    }
    
    .ticket-title {
        font-size: 1.5rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .trust-section {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.8rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .ticket-ribbon {
        display: none;
    }
}

/* ===================================
   Waitlist Page Styles
   =================================== */

.waitlist-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.waitlist-form-card {
    grid-column: 1;
}

/* Waitlist Form Styles */
.waitlist-form .form-group {
    margin-bottom: 25px;
}

.waitlist-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.waitlist-form label i {
    color: #f4a21f;
    font-size: 0.9rem;
}

.waitlist-form .required {
    color: #e43227;
}

.waitlist-form input,
.waitlist-form select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.waitlist-form input:focus,
.waitlist-form select:focus {
    outline: none;
    border-color: #f4a21f;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(244, 162, 31, 0.1);
}

.waitlist-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23f4a21f' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 45px;
}

.waitlist-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.waitlist-form select option {
    background: #1a1a1b;
    color: #ffffff;
}

/* Success and Error Messages */
.success-message,
.error-message {
    margin-top: 25px;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-message {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid #10b981;
}

.success-message i {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 15px;
}

.success-message h3 {
    color: #10b981;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.success-message p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid #ef4444;
}

.error-message i {
    font-size: 2rem;
    color: #ef4444;
    margin-bottom: 10px;
}

.error-message p {
    color: #ef4444;
    margin: 0;
    font-weight: 500;
}

/* Package Details as Ticket Card */
#packageDetails.ticket-card {
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

#packageDetails .ticket-price {
    margin-bottom: 25px;
}

#packageDetails .price-wrapper {
    margin-bottom: 10px;
}

.ticket-note {
    margin-top: 20px;
    padding: 15px;
    background: rgba(244, 162, 31, 0.1);
    border: 1px solid rgba(244, 162, 31, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.ticket-note i {
    color: #f4a21f;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Responsive Styles for Waitlist */
@media screen and (max-width: 992px) {
    .waitlist-grid {
        grid-template-columns: 1fr;
    }
    
    .package-details-mobile {
        order: -1;
        margin-bottom: 25px;
    }
}

@media screen and (min-width: 993px) {
    .waitlist-form-card {
        position: relative;
    }
    
    .package-details-mobile {
        position: absolute;
        left: calc(100% + 30px);
        top: 0;
        width: 400px;
        margin: 0;
    }
}

@media screen and (max-width: 767px) {
    .waitlist-form-card {
        padding: 25px 20px;
    }

    .waitlist-form input,
    .waitlist-form select {
        padding: 12px 14px;
        font-size: 0.95rem;
    }
}

/* ===================================
   Welcome Prompt Modal
   =================================== */

/* Welcome Prompt Modal */
.welcome-prompt-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    background: rgba(0, 0, 0, 0.95);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 999999;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    /* iOS Safari fix */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* Ensure it covers everything */
    isolation: isolate;
}

.welcome-prompt-overlay.hidden {
    display: none !important;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.welcome-prompt-modal {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 40px;
    max-width: 700px;
    width: 100%;
    box-sizing: border-box;
    border: 2px solid #f4a21f;
    box-shadow: 0 20px 60px rgba(244, 162, 31, 0.3);
    -webkit-animation: modalSlideIn 0.5s ease;
    animation: modalSlideIn 0.5s ease;
}

@-webkit-keyframes modalSlideIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.welcome-prompt-icon {
    text-align: center;
    margin-bottom: 20px;
}

.welcome-prompt-icon i {
    font-size: 60px;
    color: #f4a21f;
    -webkit-animation: iconPulse 2s ease infinite;
    animation: iconPulse 2s ease infinite;
}

@-webkit-keyframes iconPulse {
    0%, 100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
}

@keyframes iconPulse {
    0%, 100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
}

.welcome-prompt-modal h2 {
    color: #fff;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.welcome-prompt-modal h2 span {
    color: #f4a21f;
}

.welcome-prompt-content {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

.welcome-prompt-content p {
    margin-bottom: 15px;
}

.welcome-prompt-content strong {
    color: #f4a21f;
    font-weight: 600;
}

.welcome-prompt-content a {
    color: #f4a21f;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.welcome-prompt-content a:hover {
    border-bottom-color: #f4a21f;
}

.welcome-prompt-buttons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
}

.btn-confirm-proceed {
    background: linear-gradient(135deg, #f4a21f 0%, #e59400 100%);
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(244, 162, 31, 0.4);
}

.btn-confirm-proceed:hover {
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(244, 162, 31, 0.6);
}

.btn-confirm-proceed:active {
    -webkit-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .welcome-prompt-modal {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .welcome-prompt-modal h2 {
        font-size: 1.5rem;
    }
    
    .welcome-prompt-icon i {
        font-size: 50px;
    }
    
    .welcome-prompt-content {
        font-size: 0.95rem;
        max-height: 300px;
    }
    
    .btn-confirm-proceed {
        padding: 12px 30px;
        font-size: 1rem;
    }
}
