@font-face {
    font-family: 'Serpentine D';
    src: url('Serpentine-D-Bold-Italic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --key-green: #C7FF00;
    --dark-bg: #0a0a0a;
    --card-bg: #171717;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* ========== ANIMATED BACKGROUND ========== */
.bg-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-glow::before {
    content: '';
    position: absolute;
    top: -30vmax;
    left: -30vmax;
    width: 100vmax;
    height: 100vmax;
    background: radial-gradient(circle, rgba(199, 255, 0, 0.02) 0%, transparent 60%);
    animation: floatGlow 12s ease-in-out infinite;
}

.bg-glow::after {
    content: '';
    position: absolute;
    bottom: -30vmax;
    right: -30vmax;
    width: 80vmax;
    height: 80vmax;
    background: radial-gradient(circle, rgba(199, 255, 0, 0.01) 0%, transparent 60%);
    animation: floatGlow 15s ease-in-out infinite reverse;
}

@keyframes floatGlow {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(30px, -20px);
    }

    66% {
        transform: translate(-20px, 15px);
    }
}

/* ========== PARTICLES ========== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--key-green);
    border-radius: 50%;
    opacity: 0;
    animation: particleFade 4s ease-in-out infinite;
}

@keyframes particleFade {

    0%,
    100% {
        opacity: 0;
        transform: translateY(0);
    }

    50% {
        opacity: 0.6;
        transform: translateY(-30px);
    }
}

/* ========== MAIN CONTENT ========== */
.main-container {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem 1rem;
    text-align: center;
}

/* ========== BRAND ========== */
.brand-logo {
    width: 360px;
    max-width: 80%;
    height: auto;
    margin-top: 0;
    margin-bottom: 0rem;
    animation: fadeInDown 1s ease-out 0.1s both;
    filter: drop-shadow(0 0 15px rgba(199, 255, 0, 0.15));
}

.brand-name {
    font-family: 'Serpentine D', sans-serif;
    font-weight: bold;
    font-style: italic;
    font-size: 3.5rem;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 0;
    line-height: 1;
    animation: fadeInDown 1s ease-out 0.2s both;
}

.brand-name sup {
    font-size: 1rem;
    vertical-align: super;
    font-style: normal;
    font-weight: normal;
}

.brand-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease-out 0.3s both;
}

/* ========== CONSTRUCTION BADGE ========== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(199, 255, 0, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(199, 255, 0, 0.3);
    color: var(--key-green);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out 0.4s both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--key-green);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

/* ========== HEADING ========== */
.heading {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.heading .accent {
    background: linear-gradient(to right, var(--key-green), #bbf7d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    color: var(--gray-400);
    font-size: 1.25rem;
    max-width: 700px;
    line-height: 1.8;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* ========== INFO CARDS ========== */
.info-cards {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.info-card {
    background: var(--card-bg);
    border: 1px solid var(--gray-800);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    min-width: 260px;
}

.info-card:hover {
    border-color: var(--key-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(199, 255, 0, 0.08);
}

.info-card-icon {
    width: 48px;
    height: 48px;
    background: var(--gray-800);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.info-card:hover .info-card-icon {
    background: var(--key-green);
}

.info-card-content {
    text-align: left;
}

.info-card-label {
    font-size: 0.75rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.2rem;
}

.info-card-value {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

/* ========== CTA BUTTONS ========== */
.cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--key-green);
    color: #000;
    box-shadow: 0 0 25px rgba(199, 255, 0, 0.25);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(199, 255, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid var(--gray-600);
}

.btn-secondary:hover {
    border-color: var(--key-green);
    color: var(--key-green);
}

/* ========== SOCIAL LINKS ========== */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    animation: fadeInUp 1s ease-out 1.4s both;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(23, 23, 23, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    color: #fff;
}

.social-link:hover {
    border-color: var(--key-green);
    background: rgba(199, 255, 0, 0.1);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    transition: fill 0.3s ease;
}

.social-link:hover svg {
    fill: var(--key-green);
}

/* ========== GIVEAWAY BANNER ========== */
.giveaway-banner {
    position: relative;
    max-width: 800px;
    width: 100%;
    margin: 0 auto 3rem;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(23, 23, 23, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.9s both;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.giveaway-banner:hover {
    transform: translateY(-4px);
    border-color: rgba(199, 255, 0, 0.3);
}

.giveaway-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 100% 0%, rgba(199, 255, 0, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.giveaway-content-wrapper {
    position: relative;
    z-index: 1;
    padding: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.giveaway-text {
    flex: 1;
    min-width: 280px;
    text-align: left;
}

.giveaway-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--dark-bg);
    background: var(--key-green);
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.giveaway-text h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.giveaway-text h3 .accent {
    color: var(--key-green);
}

.giveaway-text p {
    font-size: 1rem;
    color: var(--gray-400);
    line-height: 1.5;
    margin: 0;
}

.btn-giveaway {
    background: transparent;
    color: #fff;
    border: 2px solid var(--key-green);
    padding: 0.8rem 1.6rem;
    border-radius: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-giveaway:hover {
    background: var(--key-green);
    color: #000;
    box-shadow: 0 0 20px rgba(199, 255, 0, 0.3);
}

.btn-giveaway svg {
    transition: color 0.3s ease;
}

.btn-giveaway:hover svg {
    color: #000;
}

/* ========== FOOTER ========== */
.footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 1.5rem;
    border-top: 1px solid var(--gray-800);
    color: var(--gray-400);
    font-size: 0.85rem;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== MAP SECTION ========== */
.map-section {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 2rem;
    animation: fadeInUp 1s ease-out 1.1s both;
}

.map-card {
    background: rgba(23, 23, 23, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.map-card:hover {
    border-color: var(--key-green);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(199, 255, 0, 0.1);
}

.map-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--gray-800);
}

.map-card-header-icon {
    font-size: 1.2rem;
}

.map-card-header-text {
    text-align: left;
}

.map-card-header-label {
    font-size: 0.7rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.map-card-header-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
}

.map-card iframe {
    width: 100%;
    height: 280px;
    border: none;
    display: block;
}

/* ========== CONSTRUCTION LINE ANIMATION ========== */
.construction-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--key-green), transparent);
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.construction-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: slideLine 3s ease-in-out infinite;
}

@keyframes slideLine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* ========== MAP PLACEHOLDER ========== */
.map-placeholder {
    width: 100%;
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(23, 23, 23, 0.4);
    padding: 2rem;
    gap: 1rem;
}

.map-placeholder p {
    color: var(--gray-400);
    font-size: 0.95rem;
    max-width: 300px;
    margin: 0;
}

.btn-sm {
    padding: 0.6rem 1.2rem !important;
    font-size: 0.85rem !important;
}

/* ========== REACT PORTED COOKIE BANNER ========== */
.cookie-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 998;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.react-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transition: all 0.5s ease;
    transform: translateY(100%);
    opacity: 0;
}

.react-cookie-banner.rcb-visible {
    transform: translateY(0);
    opacity: 1;
}

.rcb-container {
    max-width: 64rem;
    margin: 0 auto;
    padding: 1rem;
}

.rcb-card {
    background: #171717;
    border: 1px solid #1f2937;
    border-radius: 1rem;
    box-shadow: 0 -4px 40px rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
}

.rcb-main-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rcb-flex-1 {
    flex: 1;
}

.rcb-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.rcb-icon {
    font-size: 1.5rem;
}

.rcb-header h3 {
    color: #fff;
    font-weight: 700;
    font-size: 1.125rem;
}

.rcb-text {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.625;
    margin: 0;
}

.rcb-link {
    color: #C7FF00;
    text-decoration: none;
}

.rcb-link:hover {
    text-decoration: underline;
}

.rcb-actions-main {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    flex-shrink: 0;
}

.rcb-btn {
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    font-family: inherit;
}

.rcb-btn-outline {
    background: transparent;
    border: 1px solid #374151;
    color: #d1d5db;
}

.rcb-btn-outline:hover {
    border-color: #6b7280;
    color: #fff;
}

.rcb-btn-primary {
    background: #C7FF00;
    color: #000;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(199, 255, 0, 0.3);
}

.rcb-btn-primary:hover {
    transform: scale(1.05);
}

.rcb-config-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.rcb-btn-text {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    transition: color 0.3s;
    font-size: 1rem;
    padding: 0;
}

.rcb-btn-text:hover {
    color: #fff;
}

.rcb-config-header h3 {
    color: #fff;
    font-weight: 700;
    font-size: 1.125rem;
}

.rcb-toggles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.rcb-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(31, 41, 55, 0.3);
    border: 1px solid #1f2937;
    border-radius: 0.75rem;
}

.rcb-toggle-info {
    flex: 1;
    margin-right: 1rem;
    text-align: left;
}

.rcb-toggle-title {
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.rcb-toggle-desc {
    color: #6b7280;
    font-size: 0.75rem;
    margin: 0;
}

.rcb-switch {
    width: 3rem;
    height: 1.75rem;
    border-radius: 9999px;
    background: #374151;
    display: flex;
    align-items: center;
    padding: 0 0.25rem;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s;
    justify-content: flex-start;
}

.rcb-switch-on {
    background: #C7FF00;
    justify-content: flex-end;
}

.rcb-switch-disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.rcb-switch-knob {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 9999px;
    background: #9ca3af;
    transition: background-color 0.2s;
}

.rcb-knob-on {
    background: #000;
}

.rcb-actions-config {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rcb-actions-config .rcb-btn-outline:hover {
    border-color: #C7FF00;
    color: #C7FF00;
}

@media (min-width: 640px) {
    .rcb-actions-main {
        flex-direction: row;
    }

    .order-3-sm-1 {
        order: 1;
    }

    .order-1-sm-3 {
        order: 3;
    }

    .rcb-actions-config {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .rcb-main-content {
        flex-direction: row;
        align-items: center;
    }

    .rcb-actions-main {
        width: auto;
    }

    .rcb-card {
        padding: 2rem;
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .brand-name {
        font-size: 2.5rem;
    }

    .brand-subtitle {
        font-size: 0.85rem;
        letter-spacing: 0.25em;
    }

    .heading {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .giveaway-content-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .giveaway-text {
        text-align: center;
    }

    .btn-giveaway {
        width: 100%;
        justify-content: center;
    }

    .info-cards {
        flex-direction: column;
        align-items: center;
    }

    .info-card {
        min-width: auto;
        width: 100%;
        max-width: 340px;
    }

    .cta-group {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .map-card iframe,
    .map-placeholder {
        height: 220px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .heading {
        font-size: 2.2rem;
    }
}