/*
 * CormackCoreWeb 2.0 - Custom Stylesheet
 * Author: Charlie - Cormack Advertising
 * Add your custom styles here
 */

/* ==========================================================================
   Base & Reset
   ========================================================================== */

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

html {
    overflow-x: hidden;
}

body {
    background-color: #000;
    color: #000;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.site-header {
    padding: 8px 0 5px 0;
    background: #000;
    position: relative;
    z-index: 1001;
    width: 100%;
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/ui/pattern.png');
    background-size: auto;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 0.2;
    pointer-events: none;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.main-navigation {
    flex: 1;
}

.main-navigation .nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation .nav-menu li {
    margin: 0;
    padding: 0;
}

.main-navigation .nav-menu li a {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.05em;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.main-navigation .nav-menu li a:hover {
    color: #FF3633;
}

/* Dropdown indicator - SVG arrow */
.main-navigation .nav-menu li.menu-item-has-children > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.main-navigation .nav-menu li.menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 13px;
    height: 9px;
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='9' viewBox='0 0 13 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.96878 7.30989L12.3088 2.00752C12.4324 1.88499 12.5005 1.72128 12.5005 1.54667C12.5005 1.37206 12.4324 1.20836 12.3088 1.08582L11.9156 0.695191C11.6595 0.441152 11.2429 0.441152 10.9873 0.695191L6.50293 5.14778L2.01366 0.690347C1.89 0.567808 1.72537 0.5 1.54951 0.5C1.37366 0.5 1.20878 0.567808 1.08512 0.690347L0.691953 1.08073C0.568294 1.20351 0.500244 1.36698 0.500244 1.54158C0.500244 1.71619 0.568294 1.8799 0.691953 2.00244L6.03683 7.30965C6.16073 7.43268 6.32634 7.5 6.50244 7.49976C6.67902 7.50024 6.84463 7.43268 6.96854 7.30965L6.96878 7.30989Z' fill='white' stroke='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    vertical-align: middle;
    transition: transform 0.3s ease;
    border: none;
}

.main-navigation .nav-menu li.menu-item-has-children:hover > a::after,
.main-navigation .nav-menu li.menu-item-has-children.submenu-open > a::after {
    transform: rotate(180deg);
}

/* Submenu styles - full width dropdown */
.main-navigation .nav-menu > li.menu-item-has-children {
    position: static;
}

.main-navigation .nav-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: #000;
    padding: 20px 0;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    justify-content: center;
    gap: 40px;
}

/* Show submenu on hover or when .submenu-open class is active (click toggle) */
.main-navigation .nav-menu li.menu-item-has-children:hover > .sub-menu,
.main-navigation .nav-menu li.menu-item-has-children.submenu-open > .sub-menu {
    display: flex;
}

.main-navigation .nav-menu .sub-menu li {
    padding: 0;
}

.main-navigation .nav-menu .sub-menu li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
    transition: opacity 0.3s ease;
}

.main-navigation .nav-menu .sub-menu li a::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url('../images/ui/ui_arrow.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.main-navigation .nav-menu .sub-menu li a:hover {
    color: #FF3633;
    background: transparent;
}

.site-logo {
    flex-shrink: 0;
}

.site-logo img {
    height: 30px;
    width: auto;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================================================
   Typography - Font Families
   ========================================================================== */

/* Headings - Roc Grotesk */
h1, h2 {
    font-family: "roc-grotesk", sans-serif;
    font-weight: 700;
    font-style: normal;
}

/* Subheadings & Body - Inter */
h3, h4, a, p {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

h3, h4 {
    font-weight: 600;
}

p {
    font-weight: 400;
}

a {
    font-weight: 500;
}

/* Brochure Banner Styles */
.brochure-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 12px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
}

.brochure-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.brochure-banner-label {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-right: 10px;
}

.brochure-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.brochure-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.brochure-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.brochure-link svg {
    flex-shrink: 0;
}

/* ==========================================================================
   Hero Video Section
   ========================================================================== */

/* Header ~40px, Scroller ~30px = ~70px total */
.cts-hero-video {
    position: relative;
    width: 100%;
    height: calc(100vh - 70px);
    min-height: 400px;
    overflow: hidden;
}

.cts-hero-video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cts-hero-video-player {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.cts-hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
}

.cts-hero-video-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 40px;
    text-align: center;
    color: #ffffff;
}

.cts-hero-video-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cts-hero-video-content p {
    font-size: 1.25rem;
    max-width: 700px;
    margin-bottom: 30px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   Intro Section
   ========================================================================== */

.cts-intro-section {
    position: relative;
    background: #000;
    padding: 80px 40px;
    overflow: hidden;
}

.cts-intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/ui/pattern.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
    pointer-events: none;
}

.cts-intro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.cts-intro-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.cts-intro-headlines {
    margin-bottom: 60px;
}

.cts-intro-line1,
.cts-intro-line2 {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-size: 35px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #ffffff;
}

.cts-intro-line1 {
    font-weight: 500;
    margin-bottom: 10px;
}

.cts-intro-line2 {
    font-weight: 300;
}

/* Stats with gradient text */
.cts-intro-stats {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.cts-intro-stat {
    text-align: center;
}

.cts-stat-value {
    font-family: "roc-grotesk-condensed", sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 175px;
    line-height: 1em;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #99201F 0%, #FF3633 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-flex;
    align-items: center;
}

.cts-stat-prefix,
.cts-stat-suffix {
    font-size: 1em;
}

.cts-stat-label {
    font-family: "roc-grotesk-condensed", sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #99201F 0%, #FF3633 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 30px;
    text-align: center;
}

.cts-stat-label p {
    margin: 0;
}

/* Description H2 */
.cts-intro-description {
    font-family: "roc-grotesk-condensed", sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 60px;
    line-height: 1.33;
    letter-spacing: 0.03em;
    text-align: center;
    text-transform: uppercase;
    background: linear-gradient(90deg, #99201F 0%, #FF3633 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    max-width: 1000px;
    margin: 0 auto;
}

/* ==========================================================================
   Sports Tiles Section
   ========================================================================== */

.cts-sports-tiles {
    margin-top: 80px;
    padding-top: 60px;
}

.cts-sports-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.cts-sport-tile {
    position: relative;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    transition: background 0.3s ease;
}

.cts-sport-tile:last-child {
    border-right: none;
}

.cts-sport-tile:hover {
    background: linear-gradient(180deg, #FF3633 0%, #99201F 100%);
}

.cts-sport-title {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #ffffff;
    margin: 0;
    padding: 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.cts-sport-image {
    position: relative;
    padding: 20px;
}

.cts-sport-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.cts-sport-cta {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.cts-sport-cta-text {
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0.05em;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
}

.cts-sport-arrow {
    width: 18px;
    height: auto;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.cts-sport-tile:hover .cts-sport-arrow {
    transform: translateX(5px);
}

/* ==========================================================================
   Charity Section Wrapper (Stats + Partners combined)
   ========================================================================== */

.cts-charity-section {
    position: relative;
    background: #000;
    overflow: hidden;
}

.cts-charity-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/ui/pattern.png');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    opacity: 0.2;
    pointer-events: none;
    z-index: 1;
}

.cts-charity-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
    z-index: 2;
}

/* ==========================================================================
   Charity Stats Section
   ========================================================================== */

.cts-charity-stats-section {
    position: relative;
    padding: 80px 40px;
    z-index: 3;
}

.cts-charity-stats-overlay {
    display: none;
}

.cts-charity-stats-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.cts-charity-stats {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    flex-wrap: wrap;
}

.cts-charity-stat {
    text-align: center;
}

.cts-charity-stat-value {
    font-family: "roc-grotesk-condensed", sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 175px;
    line-height: 1em;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #2F4DE9 0%, #1F34A0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-flex;
    align-items: center;
}

.cts-charity-stat-prefix,
.cts-charity-stat-suffix {
    font-size: 1em;
}

.cts-charity-stat-label {
    font-family: "roc-grotesk-condensed", sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #2F4DE9 0%, #1F34A0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 30px;
    text-align: center;
}

.cts-charity-stat-label p {
    margin: 0;
}

/* ==========================================================================
   Event Section
   ========================================================================== */

.cts-event-section {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
}

.cts-event-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cts-event-tag-image {
    position: absolute;
    z-index: 10;
    transform: translate(-50%, -50%) translateY(40px);
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cts-event-tag-image.cts-animate-in {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
}

.cts-event-tag-image img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}

/* ==========================================================================
   Charity Partners Section
   ========================================================================== */

.cts-charity-partners-section {
    width: 100%;
    position: relative;
    z-index: 3;
}

.cts-partner-row {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}

/* Odd rows - transparent background */
.cts-partner-row-odd {
    background: transparent;
}

/* Even rows - blue gradient background */
.cts-partner-row-even {
    background: linear-gradient(90deg, #2F4DE9 0%, #000000 100%);
}

.cts-partner-row-inner {
    display: flex;
    align-items: stretch;
    max-width: 1600px;
    margin: 0 auto;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.5);
}

/* Logo Column - 25% width (contains logo and button) */
.cts-partner-logo-column {
    width: 25%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    padding-bottom: 0;
    background: transparent;
    position: relative;
}

.cts-partner-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.cts-partner-logo img {
    width: 80%;
    max-height: 120px;
    height: auto;
    object-fit: contain;
}

.cts-partner-logo-text {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 50px;
    line-height: 100%;
    letter-spacing: 0;
    color: #ffffff;
    text-align: left;
    display: block;
}

/* Content - 50% width */
.cts-partner-content {
    width: 50%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 30px;
    position: relative;
}

.cts-partner-description {
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
}

.cts-partner-description p {
    margin: 0 0 15px 0;
    color: #ffffff;
}

.cts-partner-description p:last-child {
    margin-bottom: 0;
}

.cts-partner-description strong {
    font-weight: 600;
}

/* Link with arrow */
.cts-partner-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(138, 138, 138, 1);
    color: #ffffff;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background 0.3s ease;
    position: absolute;
    bottom: 0;
    left: 0;
}

.cts-partner-link:hover {
    background: rgba(158, 158, 158, 1);
}

.cts-partner-link-label {
    color: rgba(0, 0, 0, 1);
}

.cts-partner-link-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Photo - 25% width */
.cts-partner-photo {
    width: 25%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 20px;
}

.cts-partner-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==========================================================================
   Sponsored By Section
   ========================================================================== */

.cts-sponsored-section {
    background: #000;
    padding: 80px 40px;
}

.cts-sponsored-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cts-sponsored-label {
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #ffffff;
    display: block;
    margin-bottom: 20px;
}

.cts-sponsored-logo {
    margin-bottom: 40px;
}

.cts-sponsored-logo img {
    height: 50px;
    width: auto;
}

.cts-sponsored-description {
    margin-bottom: 40px;
}

.cts-sponsored-description p {
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 24px;
    line-height: 140%;
    letter-spacing: 0;
    text-align: center;
    color: #ffffff;
    margin: 0;
    padding: 30px 0;
}

.cts-sponsored-description strong {
    font-weight: 600;
}

.cts-sponsored-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.cts-sponsored-link:hover {
    opacity: 0.7;
}

.cts-sponsored-link-label {
    color: #ffffff;
}

.cts-sponsored-link-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ==========================================================================
   Signup Page
   ========================================================================== */

/* Signup Hero */
.cts-signup-hero {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
}

.cts-signup-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Signup Tags */
.cts-signup-tag {
    position: absolute;
    z-index: 10;
    transform: translateY(40px);
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cts-signup-tag.cts-animate-in {
    opacity: 1;
    transform: translateY(0);
}

.cts-signup-tag-content {
    display: flex;
    flex-direction: column;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-left: none;
    position: relative;
}

.cts-signup-tag-content::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
}

.cts-signup-tag-content::after {
    content: '';
    position: absolute;
    left: -38px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: transparent;
}

.cts-signup-tag-title {
    font-family: "roc-grotesk-condensed", sans-serif;
    font-weight: 800;
    font-size: 32px;
    line-height: 1.1;
    color: #ffffff;
    text-transform: uppercase;
}

.cts-signup-tag-subtitle {
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-size: 24px;
    line-height: 1.2;
    color: #ffffff;
}

/* Tag positions are set via inline styles from admin settings */

/* Signup Main Content */
.cts-signup-page {
    background: #000;
    padding: 80px 40px;
}

.cts-signup-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cts-signup-page h1 {
    font-family: "roc-grotesk-condensed", sans-serif;
    font-weight: 800;
    font-size: 72px;
    line-height: 1.1;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 40px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.cts-footer {
    background: #000;
    padding: 40px 0;
    border-top: 1px solid #FFFFFF66;
}

.cts-footer-inner {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cts-footer-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.cts-footer-link {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.cts-footer-link:hover {
    opacity: 0.7;
}

.cts-footer-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cts-footer-nav .footer-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.cts-footer-nav .footer-menu li {
    margin: 0;
    padding: 0;
}

.cts-footer-nav .footer-menu li a {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.cts-footer-nav .footer-menu li a:hover {
    opacity: 0.7;
}

.cts-footer-logo img {
    height: 24px;
    width: auto;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .header-container {
        padding: 5px 30px;
    }

    .main-navigation .nav-menu {
        gap: 25px;
    }

    .main-navigation .nav-menu li a {
        font-size: 14px;
    }

    .site-logo img {
        height: 28px;
    }

    .cts-hero-video-content h1 {
        font-size: 3rem;
    }

    .cts-hero-video-content p {
        font-size: 1.1rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .cts-intro-section {
        padding: 60px 30px;
    }

    .cts-stat-value {
        font-size: 120px;
    }

    .cts-intro-stats {
        gap: 50px;
    }

    .cts-intro-description {
        font-size: 48px;
    }

    .cts-intro-line1,
    .cts-intro-line2 {
        font-size: 36px;
    }

    .cts-charity-stats-section {
        padding: 60px 30px;
    }

    .cts-charity-stat-value {
        font-size: 120px;
    }

    .cts-charity-stats {
        gap: 50px;
    }

    .cts-charity-stat-label {
        font-size: 36px;
    }

    .cts-sports-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cts-sport-tile {
        border-right: 1px solid rgba(255, 255, 255, 0.4);
        border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    }

    .cts-sport-tile:nth-child(2n) {
        border-right: none;
    }

    .cts-sport-tile:nth-child(n+3) {
        border-bottom: none;
    }

    .cts-sport-title {
        font-size: 26px;
        padding: 25px 15px;
    }

    .cts-sport-cta-text {
        font-size: 11px;
    }

    .cts-sport-arrow {
        width: 16px;
    }

    /* Charity Partners - Tablet */
    .cts-partner-logo {
        padding: 30px;
    }

    .cts-partner-logo img {
        max-height: 100px;
    }

    .cts-partner-logo-text {
        font-size: 40px;
    }

    .cts-partner-content {
        padding: 30px 25px;
    }

    .cts-partner-description {
        font-size: 15px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Hamburger Menu - Show */
    .hamburger-menu {
        display: flex;
    }

    /* Header adjustments */
    .header-container {
        padding: 10px 20px;
    }

    /* Mobile Navigation */
    .main-navigation {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1001;
    }

    .main-navigation.mobile-open {
        opacity: 1;
        visibility: visible;
    }

    .main-navigation .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .main-navigation .nav-menu li a {
        font-size: 24px;
        letter-spacing: 0.05em;
    }

    .main-navigation .nav-menu > li.menu-item-has-children > .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        background: transparent;
        padding: 15px 0 0 0;
        min-width: auto;
        border-left: none;
    }

    .main-navigation .nav-menu .sub-menu li a {
        font-size: 18px;
        padding: 8px 0;
    }

    .site-logo img {
        height: 25px;
    }

    /* Footer - Mobile */
    .cts-footer-inner {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0 20px;
    }

    .cts-footer-left {
        flex-direction: column;
        gap: 15px;
    }

    .cts-hero-video {
        height: calc(100vh - 80px);
        min-height: 300px;
    }

    .cts-hero-video-content {
        height: 100%;
        padding: 30px 20px;
    }

    .cts-hero-video-content h1 {
        font-size: 2.25rem;
    }

    .cts-hero-video-content p {
        font-size: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    h4 {
        font-size: 1.1rem;
    }

    .brochure-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .brochure-banner-label {
        margin-right: 0;
        margin-bottom: 5px;
    }

    .brochure-links {
        justify-content: center;
    }

    .brochure-link {
        font-size: 13px;
        padding: 6px 12px;
    }

    .cts-intro-section {
        padding: 50px 20px;
    }

    .cts-intro-headlines {
        margin-bottom: 40px;
    }

    .cts-intro-line1,
    .cts-intro-line2 {
        font-size: 28px;
    }

    .cts-stat-value {
        font-size: 80px;
    }

    .cts-intro-stats {
        gap: 30px;
        margin-bottom: 40px;
    }

    .cts-stat-label {
        font-size: 32px;
    }

    .cts-intro-description {
        font-size: 36px;
        line-height: 1.2;
    }

    .cts-charity-stats-section {
        padding: 50px 20px;
    }

    .cts-charity-stat-value {
        font-size: 80px;
    }

    .cts-charity-stats {
        gap: 30px;
    }

    .cts-charity-stat-label {
        font-size: 28px;
    }

    .cts-sports-tiles {
        margin-top: 50px;
        padding-top: 40px;
    }

    .cts-sport-title {
        font-size: 22px;
        padding: 20px 15px;
    }

    .cts-sport-image {
        padding: 15px;
    }

    .cts-sport-cta {
        padding: 15px;
    }

    .cts-sport-cta-text {
        font-size: 10px;
    }

    .cts-sport-arrow {
        width: 14px;
    }

    /* Charity Partners - Mobile */
    .cts-partner-row-inner {
        flex-direction: column;
    }

    .cts-partner-logo {
        width: 100%;
        padding: 30px 20px;
    }

    .cts-partner-logo img {
        max-height: 80px;
    }

    .cts-partner-logo-text {
        font-size: 32px;
    }

    .cts-partner-content {
        width: 100%;
        padding: 25px 20px;
    }

    .cts-partner-description {
        font-size: 14px;
    }

    .cts-partner-link {
        font-size: 11px;
        padding: 10px 16px;
    }

    .cts-partner-photo {
        width: 100%;
        height: 200px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.15rem;
    }

    p {
        font-size: 0.95rem;
    }

    /* Intro section - centered on mobile */
    .cts-intro-section {
        text-align: center;
    }

    .cts-intro-headlines {
        text-align: center;
    }

    .cts-stat-value {
        font-size: 60px;
    }

    .cts-intro-stats {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .cts-stat-item {
        text-align: center;
    }

    .cts-stat-label {
        font-size: 24px;
    }

    .cts-intro-description {
        font-size: 28px;
        text-align: center;
    }

    .cts-intro-line1,
    .cts-intro-line2 {
        font-size: 22px;
    }

    /* Charity stats - centered on mobile */
    .cts-charity-stats-section {
        text-align: center;
    }

    .cts-charity-stat-value {
        font-size: 60px;
    }

    .cts-charity-stats {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .cts-charity-stat-item {
        text-align: center;
    }

    .cts-charity-stat-label {
        font-size: 22px;
    }

    .cts-sports-grid {
        grid-template-columns: 1fr;
    }

    .cts-sport-tile {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    }

    .cts-sport-tile:last-child {
        border-bottom: none;
    }

    .cts-sport-title {
        font-size: 26px;
        padding: 25px 20px;
    }

    .cts-sport-image {
        padding: 20px;
    }

    .cts-sport-cta {
        padding: 20px;
    }

    .cts-sport-cta-text {
        font-size: 12px;
    }

    .cts-sport-arrow {
        width: 16px;
    }
}

/* ==========================================================================
   Signup Content Section (Tabs)
   ========================================================================== */

.cts-signup-content-section {
    position: relative;
    background: #000;
    padding: 0;
    overflow: hidden;
}

.cts-signup-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/ui/pattern.png');
    background-repeat: repeat;
    background-position: center top;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

.cts-signup-content-inner {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    margin: 0 auto;
}

/* Header */
.cts-signup-header {
    text-align: center;
    padding: 100px 40px;
}

.cts-signup-h1 {
    font-family: "roc-grotesk-condensed", sans-serif;
    font-weight: 900;
    font-size: 120px;
    line-height: 1;
    margin: 0 0 20px 0;
    background: linear-gradient(180deg, #E31E24 0%, #8B0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

.cts-signup-h2 {
    font-family: "roc-grotesk-condensed", sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1;
    margin: 0;
    background: linear-gradient(180deg, #E31E24 0%, #8B0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

/* Tabs Navigation */
.cts-signup-tabs {
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.cts-signup-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 35px 20px;
    background: transparent;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cts-signup-tab:last-child {
    border-right: none;
}

.cts-signup-tab-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    color: #fff;
    transition: all 0.3s ease;
}

.cts-signup-tab.active {
    background: linear-gradient(180deg, #E31E24 0%, #8B0000 100%);
}

.cts-signup-tab:not(.active):hover .cts-signup-tab-text {
    background: linear-gradient(180deg, #E31E24 0%, #8B0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Tab Link Arrow */
.cts-signup-tab-arrow {
    width: 24px;
    height: auto;
    transition: opacity 0.3s ease;
}

.cts-signup-tab-link .cts-arrow-white {
    display: none;
}

.cts-signup-tab-link .cts-arrow-red {
    display: block;
}

.cts-signup-tab-link:hover .cts-arrow-white {
    display: block;
}

.cts-signup-tab-link:hover .cts-arrow-red {
    display: none;
}

/* Tab Content Panels */
.cts-signup-tab-panels {
    padding: 60px 40px 80px;
    background-color: rgba(0, 0, 0, 0.6);
}

.cts-signup-tab-panel {
    display: none;
}

.cts-signup-tab-panel.active {
    display: block;
}

.cts-signup-tab-content {
    columns: 2;
    column-gap: 60px;
}

.cts-signup-tab-content p,
.cts-signup-tab-content li,
.cts-signup-tab-content span {
    font-family: 'Inter', sans-serif;
    font-weight: 250;
    font-size: 16px;
    line-height: 100%;
    color: #fff;
    margin-bottom: 1.5em;
}

.cts-signup-tab-content h1,
.cts-signup-tab-content h2,
.cts-signup-tab-content h3,
.cts-signup-tab-content h4,
.cts-signup-tab-content h5,
.cts-signup-tab-content h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #fff;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    text-transform: uppercase;
}

.cts-signup-tab-content h1:first-child,
.cts-signup-tab-content h2:first-child,
.cts-signup-tab-content h3:first-child,
.cts-signup-tab-content h4:first-child,
.cts-signup-tab-content h5:first-child,
.cts-signup-tab-content h6:first-child {
    margin-top: 0;
}

.cts-signup-tab-content ul,
.cts-signup-tab-content ol {
    margin: 0 0 1.5em 1.5em;
    padding: 0;
}

.cts-signup-tab-content li {
    margin-bottom: 0.5em;
}

.cts-signup-tab-content a {
    color: #E31E24;
    text-decoration: underline;
}

.cts-signup-tab-content a:hover {
    color: #fff;
}

/* Responsive Signup Content */
@media (max-width: 1024px) {
    .cts-signup-h1 {
        font-size: 80px;
    }

    .cts-signup-h2 {
        font-size: 32px;
    }

    .cts-signup-tab-text {
        font-size: 24px;
    }

    .cts-signup-tab-content {
        columns: 1;
    }
}

@media (max-width: 768px) {
    .cts-signup-header {
        padding: 60px 20px 40px;
    }

    .cts-signup-h1 {
        font-size: 50px;
    }

    .cts-signup-h2 {
        font-size: 24px;
    }

    .cts-signup-tabs {
        flex-direction: column;
    }

    .cts-signup-tab {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.4);
        padding: 25px 20px;
    }

    .cts-signup-tab:last-child {
        border-bottom: none;
    }

    .cts-signup-tab-text {
        font-size: 20px;
    }

    .cts-signup-tab-panels {
        padding: 40px 20px 60px;
    }

    .cts-signup-tab-content p,
    .cts-signup-tab-content li,
    .cts-signup-tab-content span {
        font-size: 14px;
        line-height: 140%;
    }
}

/* ========================================
   ORGANISER SECTION
   ======================================== */

.cts-organiser-section {
    background-color: #000;
    padding: 80px 60px 100px;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.cts-organiser-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Header */
.cts-organiser-header {
    margin-bottom: 60px;
}

.cts-organiser-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 50px;
    line-height: 1.1;
    color: #fff;
    margin: 0;
    display: block;
}

.cts-organiser-heading strong {
    font-weight: 700;
}

.cts-organiser-email-link {
    display: inline-block;
    vertical-align: middle;
    margin-left: 1px;
    transition: transform 0.3s ease;
}

.cts-organiser-email-link:hover {
    transform: scale(1.1);
}

.cts-organiser-arrow {
    width: 40px;
    height: auto;
}

/* Profile */
.cts-organiser-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.cts-organiser-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #666;
}

.cts-organiser-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cts-organiser-details {
    text-align: center;
}

.cts-organiser-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 30px;
    color: #fff;
    margin: 5px 0 5px 0;
}

.cts-organiser-name {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Responsive Organiser */
@media (max-width: 1024px) {
    .cts-organiser-section {
        padding: 60px 40px 80px;
    }

    .cts-organiser-heading {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .cts-organiser-section {
        padding: 50px 20px 60px;
    }

    .cts-organiser-heading {
        font-size: 32px;
        display: block;
    }

    .cts-organiser-image {
        width: 150px;
        height: 150px;
    }

    .cts-organiser-title {
        font-size: 24px;
    }

    .cts-organiser-name {
        font-size: 16px;
    }

    .cts-organiser-arrow {
        width: 30px;
    }
}
