/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #f5f5f5;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #fff;
    padding: 15px 0;
    position: static;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo img {
    height: 50px;
}

.event-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.date {
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

.location {
    font-size: 12px;
    color: #666;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #000;
    font-weight: 900;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #ff9500;
}

.btn-tickets {
    background-color: #ff9500;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-tickets:hover {
    background-color: #e68600;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 200px;
    background-image: url('assets2/18.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    letter-spacing: 4px;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.8);
}

/* Tickets Pricing Section with Dragons */
.tickets-pricing-section {
    position: relative;
    background-color: #f5f0e8;
    padding: 60px 0;
    overflow: hidden;
}

.dragons-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.dragon-left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 600px;
    background-image: url('assets2/1.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    opacity: 0.15;
}

.dragon-right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) scaleX(-1);
    width: 400px;
    height: 600px;
    background-image: url('assets2/1.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    opacity: 0.15;
}

.tickets-pricing-section .container {
    position: relative;
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.pricing-title {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.pricing-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.pricing-price {
    margin-bottom: 20px;
    text-align: center;
}

.price-old {
    font-size: 28px;
    font-weight: bold;
    color: #000000;
    text-decoration: line-through;
    display: inline-block;
    margin-right: 15px;
}

.price {
    font-size: 38px;
    font-weight: bold;
    color: #ff9500;
    display: inline-block;
    vertical-align: middle;
}

.discount-badge {
    display: block;
    font-size: 13px;
    font-weight: bold;
    color: #000000;
    margin-top: 8px;
    letter-spacing: 1px;
}

.door-price {
    font-size: 13px;
    color: #666;
}

.btn-buy {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 12px;
    transition: transform 0.3s;
}

.btn-buy:hover {
    transform: scale(1.02);
}

.btn-buy.black {
    background-color: #000;
    color: #fff;
}

.btn-buy.orange {
    background-color: #ff9500;
    color: #fff;
}

/* Promo Code Container */
.promo-code-container {
    margin-top: 12px;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.promo-code-wrapper {
    display: flex;
    gap: 8px;
    align-items: stretch;
}

.promo-code-wrapper input[type="text"],
.promo-code-wrapper input {
    flex: 1;
}

.promo-code-wrapper button[type="button"],
.promo-code-wrapper button {
    flex-shrink: 0;
}

.promo-code-container .promo-code-input,
.promo-code-container input[type="text"],
.promo-code-wrapper input[type="text"],
input.promo-code-input {
    flex: 1 !important;
    padding: 11px 14px !important;
    border: 1px solid #ddd !important;
    border-radius: 5px !important;
    font-size: 13px !important;
    font-family: inherit !important;
    background-color: #fafafa !important;
    transition: all 0.3s !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    width: auto !important;
    box-sizing: border-box !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    margin: 0 !important;
}

.promo-code-container .promo-code-input::placeholder,
input.promo-code-input::placeholder {
    text-transform: none !important;
    color: #999 !important;
    letter-spacing: normal !important;
}

.promo-code-container .promo-code-input:focus,
input.promo-code-input:focus {
    outline: none !important;
    border-color: #ff9500 !important;
    background-color: #fff !important;
    box-shadow: 0 0 0 2px rgba(255, 149, 0, 0.1) !important;
}

.promo-code-container .btn-apply-promo,
.promo-code-container button[type="button"],
.promo-code-wrapper button[type="button"],
button.btn-apply-promo {
    padding: 11px 20px !important;
    background-color: #000 !important;
    background: #000 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 5px !important;
    font-size: 13px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    white-space: nowrap !important;
    letter-spacing: 0.5px !important;
    min-width: 70px !important;
    box-sizing: border-box !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    margin: 0 !important;
    line-height: normal !important;
}

.promo-code-container .btn-apply-promo:hover,
button.btn-apply-promo:hover {
    background-color: #333 !important;
}

.promo-code-container .btn-apply-promo:active,
button.btn-apply-promo:active {
    transform: scale(0.98) !important;
}

.promo-message {
    font-size: 12px;
    text-align: left;
    margin-top: 0;
    min-height: 16px;
    line-height: 1.4;
    padding-left: 2px;
}

.promo-message.success {
    color: #28a745;
    font-weight: 500;
    display: block;
}

.promo-message.error {
    color: #dc3545;
    font-weight: 500;
    display: block;
}

.promo-message.info {
    color: #ff9500;
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    margin-top: 20px;
}

.pricing-features li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.btc-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: inline-block;
    background-image: url('assets2/16.ico');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s;
}

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

.close {
    color: #aaa;
    float: right;
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover,
.close:focus {
    color: #000;
}

.modal-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    color: #000;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff9500;
}

.form-group input::placeholder {
    color: #999;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #ff9500;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #e68600;
    transform: scale(1.02);
}

.btn-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Redeem Code Modal */
.redeem-modal-content {
    max-width: 700px;
    padding: 0;
}

.modal-header {
    padding: 30px 40px 20px;
    border-bottom: 1px solid #e0e0e0;
}

.back-btn {
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.back-btn:hover {
    color: #ff9500;
}

.modal-title-event {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}

.modal-event-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.breadcrumb-item {
    color: #999;
}

.breadcrumb-item.completed {
    color: #999;
}

.breadcrumb-item.active {
    color: #333;
    font-weight: 600;
}

.breadcrumb-separator {
    color: #999;
}

.redeem-content {
    padding: 40px;
    text-align: center;
}

.thank-you-title {
    font-size: 32px;
    font-weight: bold;
    color: #ff9500;
    margin-bottom: 20px;
}

.thank-you-text {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: left;
}

.redeem-content .form-group {
    text-align: left;
    margin-bottom: 30px;
}

.redeem-content .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.redeem-content .form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s;
    font-family: inherit;
}

.redeem-content .form-group input:focus {
    outline: none;
    border-color: #ff9500;
}

.btn-continue {
    width: 100%;
    padding: 15px;
    background-color: #ff9500;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-continue:hover {
    background-color: #e68600;
    transform: scale(1.02);
}

/* Footer */
.footer {
    background-color: #000;
    color: #fff;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 25px;
    letter-spacing: 1px;
    border-top: 1px solid #fff;
    padding-top: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul li strong {
    display: block;
    font-size: 12px;
    margin-bottom: 5px;
    font-weight: 600;
}

.footer-column a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #ff9500;
}

.footer-brand .footer-logo {
    height: 60px;
    margin-bottom: 30px;
}

.footer-location {
    margin-bottom: 30px;
}

.footer-location h4 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.footer-location p {
    font-size: 14px;
    line-height: 1.6;
    margin: 5px 0;
}

.footer-legal {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
}

.footer-legal a {
    display: block;
    font-size: 13px;
    font-style: italic;
    margin-bottom: 8px;
    color: #999;
}

.footer-legal a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: #fff;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    color: #ff9500;
    transform: scale(1.2);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-title {
        font-size: 45px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .dragon-left,
    .dragon-right {
        width: 300px;
        height: 450px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        height: 250px;
    }

    .hero-title {
        font-size: 32px;
    }

    .pricing-card {
        padding: 25px 20px;
    }

    .pricing-title {
        font-size: 22px;
    }

    .price-old {
        font-size: 22px;
        margin-right: 10px;
    }

    .price {
        font-size: 32px;
    }

    .discount-badge {
        font-size: 11px;
    }

    .dragon-left,
    .dragon-right {
        opacity: 0.08;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-column h3 {
        margin-top: 20px;
    }

    .modal-content {
        width: 95%;
        padding: 30px 20px;
        margin: 10% auto;
    }

    .modal-title {
        font-size: 24px;
    }

    .form-group input,
    .form-group select {
        padding: 10px;
    }

    .redeem-modal-content {
        max-width: 95%;
    }

    .modal-header {
        padding: 20px;
    }

    .redeem-content {
        padding: 30px 20px;
    }

    .thank-you-title {
        font-size: 28px;
    }

    .modal-title-event {
        font-size: 20px;
    }

    .promo-code-wrapper {
        flex-direction: column;
    }

    .btn-apply-promo {
        width: 100%;
    }
}

