@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue.ttc') format('truetype-collection');
}

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    /* Replace with your Figma font */
}

body {
    background: radial-gradient(circle, #444 0%, #1a1a1a 100%);
    color: white;
    min-height: 100vh;
}

header {
    width: 100%;
}

nav,
main,
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Marquee Effect */
.marquee {
    background: black;
    color: #edff00;
    padding: 10px 0;
    width: 100%;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    width: fit-content;
    animation: marquee 15s linear infinite;
    font-family: "Helvetica Neue";
    font-size: 2.375rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.marquee-content span {
    flex-shrink: 0;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Hero Section */
.hero-banner {
    background-color: #edff00;
    width: 100%;
    text-align: center;
}

.hero-banner img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 30px 0;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #EDFF00;
    font-family: "Helvetica Neue";
    font-size: 1.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.active a {
    font-weight: 700;
    text-decoration: underline;
}

.dot {
    color: #EDFF00;
    font-size: 1.75rem;
}

/* Location Card */
.location-card {
    text-align: center;
}

.location-card h2 {
    color: #EDFF00;
    text-align: center;
    font-family: "Helvetica Neue";
    font-size: 1.75rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.location-card iframe {
    border-radius: 12px;
    max-width: 100%;
}

/* Payment Card */
.payment-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px;
    width: 500px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.payment-card h2 {
    color: #edff00;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pay-btn {
    background: #333;
    border: none;
    color: #F5F5F5;
    padding: 12px 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    font-family: "Helvetica Neue";
    font-size: 1.75rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    transition: background 0.3s;
}

.pay-btn span {
    flex: 1;
    text-align: right;
}

.pay-btn img {
    height: 24px;
    width: 40px;
    object-fit: contain;
}

.pay-btn img[alt="Paybox"] {
    height: 32px;
}

a.pay-btn {
    text-decoration: none;
}

.pay-btn:hover {
    background: #444;
}

/* Footer */
footer {
    margin-top: auto;
    padding: 40px 0;
    font-size: 0.8rem;
    color: #888;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: #333;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    min-width: 300px;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    color: #888;
    cursor: pointer;
}

.modal-close:hover {
    color: #fff;
}

.modal h2 {
    color: #EDFF00;
    font-family: "Helvetica Neue";
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.modal input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    margin-bottom: 15px;
    text-align: right;
    direction: rtl;
}

.modal button {
    background: #EDFF00;
    color: #000;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-family: "Helvetica Neue";
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.modal button:hover {
    background: #d4e600;
}

.modal .success-msg {
    color: #EDFF00;
    font-family: "Helvetica Neue";
    font-size: 1.25rem;
    font-weight: 700;
}

/* TBA */
.tba h2 {
    color: #EDFF00;
    font-family: "Helvetica Neue";
    font-size: 1.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .marquee-content {
        font-size: 1.25rem;
    }

    nav ul {
        gap: 10px;
        margin: 20px 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a {
        font-size: 1rem;
    }

    .dot {
        font-size: 1rem;
    }

    .payment-card {
        width: 90%;
        padding: 25px 20px;
    }

    .payment-card h2 {
        font-size: 1.25rem;
    }

    .pay-btn {
        font-size: 1rem;
        padding: 10px 15px;
    }

    .pay-btn img {
        height: 20px;
        width: 30px;
    }

    .pay-btn img[alt="Paybox"] {
        height: 26px;
    }

    .location-card {
        padding: 0 15px;
    }

    .location-card h2 {
        font-size: 1.25rem;
        padding: 0 10px;
    }

    .location-card iframe {
        width: 100%;
        height: 300px;
    }

    .modal-content {
        width: 90%;
        min-width: auto;
        padding: 30px 20px;
    }

    .modal h2 {
        font-size: 1.25rem;
    }

    footer {
        padding: 20px 0;
    }
}
