/* CSS Variables */
:root {
    --primary-color: #1a472a;
    --secondary-color: #2d5a3d;
    --accent-color: #4caf50;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --sportpesa-primary: #009688;
    --sportpesa-secondary: #00695c;
    --sportpesa-accent: #26a69a;
    --heritage-gold: #ffc107;
    --kenyan-flag: #000000;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

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

/* Header styles */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo-link {
    text-decoration: none;
}

.site-logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 0;
}

.main-navigation .nav-menu {
    display: flex;
    list-style: none;
    gap: 1.6rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover,
.nav-item.active .nav-link {
    color: var(--primary-color);
}

.current-page {
    color: var(--primary-color);
    font-weight: 600;
    cursor: default;
}

.dropdown-arrow {
    font-size: 0.8rem;
    transition: var(--transition);
    color: var(--text-light);
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--bg-color);
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Breadcrumb */
.breadcrumb-section {
    background: var(--bg-color);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb-nav {
    font-size: 0.9rem;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.breadcrumb-list li:not(:last-child)::after {
    content: "›";
    margin-left: 0.5rem;
    color: var(--text-light);
}

.breadcrumb-list a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list a:hover {
    color: var(--primary-color);
}

.breadcrumb-list .current {
    color: var(--primary-color);
    font-weight: 600;
}

/* Registration Hero Section */
.registration-hero-section {
    background: linear-gradient(135deg, var(--sportpesa-primary) 0%, var(--sportpesa-secondary) 100%);
    color: var(--white);
    padding: 4rem 0;
    overflow: hidden;
}

.registration-hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-highlights {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    padding: 0.75rem 1rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.highlight-icon {
    font-size: 1.2rem;
}

.highlight-text {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Hero CTA Card */
.hero-cta-card {
    background: var(--white);
    color: var(--text-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
}

.cta-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.brand-logo {
    width: 60px;
    height: 60px;
    background: var(--sportpesa-primary);
    color: var(--white);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.cta-title h3 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-size: 1.3rem;
}

.cta-title p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.bonus-offer {
    background: linear-gradient(135deg, var(--sportpesa-primary) 0%, var(--sportpesa-accent) 100%);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-bottom: 1rem;
}

.bonus-percentage {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--white);
}

.bonus-details {
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 600;
}

.promo-code-highlight {
    background: linear-gradient(135deg, var(--heritage-gold) 0%, #f39c12 100%);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-bottom: 1.5rem;
    border: 2px solid var(--sportpesa-primary);
}

.promo-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.promo-code {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-color);
    letter-spacing: 1px;
    cursor: pointer;
    title: 'Click to copy';
}

.cta-actions {
    text-align: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-width: 2px;
    box-shadow: var(--shadow);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-icon {
    font-size: 1rem;
}

.cta-note {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.75rem;
}

/* Requirements Section */
.requirements-section {
    padding: 4rem 0;
    background: var(--white);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.requirement-card {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.requirement-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.requirement-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.requirement-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.requirement-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Registration Guide Section */
.registration-guide-section {
    padding: 4rem 0;
    background: var(--bg-color);
}

.registration-methods {
    max-width: 1000px;
    margin: 3rem auto 0;
}

.method-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 3rem;
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 0.25rem;
    box-shadow: var(--shadow);
}

.method-tab {
    flex: 1;
    padding: 1rem;
    background: transparent;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-light);
}

.method-tab.active {
    background: var(--sportpesa-primary);
    color: var(--white);
    box-shadow: var(--shadow);
}

.tab-icon {
    font-size: 1.2rem;
}

.method-content {
    display: none;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.method-content.active {
    display: block;
}

.method-content h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-align: center;
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-color);
    border-radius: var(--border-radius);
    position: relative;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    bottom: -1.5rem;
    width: 2px;
    height: 1.5rem;
    background: var(--border-color);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--sportpesa-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-tip,
.verification-note,
.completion-note {
    background: #e0f2f1;
    border-left: 4px solid var(--sportpesa-primary);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.detail-list {
    list-style: none;
    margin-top: 1rem;
}

.detail-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.detail-list li:last-child {
    border-bottom: none;
}

.phone-format-example {
    background: #e8f5e8;
    border-left: 4px solid var(--accent-color);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.promo-highlight {
    background: linear-gradient(135deg, var(--heritage-gold) 0%, #f39c12 100%);
    border-left: 4px solid var(--sportpesa-primary);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    color: var(--text-color);
    font-weight: 600;
}

.verification-steps {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.verification-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--white);
    border-radius: var(--border-radius);
    border: 2px solid var(--border-color);
}

.verify-icon {
    font-size: 1.2rem;
}

.sms-format {
    background: #e0f2f1;
    border-left: 4px solid var(--sportpesa-primary);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    font-family: monospace;
}

.inline-link {
    color: var(--sportpesa-primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.inline-link:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.registration-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Verification Section */
.verification-section {
    padding: 4rem 0;
    background: var(--white);
}

.verification-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.verification-step {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.verification-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.verification-step h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.verification-step p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.required-docs,
.upload-tips,
.processing-info {
    text-align: left;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

.required-docs h4,
.upload-tips h4,
.processing-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.required-docs ul,
.upload-tips ul,
.processing-info ul {
    list-style: none;
    padding: 0;
}

.required-docs li,
.upload-tips li,
.processing-info li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 1.5rem;
}

.required-docs li:last-child,
.upload-tips li:last-child,
.processing-info li:last-child {
    border-bottom: none;
}

.required-docs li::before,
.upload-tips li::before,
.processing-info li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Bonus Details Section */
.bonus-details-section {
    padding: 4rem 0;
    background: var(--bg-color);
}

.bonus-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-main {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.bonus-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--sportpesa-primary) 0%, var(--sportpesa-accent) 100%);
    border-radius: var(--border-radius);
}

.bonus-percentage {
    font-size: 3rem;
    font-weight: bold;
    color: var(--white);
}

.bonus-info h3 {
    color: var(--white);
    margin-bottom: 0.25rem;
    font-size: 1.5rem;
}

.bonus-info p {
    color: var(--white);
    font-weight: 600;
}

.bonus-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bonus-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-color);
    border-radius: var(--border-radius);
    margin-bottom: 0.5rem;
}

.feature-icon {
    font-size: 1.2rem;
}

.feature-text {
    font-weight: 500;
    color: var(--text-color);
}

.bonus-steps {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.bonus-steps h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.bonus-claim-steps {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    counter-reset: step-counter;
}

.bonus-claim-steps li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 2rem;
    counter-increment: step-counter;
}

.bonus-claim-steps li:last-child {
    border-bottom: none;
}

.bonus-claim-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 24px;
    height: 24px;
    background: var(--sportpesa-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.bonus-example {
    background: var(--bg-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 1.5rem;
}

.bonus-example h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.example-calculation {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.calc-row:last-child {
    border-bottom: none;
}

.calc-row.total {
    background: var(--sportpesa-primary);
    color: var(--white);
    padding: 0.75rem;
    border-radius: var(--border-radius);
    font-weight: bold;
    margin-top: 0.5rem;
}

.bonus-terms {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #e0f2f1;
    border-left: 4px solid var(--sportpesa-primary);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.bonus-terms h4 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.terms-list {
    list-style: none;
    padding: 0;
}

.terms-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    position: relative;
    padding-left: 1.5rem;
}

.terms-list li:last-child {
    border-bottom: none;
}

.terms-list li::before {
    content: "⚠️";
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

.bonus-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Common Problems Section */
.problems-section {
    padding: 4rem 0;
    background: var(--white);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.problem-card {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
    display: block;
}

.problem-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-align: center;
}

.problem-solutions {
    text-align: left;
}

.problem-solutions h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.problem-solutions ul {
    list-style: none;
    padding: 0;
}

.problem-solutions li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 1.5rem;
}

.problem-solutions li:last-child {
    border-bottom: none;
}

.problem-solutions li::before {
    content: "💡";
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

/* Tips Section */
.tips-section {
    padding: 4rem 0;
    background: var(--bg-color);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tip-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.tip-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
}

.tip-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-align: center;
}

.tip-list {
    list-style: none;
    padding: 0;
}

.tip-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.tip-list li:last-child {
    border-bottom: none;
}

.tip-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.tip-footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.tip-link {
    color: var(--sportpesa-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.tip-link:hover {
    color: var(--primary-color);
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 2rem auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 1.5rem;
    transition: var(--transition);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    display: none;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    display: block;
}

/* Final CTA Section */
.final-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--sportpesa-primary) 0%, var(--sportpesa-secondary) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    padding: 0.75rem 1rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.benefit-icon {
    font-size: 1.2rem;
}

.benefit-text {
    font-weight: 600;
    font-size: 0.9rem;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-disclaimer {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 1rem;
}

/* Footer */
.main-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1rem;
    text-align: center;
}

.disclaimer {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1000px) {
    .main-navigation {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .registration-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .bonus-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .verification-steps {
        grid-template-columns: 1fr;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 1rem;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .method-tabs {
        flex-wrap: wrap;
    }
    
    .method-tab {
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-highlights {
        flex-direction: column;
        gap: 1rem;
    }
    
    .method-tabs {
        flex-direction: column;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .site-title {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-cta-card {
        padding: 1.5rem;
    }
    
    .bonus-percentage {
        font-size: 1.5rem;
    }
    
    .promo-code {
        font-size: 1rem;
    }
}

/* Mobile menu styles */
@media (max-width: 1000px) {
    .main-navigation.active {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--white);
        z-index: 9999;
        padding: 2rem;
        overflow-y: auto;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-link {
        padding: 1rem 0;
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--bg-color);
        margin-left: 1rem;
        display: none;
    }
    
    .has-dropdown.mobile-dropdown-open .dropdown-menu {
        display: block;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Special SportPesa branding */
.brand-logo {
    background: var(--sportpesa-primary);
    color: var(--white);
}

.bonus-offer {
    background: linear-gradient(135deg, var(--sportpesa-primary) 0%, var(--sportpesa-accent) 100%);
}

/* Heritage theme elements */
.heritage-highlight {
    background: linear-gradient(135deg, var(--heritage-gold) 0%, #f39c12 100%);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Kenyan flag colors */
.kenyan-badge {
    background: var(--kenyan-flag);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Promo code special styling */
.promo-code-highlight {
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 5px rgba(255, 193, 7, 0.5); }
    to { box-shadow: 0 0 20px rgba(255, 193, 7, 0.8); }
}

/* SMS format styling */
.sms-format {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    color: var(--text-color);
}
