/* GLOBAL RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #1a1a1a;
    color: white;
    overflow-x: hidden;
    font-family: 'Roboto', sans-serif;
}

/* HEADER & NAVIGATION */
header {
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #2d2d2d;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 50;
}

header .container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

header .nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    text-decoration: none;
}

.logo-icon {
    height: 2rem;
    width: 2rem;
    background-color: #ed1c24;
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon span {
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
    margin-left: 0.25rem;
}

.logo-text {
    color: #ed1c24;
    font-weight: bold;
    font-size: 1.5rem;
    letter-spacing: -0.05em;
    transition: color 0.3s;
}

.logo-link:hover .logo-text {
    color: white;
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
}

.btn-reg {
    padding: 0.5rem 1.5rem;
    border: 1px solid #ed1c24;
    color: #ed1c24;
    border-radius: 9999px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.025em;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-reg:hover {
    background-color: #ed1c24;
    color: white;
}

.btn-login {
    padding: 0.5rem 1.5rem;
    border: 1px solid #4b5563;
    color: white;
    border-radius: 9999px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.025em;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-login:hover {
    border-color: white;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: block;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn:hover {
    color: #ed1c24;
}

/* HERO SECTION */
.hero-section {
    padding-top: 6rem;
    padding-bottom: 3rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (min-width: 1024px) {
    .hero-section {
        padding-top: 8rem;
        padding-bottom: 5rem;
    }
}

.hero-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .hero-content {
        flex-direction: row;
    }
}

.hero-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

@media (min-width: 1024px) {
    .hero-left {
        width: 50%;
        align-items: flex-end;
    }
}

.hero-title {
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    width: 100%;
    padding-right: 1rem;
}

@media (min-width: 1024px) {
    .hero-title {
        text-align: right;
    }
}

/* Arrow Shapes */
.arrow-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 28rem;
}

.arrow-red {
    background: linear-gradient(90deg, #ed1c24 0%, #ff4d4d 100%);
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    transform: skewX(-10deg);
    z-index: 20;
    height: 6rem;
    margin-bottom: -10px;
}

@media (min-width: 1024px) {
    .arrow-red {
        height: 8rem;
    }
}

.arrow-black {
    background: linear-gradient(90deg, #333 0%, #1a1a1a 100%);
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    transform: skewX(-10deg);
    z-index: 10;
    height: 5rem;
    margin-top: -15px;
}

@media (min-width: 1024px) {
    .arrow-black {
        height: 6rem;
    }
}

.skew-fix {
    transform: skewX(10deg);
}

.text-bonus {
    color: white;
    font-size: 2.25rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

@media (min-width: 1024px) {
    .text-bonus {
        font-size: 3.75rem;
    }
}

.arrow-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.25;
}

.percentage-wrapper {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.text-percent {
    color: white;
    font-size: 2.25rem;
    font-weight: bold;
}

@media (min-width: 1024px) {
    .text-percent {
        font-size: 3rem;
    }
}

.text-upto {
    color: #d1d5db;
    font-size: 1.125rem;
    font-weight: normal;
}

@media (min-width: 1024px) {
    .text-upto {
        font-size: 1.25rem;
    }
}

/* CTA Button */
.cta-wrapper {
    margin-top: 2rem;
    width: 100%;
    max-width: 28rem;
    text-align: center;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: #ed1c24;
    color: white;
    font-size: 1.125rem;
    font-weight: bold;
    padding: 1rem 2rem;
    border-radius: 9999px;
    box-shadow: 0 0 20px rgba(237, 28, 36, 0.5);
    transition: all 0.3s;
    width: 100%;
    text-transform: uppercase;
    text-decoration: none;
}

.cta-btn:hover {
    background-color: #c41219;
    transform: translateY(-0.25rem);
}

@media (min-width: 640px) {
    .cta-btn {
        width: auto;
    }
}

/* CONTENT SECTION & AUTOMATIC SELECTORS */
.content-section {
    background-color: white;
    color: #333;
    padding: 3rem 0;
    line-height: 1.6;
    font-size: 1rem;
}

/* Container for content */
.content-section > * {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Headings */
.content-section h1,
.content-section h2,
.content-section h3,
.content-section h4 {
    color: black;
    font-weight: bold;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-section h1 {
    font-size: 2rem;
    line-height: 1.2;
}

.content-section h2 {
    font-size: 1.75rem;
    border-bottom: 2px solid #ed1c24;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.content-section h3 {
    font-size: 1.5rem;
}

/* Paragraphs */
.content-section p {
    margin-bottom: 1.5rem;
    color: #4b5563;
}

/* Lists */
.content-section ul,
.content-section ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: #4b5563;
}

.content-section ul {
    list-style-type: disc;
}

.content-section ol {
    list-style-type: decimal;
}

.content-section li {
    margin-bottom: 0.5rem;
}

.content-section li::marker {
    color: #ed1c24;
    font-weight: bold;
}

/* Tables - Automatic Responsive */
.content-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
    display: block; /* Enables scroll on small screens */
    overflow-x: auto;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .content-section table {
        display: table;
        white-space: normal;
    }
}

.content-section thead {
    background-color: #f3f4f6;
    border-bottom: 2px solid #e5e7eb;
}

.content-section th {
    text-align: left;
    padding: 1rem;
    font-weight: bold;
    color: #111;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.content-section td {
    padding: 1rem;
    border-bottom: 1px solid #f3f4f6;
    color: #4b5563;
}

.content-section tr:last-child td {
    border-bottom: none;
}

.content-section tr:hover td {
    background-color: #fafafa;
}

/* FAQ / Schema Structure Styling */
.content-section div[itemscope] {
    margin-bottom: 1.5rem;
}

/* Links inside content */
.content-section a {
    color: #ed1c24;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s;
}

.content-section a:hover {
    color: #c41219;
}

/* Bottom Shapes */
.shapes-container {
    display: flex;
    width: 100%;
    height: 4rem;
    margin-top: 2rem;
    overflow: hidden;
}

.shape-item {
    flex: 1;
    margin: 0 0.25rem;
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.shape-item:hover {
    opacity: 1;
}

.bg-cyan { background-color: #22d3ee; }
.bg-emerald { background-color: #34d399; }
.bg-fuchsia { background-color: #e879f9; }
.bg-orange { background-color: #fb923c; }
.bg-yellow { background-color: #facc15; }

/* FOOTER */
footer {
    background-color: black;
    color: #6b7280;
    padding: 2rem 0;
    font-size: 0.75rem;
}

.footer-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.footer-compliance {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.age-limit-box {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem;
    border-radius: 0.25rem;
}

.age-limit-text {
    display: block;
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
}

.compliance-text {
    text-align: left;
}

.compliance-text p:first-child {
    color: white;
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

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

.footer-links a:hover {
    color: white;
}
