/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
    color: #3b82f6;
}

.nav-actions {
    display: flex;
    gap: 15px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border-color: #3b82f6;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.btn-outline {
    background: transparent;
    color: #3b82f6;
    border-color: #3b82f6;
}

.btn-outline:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Breadcrumb */
.breadcrumb {
    background: #f1f5f9;
    padding: 10px 0;
}

.breadcrumb-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    list-style: none;
}

.breadcrumb-item a {
    color: #64748b;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #3b82f6;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e40af 0%, #7c3aed 50%, #dc2626 100%);
    color: white;
    padding: 80px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: slideInUp 1s ease-out;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: slideInUp 1s ease-out 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 0.4s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-image {
    animation: slideInRight 1s ease-out 0.6s both;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.05);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Brand Introduction */
.brand-intro {
    padding: 80px 0;
    background: white;
}

.brand-intro h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #1e293b;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #64748b;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8fafc;
}

.features h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #1e293b;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1e293b;
    font-weight: 600;
}

.feature-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Registration Process */
.registration-process {
    padding: 80px 0;
    background: white;
}

.registration-process h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #1e293b;
}

.process-content {
    max-width: 800px;
    margin: 0 auto 40px;
}

.process-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #64748b;
    line-height: 1.7;
}

.process-actions {
    text-align: center;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Advantages Section */
.advantages {
    padding: 80px 0;
    background: #f8fafc;
}

.advantages h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #1e293b;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.advantage-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1e293b;
}

.advantage-item p {
    color: #64748b;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

.faq h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #1e293b;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 30px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1e293b;
}

.faq-item p {
    color: #64748b;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white !important;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.cta * {
    color: #ffffff !important;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #f1f5f9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3b82f6;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
    text-align: center;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-actions,
    .process-actions,
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .brand-intro h2,
    .features h2,
    .registration-process h2,
    .advantages h2,
    .faq h2,
    .cta h2 {
        font-size: 2rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-menu a:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Page-specific styles */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-description {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 10px;
}

.last-updated {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

/* Ensure all page content is visible */
.about-content,
.privacy-content,
.terms-content,
.disclaimer-content,
.support-content {
    padding: 40px 0;
    background: white;
}

.about-content .content-wrapper,
.privacy-content .content-wrapper,
.terms-content .content-wrapper,
.disclaimer-content .content-wrapper,
.support-content .content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Ensure all content sections are visible */
section[class$="-content"] {
    display: block !important;
    visibility: visible !important;
}

section[class$="-content"] .container {
    display: block !important;
    visibility: visible !important;
}

section[class$="-content"] .content-wrapper {
    display: block !important;
    visibility: visible !important;
}

/* Additional content visibility rules */
main section {
    display: block !important;
    visibility: visible !important;
}

main section .container {
    display: block !important;
    visibility: visible !important;
}

main section .content-wrapper {
    display: block !important;
    visibility: visible !important;
}

/* Ensure paragraphs and headings are visible */
.content-wrapper p,
.content-wrapper h1,
.content-wrapper h2,
.content-wrapper h3,
.content-wrapper ul,
.content-wrapper li {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Force visibility for all content elements */
main section p,
main section h1,
main section h2,
main section h3,
main section h4,
main section h5,
main section h6,
main section ul,
main section ol,
main section li {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #333 !important;
}

/* Specific rules for content sections */
.about-content p,
.privacy-content p,
.terms-content p,
.disclaimer-content p,
.support-content p {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #64748b !important;
    margin-bottom: 15px !important;
    line-height: 1.7 !important;
}

.about-content h2,
.privacy-content h2,
.terms-content h2,
.disclaimer-content h2,
.support-content h2 {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #1e293b !important;
    margin-top: 40px !important;
    margin-bottom: 20px !important;
    font-size: 1.8rem !important;
}

.content-wrapper h2 {
    color: #1e293b;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.content-wrapper h3 {
    color: #1e293b;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.content-wrapper p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #64748b;
}

.content-wrapper ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.content-wrapper li {
    margin-bottom: 8px;
    color: #64748b;
}

/* About Us specific styles */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.value-item {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.value-item h3 {
    color: #1e293b;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.sidebar-card {
    background: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sidebar-card h3 {
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.sidebar-card ul {
    list-style: none;
    padding-left: 0;
}

.sidebar-card li {
    padding: 5px 0;
    border-bottom: 1px solid #e2e8f0;
}

.sidebar-card li:last-child {
    border-bottom: none;
}

/* Support page styles */
.support-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.support-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
}

.support-card h3 {
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-info p,
.hours-info p {
    margin-bottom: 8px;
    color: #64748b;
}

.helpful-links ul {
    list-style: none;
    padding-left: 0;
}

.helpful-links li {
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
}

.helpful-links li:last-child {
    border-bottom: none;
}

.helpful-links a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.helpful-links a:hover {
    color: #1d4ed8;
}

/* 404 Error page styles */
.error-page {
    padding: 80px 0;
    background: #f8fafc;
}

.error-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.error-text h1 {
    font-size: 3rem;
    color: #1e293b;
    margin-bottom: 20px;
}

.error-description {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 20px;
}

.error-actions {
    margin: 30px 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.helpful-links,
.search-suggestion {
    margin-top: 30px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.helpful-links h3,
.search-suggestion h3 {
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.warning-box {
    background: #fef3cd;
    border: 1px solid #fbbf24;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
}

.warning-box h3 {
    color: #92400e;
    margin-bottom: 10px;
}

.warning-box p {
    color: #92400e;
    margin-bottom: 0;
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    .content-grid,
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .error-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .support-options {
        grid-template-columns: 1fr;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .error-text h1 {
        font-size: 2.5rem;
    }
}

/* Special Features Section */
.special-features {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.special-features h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #1e293b;
}

.features-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.feature-highlight {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
}

.feature-highlight:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.feature-icon img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.icon-emoji {
    font-size: 2.5rem;
    line-height: 1;
    display: block;
}

.feature-highlight h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1e293b;
}

.feature-highlight p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.bonus-highlight {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.bonus-amount {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.bonus-text {
    font-size: 1rem;
    opacity: 0.9;
}

.live-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.live-badge {
    background: #ef4444;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.live-text {
    color: #64748b;
    font-weight: 500;
}

.sports-coverage {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.sport-item {
    background: #f1f5f9;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #475569;
}

/* Success Stories Section */
.success-stories {
    padding: 80px 0;
    background: white;
}

.success-stories h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #1e293b;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.story-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid #10b981;
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
}

.player-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    justify-content: center;
}

.player-avatar {
    margin-right: 15px;
}

.player-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #10b981;
}

.player-details {
    text-align: center;
}

.player-details h4 {
    margin: 0 0 5px 0;
    color: #1e293b;
    font-size: 1.1rem;
}

.player-details p {
    margin: 0;
    color: #64748b;
    font-size: 0.9rem;
}

.win-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #10b981;
    text-align: center;
    margin-bottom: 15px;
}

.story-text {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.story-rating {
    text-align: center;
    font-size: 1.2rem;
}

/* Limited Time Offer Section */
.limited-offer {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white !important;
    position: relative;
    overflow: hidden;
}

.limited-offer * {
    color: white !important;
}

.limited-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.offer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.offer-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.offer-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ffffff !important;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.limited-offer h2,
.limited-offer h3,
.limited-offer h4,
.limited-offer p,
.limited-offer span,
.limited-offer div {
    color: #ffffff !important;
}

.offer-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.offer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.offer-item span {
    color: #ffffff !important;
}

.offer-icon {
    font-size: 1.2rem;
}

.countdown-timer {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.timer-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 12px;
    min-width: 80px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.timer-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.timer-label {
    font-size: 0.9rem;
    color: #ffffff !important;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.offer-action {
    text-align: center;
}

.offer-btn {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1e293b;
    border: none;
    padding: 20px 40px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 15px;
}

.offer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
}

.btn-text {
    display: block;
    font-size: 1.2rem;
}

.btn-subtext {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

.offer-note {
    font-size: 0.8rem;
    color: #ffffff !important;
    opacity: 0.8;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .features-showcase {
        grid-template-columns: 1fr;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .offer-features {
        grid-template-columns: 1fr;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .timer-item {
        min-width: 60px;
        padding: 15px;
    }
    
    .timer-number {
        font-size: 1.5rem;
    }
    
    .special-features h2,
    .success-stories h2,
    .offer-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .special-features,
    .success-stories,
    .limited-offer {
        padding: 60px 0;
    }
    
    .feature-highlight {
        padding: 30px 20px;
    }
    
    .story-card {
        padding: 20px;
    }
    
    .offer-text h2 {
        font-size: 1.8rem;
    }
    
    .timer-item {
        min-width: 50px;
        padding: 10px;
    }
    
    .timer-number {
        font-size: 1.2rem;
    }
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .cta,
    .special-features,
    .success-stories,
    .limited-offer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
}
