/* --- Variables --- */
:root {
    --color-bg: #1a1a1d;        /* Dark Stone */
    --color-panel: #2d2d30;
    --color-red: #ff3b30;       /* Adrenaline Red */
    --color-red-dark: #cc0000;
    --color-white: #ffffff;
    --color-grey: #95a5a6;
    --font-head: 'Kanit', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-white);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; filter: grayscale(30%) contrast(1.2); }

/* --- Header --- */
.x-header {
    background: rgba(26, 26, 29, 0.95);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--color-red);
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }

.logo {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--color-white);
    font-style: italic;
}

.x-red { color: var(--color-red); }

.main-nav { display: flex; gap: 30px; align-items: center; }
.main-nav a { font-family: var(--font-head); font-weight: 600; text-transform: uppercase; font-size: 1rem; color: #ccc; }
.main-nav a:hover, .main-nav a.active { color: var(--color-red); }

.btn-action {
    background: var(--color-red);
    color: #fff !important;
    padding: 8px 25px;
    transform: skew(-10deg);
    display: inline-block;
}
.btn-action:hover { background: var(--color-white); color: var(--color-red) !important; }

.menu-trigger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 6px; }
.bar { width: 30px; height: 3px; background-color: var(--color-white); }

/* --- Mobile Menu --- */
.mobile-overlay {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100%;
    background: var(--color-bg); z-index: 2000;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 30px; transition: 0.4s ease-in-out;
}
.mobile-overlay.active { right: 0; }
.close-menu { position: absolute; top: 20px; right: 20px; font-size: 2rem; background: none; border: none; color: var(--color-white); cursor: pointer; }
.mobile-overlay a { font-family: var(--font-head); font-size: 2rem; text-transform: uppercase; font-weight: 800; }

/* --- Hero --- */
.hero { position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    z-index: -2;
}
.glitch-layer {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0,0,0,0.3) 10px, rgba(0,0,0,0.3) 20px);
    z-index: -1;
}

.hero-content { z-index: 1; }
.sub-head { color: var(--color-red); font-family: var(--font-head); font-weight: 800; letter-spacing: 4px; display: block; margin-bottom: 10px; font-size: 1.2rem; }
.hero h1 { font-family: var(--font-head); font-size: 5rem; line-height: 0.9; margin-bottom: 20px; font-style: italic; text-transform: uppercase; }
.outline-text { -webkit-text-stroke: 2px var(--color-white); color: transparent; }
.hero p { font-size: 1.2rem; color: #ddd; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }

.cta-group { display: flex; gap: 20px; justify-content: center; }
.btn { padding: 15px 40px; font-family: var(--font-head); font-weight: 800; text-transform: uppercase; border: none; cursor: pointer; transform: skew(-10deg); transition: 0.3s; font-size: 1rem; }
.btn-red { background: var(--color-red); color: #fff; }
.btn-red:hover { background: #fff; color: var(--color-bg); }
.btn-transparent { border: 2px solid #fff; background: transparent; color: #fff; }
.btn-transparent:hover { border-color: var(--color-red); color: var(--color-red); }

/* --- Sections --- */
.section-pad { padding: 100px 0; }
.section-header, .page-head { margin-bottom: 60px; text-align: left; border-left: 5px solid var(--color-red); padding-left: 20px; }
.section-header h2, .page-head h1 { font-family: var(--font-head); font-size: 3rem; font-style: italic; text-transform: uppercase; margin: 0; line-height: 1; }
.page-head p { color: var(--color-grey); font-size: 1.2rem; margin-top: 5px; }

/* --- Grid --- */
.activity-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.act-card { background: var(--color-panel); overflow: hidden; position: relative; transition: 0.3s; border-bottom: 4px solid transparent; }
.act-card:hover { transform: translateY(-10px); border-bottom-color: var(--color-red); }
.card-img { position: relative; height: 300px; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.overlay-red { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--color-red); opacity: 0; transition: 0.3s; mix-blend-mode: multiply; }
.act-card:hover .overlay-red { opacity: 0.6; }
.icon-box { position: absolute; bottom: 20px; right: 20px; font-size: 3rem; z-index: 2; text-shadow: 2px 2px 0 #000; }

.act-card h3 { padding: 20px 20px 5px; font-family: var(--font-head); font-size: 1.5rem; text-transform: uppercase; }
.act-card p { padding: 0 20px 20px; color: #aaa; font-size: 0.9rem; }
.link-x { display: block; padding: 15px 20px; background: #222; color: var(--color-red); font-weight: bold; text-transform: uppercase; font-family: var(--font-head); font-size: 0.9rem; letter-spacing: 1px; }
.link-x:hover { color: #fff; }

/* --- Ticker --- */
.ticker-wrap { background: var(--color-red); overflow: hidden; padding: 10px 0; color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; transform: rotate(-2deg); margin: 50px 0; width: 105%; margin-left: -2.5%; box-shadow: 0 0 15px rgba(0,0,0,0.5); }
.ticker { white-space: nowrap; animation: tick 20s linear infinite; }
@keyframes tick { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- About Split --- */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.text-block h2 { font-family: var(--font-head); font-size: 2rem; color: var(--color-red); margin-bottom: 20px; font-style: italic; }
.stats-list { display: flex; gap: 30px; margin-top: 30px; border-top: 1px solid #444; padding-top: 20px; }
.num { display: block; font-family: var(--font-head); font-size: 2.5rem; font-weight: 800; color: var(--color-white); line-height: 1; }
.lbl { font-size: 0.8rem; color: var(--color-grey); text-transform: uppercase; letter-spacing: 1px; }
.img-block { position: relative; }
.img-block img { border: 5px solid #fff; transform: rotate(3deg); }
.img-badge { position: absolute; bottom: -20px; left: -20px; background: var(--color-red); padding: 10px 20px; font-weight: bold; font-family: var(--font-head); font-size: 1.2rem; transform: rotate(-5deg); box-shadow: 5px 5px 0 #000; }

/* --- Testimonials --- */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 30px; }
.story-card { background: var(--color-panel); padding: 30px; border-left: 5px solid var(--color-red); position: relative; }
.card-header { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.icon-sport { font-size: 2rem; }
.story-card h3 { font-family: var(--font-head); text-transform: uppercase; font-size: 1.2rem; margin: 0; }
.story-card p { font-style: italic; color: #ccc; margin-bottom: 20px; }
.author strong { display: block; color: var(--color-red); font-family: var(--font-head); }

/* --- Contact --- */
.contact-wrap { display: grid; grid-template-columns: 1fr 2fr; gap: 50px; }
.contact-info { background: var(--color-panel); padding: 30px; height: fit-content; }
.contact-info h3 { font-family: var(--font-head); font-size: 1.5rem; border-bottom: 2px solid var(--color-red); padding-bottom: 10px; margin-bottom: 20px; }
.info-row { margin-bottom: 15px; font-family: var(--font-head); letter-spacing: 1px; }
.label { color: var(--color-grey); display: block; font-size: 0.8rem; }
.val { font-size: 1.1rem; }
.map-ph { height: 150px; background: #111; display: flex; align-items: center; justify-content: center; border: 1px dashed #444; margin-top: 20px; color: #555; }

.x-form .form-group { margin-bottom: 25px; }
.x-form label { display: block; font-family: var(--font-head); color: var(--color-red); font-size: 0.9rem; margin-bottom: 5px; }
.x-form input, .x-form select, .x-form textarea { width: 100%; background: transparent; border: none; border-bottom: 2px solid #444; color: #fff; padding: 10px 0; font-family: var(--font-body); font-size: 1.1rem; }
.x-form input:focus { border-color: var(--color-red); outline: none; }
.btn-full { width: 100%; background: var(--color-red); color: #fff; padding: 15px; font-weight: bold; font-family: var(--font-head); font-size: 1.2rem; cursor: pointer; border: none; transform: skew(-5deg); transition: 0.3s; }
.btn-full:hover { background: #fff; color: var(--color-bg); }

/* --- Legal --- */
.doc-box { max-width: 800px; margin: 0 auto; background: var(--color-panel); padding: 50px; border: 1px solid #333; }
.doc-box h1 { font-family: var(--font-head); color: #fff; }
.red-line { height: 3px; background: var(--color-red); width: 50px; margin: 20px 0; }
.doc-box h3 { color: var(--color-red); margin-top: 30px; font-family: var(--font-head); }

/* --- Footer --- */
.main-footer { background: #000; padding: 50px 0 20px; margin-top: auto; border-top: 1px solid #333; }
.footer-flex { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.footer-brand h4 { font-family: var(--font-head); font-size: 1.8rem; font-style: italic; }
.footer-contact a { color: var(--color-red); font-weight: bold; }
.copyright { text-align: center; color: #555; font-size: 0.8rem; font-family: var(--font-head); }

@media (max-width: 992px) {
    .main-nav { display: none; }
    .menu-trigger { display: flex; }
    .hero h1 { font-size: 3rem; }
    .split-layout, .contact-wrap { grid-template-columns: 1fr; }
    .footer-flex { flex-direction: column; text-align: center; gap: 20px; }
}