/* The Website Shark - Unique Community Draw Platform Styles */
/* Canadian Flag Colors: Red (#FF0000) and White (#FFFFFF) */

:root {
    --primary-dark: #FFFFFF;
    --primary-bg: #F8F8F8;
    --primary-red: #FF0000;
    --primary-red-dark: #CC0000;
    --primary-white: #FFFFFF;
    --accent-red: #FF0000;
    --accent-red-light: #FF3333;
    --accent-red-dark: #CC0000;
    --text-light: #1a1a1a;
    --text-gray: #4a4a4a;
    --text-dark-gray: #666666;
    --success-green: #00FF41;
    --warning-orange: #FF6B35;
    --gradient-primary: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 100%);
    --gradient-accent: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    --gradient-hero: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 50%, #FFFFFF 100%);
    --shadow-glow: 0 0 20px rgba(255, 0, 0, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-hover: 0.4s var(--ease-smooth);
}

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

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
    background: var(--primary-bg);
    color: var(--text-light);
    line-height: 1.5;
    overflow-x: hidden;
    font-size: 0.9rem;
}

/* License Banner */
.cs-license-banner {
    background: var(--accent-red);
    color: #FFFFFF;
    padding: 0.6rem 0;
    text-align: center;
    position: relative;
    z-index: 1001;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cs-license-banner__text {
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
    color: #FFFFFF;
    font-weight: 500;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .cs-license-banner__text {
        font-size: 0.75rem;
        padding: 0 1rem;
    }
}

/* Container */
.cs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header */
.cs-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(255, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.75rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cs-header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cs-header__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cs-header__bottom {
    display: none;
    width: 100%;
    justify-content: center;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 0, 0, 0.2);
}

.cs-logo {
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.cs-logo img {
    height: 50px;
    width: auto;
    max-width: 300px;
    transition: transform var(--transition-hover), filter var(--transition-hover);
    display: block;
}

.cs-logo:hover img {
    filter: drop-shadow(0 0 15px var(--accent-red)) drop-shadow(0 0 25px var(--accent-red));
    transform: scale(1.05);
}

.cs-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cs-nav__menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.cs-nav__link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-hover);
    position: relative;
}

.cs-nav__link:hover,
.cs-nav__link--active {
    color: var(--accent-red);
    text-shadow: none;
    font-weight: 600;
}

.cs-nav__link--active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-accent);
}

.cs-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.cs-burger__line {
    width: 25px;
    height: 2px;
    background: var(--accent-red);
    transition: transform var(--transition-hover), opacity var(--transition-hover);
    box-shadow: 0 0 5px var(--accent-red);
}

/* Close icon (X) - shown when menu is open */
.cs-burger--active .cs-burger__line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.cs-burger--active .cs-burger__line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.cs-burger--active .cs-burger__line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.cs-header__auth {
    display: flex;
    gap: 1rem;
}

/* Buttons */
.cs-btn {
    padding: 0.65rem 1.3rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform var(--transition-hover), box-shadow var(--transition-hover), background var(--transition-hover);
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
}

.cs-btn--primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: var(--shadow-glow);
}

.cs-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
}

.cs-btn--outline {
    background: transparent;
    color: var(--accent-red);
    border: 2px solid var(--accent-red);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.cs-btn--outline:hover {
    background: rgba(255, 0, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

/* Hero Section */
.cs-hero {
    background: linear-gradient(135deg, #FFFFFF 0%, #fff5f563 100%);
    padding: 3rem 0 2.5rem;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 0, 0, 0.1);
}

.cs-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 0, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cs-hero__content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cs-hero__badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(255, 0, 0, 0.08);
    border: 2px solid var(--accent-red);
    border-radius: 50px;
    color: var(--accent-red);
    font-size: 0.8rem;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.2);
    font-weight: 600;
}

.cs-hero__title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    color: var(--accent-red);
    line-height: 1.2;
}

.cs-hero__subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}

.cs-hero__cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Countdown Timer */
.cs-countdown {
    background: #FFFFFF;
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 2.5rem auto;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.15);
}

.cs-countdown__label {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cs-countdown__timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cs-countdown__unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.cs-countdown__value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-red);
    line-height: 1;
    margin-bottom: 0.4rem;
    font-family: 'Courier New', monospace;
}

.cs-countdown__label-unit {
    font-size: 0.75rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Ticket Packages */
.cs-packages {
    padding: 4rem 0;
    background: var(--primary-bg);
}

.cs-section__header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.cs-section__title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--accent-red);
}

.cs-section__subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.cs-packages__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.cs-package {
    background: #FFFFFF;
    border: 2px solid rgba(255, 0, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: transform var(--transition-hover), border-color var(--transition-hover), box-shadow var(--transition-hover);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.cs-package::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform var(--transition-hover);
}

.cs-package:hover {
    transform: translateY(-5px);
    border-color: var(--accent-red);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.4);
}

.cs-package:hover::before {
    transform: scaleX(1);
}

.cs-package--featured {
    border-color: var(--accent-red);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
}

.cs-package--featured::before {
    transform: scaleX(1);
}

.cs-package__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.cs-package__header {
    margin-bottom: 0.8rem;
}

.cs-package__name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--text-light);
}

.cs-package__tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 12px;
    color: var(--accent-red);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cs-package__description {
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    font-style: italic;
}

.cs-package__price {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
    color: var(--accent-red);
}

.cs-package__entries {
    color: var(--text-gray);
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
}

.cs-package__features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.cs-package__feature {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.cs-package__feature:last-child {
    border-bottom: none;
}

.cs-package__feature-icon {
    color: var(--accent-red);
    font-size: 1.1rem;
}

/* About This Website */
.cs-about-website {
    padding: 3rem 0;
    background: #FFFFFF;
}

.cs-about-website__text {
    max-width: 720px;
    margin-top: 1rem;
}

.cs-about-website__text p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.cs-about-website__text p:last-child {
    margin-bottom: 0;
}

/* What We Do / What We Do Not Do */
.cs-do-block {
    padding: 3rem 0;
    background: var(--primary-bg);
}

.cs-do-block__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
    max-width: 900px;
}

.cs-do-block__col {
    background: #FFFFFF;
    border: 1px solid rgba(255, 0, 0, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
}

.cs-do-block__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.cs-do-block__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cs-do-block__list li {
    color: var(--text-gray);
    line-height: 1.8;
    padding-left: 1.2rem;
    position: relative;
}

.cs-do-block__list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-red);
}

@media (max-width: 768px) {
    .cs-do-block__grid {
        grid-template-columns: 1fr;
    }
}

/* Licensed Operator Card */
.cs-licensed-operator {
    padding: 3rem 0;
    background: #FFFFFF;
}

.cs-licensed-card {
    max-width: 520px;
    margin-top: 1.5rem;
    background: var(--primary-bg);
    border: 2px solid rgba(255, 0, 0, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

.cs-licensed-card__name {
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.cs-licensed-card__license,
.cs-licensed-card__province {
    color: var(--text-gray);
    margin-bottom: 0.4rem;
}

.cs-licensed-card .cs-btn {
    margin-top: 1.5rem;
}

/* How It Works */
.cs-steps {
    padding: 4rem 0;
    background: #FFFFFF;
}

.cs-how-participation .cs-step__icon {
    display: none;
}

.cs-steps__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.cs-step {
    text-align: center;
    padding: 1.5rem;
}

.cs-step__number {
    width: 55px;
    height: 55px;
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 1.2rem;
    color: var(--accent-red);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.25);
}

.cs-step__icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.cs-step__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.cs-step__text {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Impact Section */
.cs-impact {
    padding: 4rem 0;
    background: var(--primary-bg);
}

.cs-impact__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.cs-impact__card {
    background: #FFFFFF;
    border: 2px solid rgba(255, 0, 0, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: transform var(--transition-hover), border-color var(--transition-hover), box-shadow var(--transition-hover);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.cs-impact__card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-red);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.25), 0 0 0 2px rgba(255, 0, 0, 0.3);
}

.cs-impact__icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.cs-impact__amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: 0.4rem;
}

.cs-impact__label {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.cs-impact__detail {
    color: var(--text-gray);
    font-size: 0.85rem;
    font-style: italic;
}

/* Winners Section */
.cs-winners {
    padding: 4rem 0;
    background: #FFFFFF;
}

.cs-winners__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.cs-winner {
    background: #FFFFFF;
    border: 2px solid rgba(255, 0, 0, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    transition: transform var(--transition-hover), border-color var(--transition-hover), box-shadow var(--transition-hover);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.cs-winner:hover {
    transform: translateY(-5px);
    border-color: var(--accent-red);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.25), 0 0 0 2px rgba(255, 0, 0, 0.3);
}

.cs-winner__amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: 0.4rem;
}

.cs-winner__name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.cs-winner__location {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
}

.cs-winner__date {
    color: var(--text-gray);
    font-size: 0.85rem;
}

/* Footer */
.cs-footer {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F8F8 100%);
    border-top: 3px solid var(--accent-red);
    padding: 2.5rem 0 0.8rem;
}

/* New TZ footer blocks (Contact, Legal Disclosure, Legal Links, Copyright) */
.cs-footer__contact-block {
    margin-bottom: 2rem;
}

.cs-footer__contact-block .cs-footer__section-title {
    margin-bottom: 0.75rem;
}

.cs-footer__company {
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.cs-footer__address,
.cs-footer__email,
.cs-footer__inquiries {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.cs-footer__inquiries {
    margin-top: 0.75rem;
    font-size: 0.85rem;
}

.cs-footer__email a {
    color: var(--accent-red);
    text-decoration: none;
}

.cs-footer__email a:hover {
    text-decoration: underline;
}

.cs-footer__disclosure {
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 0, 0, 0.15);
}

.cs-footer__disclosure .cs-footer__section-title {
    margin-bottom: 0.75rem;
}

.cs-footer__disclosure-text {
    font-size: 0.8rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 0.75rem;
}

.cs-footer__disclosure-text:last-child {
    margin-bottom: 0;
}

.cs-footer__legal-links {
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 0, 0, 0.1);
    font-size: 0.9rem;
}

.cs-footer__legal-link {
    color: var(--accent-red);
    text-decoration: none;
}

.cs-footer__legal-link:hover {
    text-decoration: underline;
}

.cs-footer__legal-sep {
    color: var(--text-gray);
    margin: 0 0.5rem;
}

.cs-footer__copyright {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 0, 0, 0.1);
}

.cs-footer__copyright p {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin: 0;
}

.cs-footer__top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 0, 0, 0.1);
}

.cs-footer__brand {
    max-width: 350px;
}

.cs-footer__logo img {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.cs-footer__tagline {
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

.cs-footer__social {
    display: flex;
    gap: 1rem;
}

.cs-footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid rgba(255, 0, 0, 0.2);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background var(--transition-hover), border-color var(--transition-hover), transform var(--transition-hover), box-shadow var(--transition-hover);
}

.cs-footer__social-link:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.cs-footer__main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cs-footer__section-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cs-footer__links {
    list-style: none;
}

.cs-footer__link {
    color: var(--text-gray);
    text-decoration: none;
    display: block;
    padding: 0.4rem 0;
    transition: color var(--transition-hover), padding-left var(--transition-hover);
    font-size: 0.85rem;
}

.cs-footer__link:hover {
    color: var(--accent-red);
    padding-left: 0.5rem;
    font-weight: 600;
}

/* Responsible Gaming Resources */
.cs-footer__resources {
    padding: 2rem 0;
    border-top: 2px solid rgba(255, 0, 0, 0.1);
    border-bottom: 2px solid rgba(255, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.cs-footer__resources-title {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: 1.5rem;
}

.cs-footer__gaming-notice {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    padding: 1.2rem;
    background: rgba(255, 0, 0, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 0, 0, 0.1);
}

.cs-footer__gaming-notice-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: 0.6rem;
}

.cs-footer__gaming-notice p {
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.cs-footer__resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cs-footer__resource-card {
    max-width: 200px;
    width: 100%;
    height: 50px;
    text-decoration: none;
    text-align: center;
    transition: border-color var(--transition-hover), transform var(--transition-hover);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-footer__resource-card:hover {
    border-color: var(--accent-red);
    transform: translateY(-5px);
}

.cs-footer__resource-icon {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.cs-footer__resource-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.cs-footer__resource-desc {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.4;
}

.cs-footer__resource-btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: transform var(--transition-hover), box-shadow var(--transition-hover);
    display: inline-block;
    text-align: center;
    min-width: 160px;
}

.cs-footer__resource-btn--gamesense {
    background: var(--accent-red);
    color: #FFFFFF;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

.cs-footer__resource-btn--gamesense:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.6);
}

.cs-footer__resource-btn--gambleaware {
    background: #ffffff;
    color: #000000;
    border: 2px solid #ffffff;
}

.cs-footer__resource-btn--gambleaware:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.cs-footer__resource-btn--gambleaware .gamble {
    color: #000000;
}

.cs-footer__resource-btn--gambleaware .aware {
    color: #ff6b35;
    font-weight: 600;
}

.cs-footer__resource-btn--selfexclusion {
    background: #ffffff;
    color: #000000;
    border: 2px solid #000000;
}

.cs-footer__resource-btn--selfexclusion:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.cs-footer__resource-btn--selfexclusion .self {
    text-decoration: underline;
    color: #2d7fb8;
    text-decoration-thickness: 2px;
}

.cs-footer__resource-btn--selfexclusion .exclusion {
    border: 1px solid #000000;
    padding: 2px 6px;
    display: inline-block;
    margin-left: 4px;
}

.cs-footer__helpline {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 1rem;
    background: rgba(255, 0, 0, 0.05);
    border-radius: 8px;
}

.cs-footer__helpline-phone {
    color: var(--accent-red);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
}

.cs-footer__helpline-phone:hover {
    text-decoration: underline;
}

/* Regulatory & Licensing Information */
.cs-footer__regulatory {
    padding: 2rem 0;
    border-top: 2px solid rgba(255, 0, 0, 0.1);
    border-bottom: 2px solid rgba(255, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.cs-footer__regulatory-title {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: 1.2rem;
}

.cs-footer__regulatory-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.cs-footer__regulatory-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    margin-top: 0;
}

.cs-footer__regulatory-content p {
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.cs-footer__regulatory-content p:last-child {
    margin-bottom: 0;
}

.cs-footer__bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 0, 0, 0.1);
}

.cs-footer__bottom-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.2rem;
}

.cs-footer__legal,
.cs-footer__contact-info {
    color: var(--text-gray);
    font-size: 0.8rem;
    line-height: 1.6;
}

.cs-footer__legal p,
.cs-footer__contact-info p {
    margin-bottom: 0.6rem;
}

.cs-footer__legal strong,
.cs-footer__contact-info strong {
    color: var(--accent-red);
    font-weight: 700;
}

.cs-footer__copyright {
    text-align: center;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 0, 0, 0.1);
    color: var(--text-gray);
    font-size: 0.85rem;
}

.cs-footer__geographic-restriction {
    text-align: center;
    padding-top: 1.2rem;
    margin-top: 0.8rem;
    border-top: 1px solid rgba(255, 0, 0, 0.1);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cs-footer__geographic-restriction-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: 0.4rem;
}

.cs-footer__geographic-restriction p {
    color: var(--text-gray);
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0;
}

/* Cookie Notice */
.cs-cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FFFFFF;
    border-top: 2px solid rgba(255, 0, 0, 0.3);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cs-cookie--show {
    display: block;
}

.cs-cookie__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cs-cookie__text {
    flex: 1;
    min-width: 300px;
}

.cs-cookie__actions {
    display: flex;
    gap: 1rem;
}

/* Background Animation - Water/Wave effect instead of matrix */
@keyframes waveFloat {
    0% {
        transform: translateY(-10px) rotate(0deg);
        opacity: 0;
    }
    2% {
        opacity: 0.2;
    }
    98% {
        opacity: 0.2;
    }
    100% {
        transform: translateY(calc(100vh + 10px)) rotate(5deg);
        opacity: 0;
    }
}

.cs-matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.cs-matrix-digit {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 20px;
    color: var(--accent-red);
    opacity: 0.12;
    animation: waveFloat linear infinite;
    text-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
    will-change: transform, opacity;
    white-space: nowrap;
}

body {
    position: relative;
}

body > *:not(.cs-matrix-bg) {
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 991px) {
    .cs-header__wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cs-header__top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .cs-header__bottom {
        display: flex;
        width: 100%;
        justify-content: center;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 0, 0, 0.2);
    }
    
    .cs-nav {
        width: 100%;
        flex-direction: column;
        gap: 1rem;
    }
    
    .cs-nav__menu {
        position: relative;
        top: 70px;
        left: -100%;
        width: 100%;
        display: none;
        background: #FFFFFF;
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s;
        border-top: 2px solid rgba(255, 0, 0, 0.3);
        z-index: 1000;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

    .cs-nav__menu--open {
        left: 0;
        display: flex;
    }
    
    /* Overlay to darken content behind menu */
    .cs-menu-overlay {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        display: none;
        pointer-events: none;
    }
    
    .cs-menu-overlay--active {
        display: block;
    }

    .cs-burger {
        display: flex;
    }
    
    .cs-header__auth {
        width: 100%;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    /* Move auth buttons to bottom on mobile */
    .cs-header__wrapper .cs-header__auth {
        order: 3;
    }
}

@media (max-width: 768px) {
    .cs-hero__title {
        font-size: 2.2rem;
    }

    .cs-packages__grid {
        grid-template-columns: 1fr;
    }

    .cs-countdown__timer {
        gap: 1rem;
    }

    .cs-countdown__value {
        font-size: 1.8rem;
    }
    
    .cs-footer__top {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cs-footer__main {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cs-footer__bottom-content {
        grid-template-columns: 1fr;
    }
    
    .cs-footer__resources-grid {
        grid-template-columns: 1fr;
    }
    
    .cs-footer__resources-title {
        font-size: 1.1rem;
    }
    
    .cs-footer__helpline {
        font-size: 0.85rem;
        padding: 0.75rem;
    }
    
    .cs-footer__gaming-notice {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cs-footer__gaming-notice-title {
        font-size: 1rem;
    }
    
    .cs-footer__gaming-notice p {
        font-size: 0.8rem;
    }
    
    .cs-footer__regulatory {
        padding: 2rem 0;
    }
    
    .cs-footer__regulatory-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .cs-footer__regulatory-content {
        padding: 0 1rem;
    }
    
    .cs-footer__regulatory-subtitle {
        font-size: 1.1rem;
    }
    
    .cs-footer__regulatory-content p {
        font-size: 0.8rem;
    }
    
    .cs-footer__geographic-restriction {
        padding-top: 1rem;
        margin-top: 0.75rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .cs-footer__geographic-restriction-title {
        font-size: 0.95rem;
    }
    
    .cs-footer__geographic-restriction p {
        font-size: 0.8rem;
    }
}

/* Logo glow effect */
@keyframes logo-glow {
    0%, 100% {
        opacity: 0.9;
        filter: drop-shadow(0 0 10px var(--accent-red));
    }
    50% {
        opacity: 1;
        filter: drop-shadow(0 0 20px var(--accent-red)) drop-shadow(0 0 30px var(--accent-red));
    }
}

.cs-logo img {
    animation: logo-glow 3s ease-in-out infinite;
}

/* Red-themed borders and effects */
/* Hover states use --transition-hover from main block definitions above */

/* Form fields */
.cs-form__input:focus,
.cs-form__textarea:focus {
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.15), 0 0 10px rgba(255, 0, 0, 0.2);
    background: #FFFFFF;
}

/* Links */
a {
    transition: color var(--transition-hover);
}

a:hover {
    color: var(--accent-red);
}
