:root {
    --primary-black: #000000;
    --secondary-black: #0a0a0a;
    --card-bg: #1a1a1a;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --gold: #e2c17c;
    --gold-hover: #f0d59e;
    --accent-purple: #2a0f3d;
}

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

body {
    font-family: PingFang SC, 'Noto Sans SC', sans-serif;
    background-color: var(--primary-black);
    color: var(--text-white);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 12px 110px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-gold {
    background: linear-gradient(to bottom, #fceeb5, #d4af37);
    color: #000;
    border: none;
}

.btn-gold:hover {
    filter: brightness(1.1);
}

.btn-gold-outline {
    border: none;
    color: var(--primary-black);
    background: linear-gradient(45deg, #f3d28b, #ccad6d);
    border-radius: 100px;
    padding: 10px 30px;
}

.btn-gold-outline:hover {
    background: linear-gradient(45deg, #fceeb5, #d4af37);
    color: var(--secondary-black);
}

/* Header */
.header {
    background-color: rgba(0, 0, 0, 0.9);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid #222;
}

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

.logo img {
    height: 58px;
    width: auto;
}

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

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 18px;
    color: var(--text-gray);
}

.nav-link:hover,
.nav-link.active {
    color: #f1d898;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid var(--gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-selector {
    font-size: 14px;
    color: var(--text-gray);
    cursor: pointer;
    background: #222;
    padding: 5px 10px;
    border-radius: 4px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0 0;
    background: radial-gradient(circle at 70% 50%, #1f0b2e 0%, #000 60%);
    overflow: hidden;
    min-height: 650px;
    background: url(../assets/bg.png) no-repeat center center/cover;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.hero-content {
    flex: 1;
    z-index: 2;
    padding-bottom: 80px;
}

.hero-title {
    font-size: 54px;
    line-height: 1.5;
    margin-bottom: 110px;
    color: var(--gold);
    background: linear-gradient(to right, #fceeb5, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Ticker */
.ticker-bar {
    background-color: #1a1a1a;
    color: rgb(241, 216, 152);
    font-size: 14px;
    font-weight: 500;
    padding-top: 5px;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

/* Activity Zone */
.activity-section {
    padding: 40px 0;
    background-color: var(--primary-black);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    border-bottom: 1px solid #222;
    padding-bottom: 10px;
}

.section-title {
    font-size: 30px;
    font-weight: bold;
}

.more-link {
    font-size: 16px;
    color: var(--text-gray);
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.activity-card {
    background-color: #151515;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s;
}

.activity-card:hover {
    transform: translateY(-5px);
}

.card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-title {
    font-size: 16px;
    margin-bottom: 10px;
    color: #eee;
}

.card-desc {
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    font-size: 16px;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* App Showcase */
.app-showcase {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(to bottom, #000 0%, #111 50%, #000 100%);
}

.showcase-title {
    font-size: 32px;
    margin-bottom: 15px;
    color: #fff;
}

.showcase-desc {
    color: var(--gold-hover);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.phones-image img {
    max-width: 100%;
    height: auto;
    max-height: auto;
}

/* Footer */
.footer {
    background-color: #000;
    padding: 40px 0;
    font-size: 14px;
    color: #888;
}

.partners-strip {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    color: #666;
}

.partner-logo {
    font-weight: bold;
    font-family: inherit;
    text-transform: uppercase;
    font-size: 16px;
    color: #ccc;
}

.footer-divider {
    border: none;
    border-top: 1px solid #222;
    margin-bottom: 40px;
}

.footer-links {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.footer-col h4 {
    color: #eee;
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: var(--gold);
}

.cert-logo {
    margin-bottom: 20px;
    font-size: 10px;
    line-height: 1.2;
    color: white;
}

.footer-bottom {
    margin-top: 40px;
    text-align: right;
    font-size: 12px;
}

/* Floating Chat */
.floating-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    z-index: 999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 10px 20px;
    }

    .logo img {
        height: 48px;
    }

    .nav-menu {
        display: none;
        /* Hide nav links on mobile by default */
        position: absolute;
        top: 89px;
        /* Approximate header height */
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 20px;
        text-align: center;
        gap: 20px;
        border-bottom: 1px solid #333;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-link {
        display: block;
        padding: 10px 0;
        font-size: 16px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .lang-selector {
        display: none;
    }

    .hero {
        padding-top: 20px;
        min-height: 240px;
        background: url(../assets/mbg.png) no-repeat top center;
        background-size: 100% auto;
    }

    .hero-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .btn {
        width: auto;
        padding: 10px 35px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .activity-grid {
        grid-template-columns: 1fr;
        /* Stack cards */
    }

    .footer-links {
        grid-template-columns: 1fr;
        /* Single column on mobile */
        gap: 30px;
        text-align: center;
    }

    .brand-col {
        grid-column: span 1;
        text-align: center;
        margin-bottom: 20px;
    }

    .app-showcase {
        padding: 40px 0;
    }

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

/* Tour Events Page */
.tour-hero {
    padding: 60px 0;
    background: url(../assets/activity-banner.jpg) no-repeat center center/cover;
    text-align: center;
    border-bottom: 1px solid #333;
}

.tour-page-title {
    font-size: 40px;
    color: var(--gold);
    background: linear-gradient(to right, #fceeb5, #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.tour-list-section {
    padding: 40px 0;
    background-color: var(--primary-black);
}

.tour-events-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tour-event-card {
    display: flex;
    background-color: #1a1a1a;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s;
    border: 1px solid #333;
}

.tour-event-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.tour-card-image {
    width: 40%;
    position: relative;
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tour-card-content {
    width: 60%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tour-card-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
}

.tour-card-desc {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 20px;
    line-height: 1.6;
}

.tour-card-meta {
    font-size: 14px;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Tour Page Responsive */
@media (max-width: 768px) {
    .tour-hero {
        padding: 40px 0;
    }

    .tour-page-title {
        font-size: 28px;
    }

    .tour-event-card {
        flex-direction: column;
    }

    .tour-card-image {
        width: 100%;
        height: 200px;
        /* Fixed height for mobile image */
    }

    .tour-card-content {
        width: 100%;
        padding: 20px;
    }

    .tour-card-title {
        font-size: 18px;
    }
}

/* Event Detail Page */
.event-detail-section {
    padding: 60px 0;
    min-height: 80vh;
}

.event-detail-title {
    font-size: 32px;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
}

.event-detail-meta {
    font-size: 16px;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}

.event-detail-content {
    color: #ccc;
    font-size: 14px;
    line-height: 1.8;
}

.event-detail-content p {
    margin-bottom: 30px;
}

.event-image-container {
    padding-top: 20px;
    text-align: center;
}

.event-image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .event-detail-section {
        padding: 40px 0;
    }

    .event-detail-title {
        font-size: 24px;
    }

    .event-detail-meta {
        margin-bottom: 30px;
    }
}