/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Breadcrumb Navigation */
.breadcrumb {
    background-color: #e9ecef;
    padding: 10px 0;
    font-size: 14px;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    align-items: center;
}

.breadcrumb li {
    margin-right: 10px;
}

.breadcrumb li:not(:last-child)::after {
    content: '>';
    margin-left: 10px;
    color: #666;
}

.breadcrumb a {
    color: #007bff;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
    color: #e1bee7;
}

.auth-buttons {
    display: flex;
    gap: 1rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg, #9c27b0, #673ab7);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #673ab7, #9c27b0);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #9c27b0 0%, #673ab7 100%);
    color: white;
    padding: 4rem 0;
    display: flex;
    align-items: center;
    min-height: 600px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Section Styles */
section {
    padding: 4rem 0;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #9c27b0;
}

section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #673ab7;
}

/* Brand Introduction */
.brand-intro {
    background: white;
}

.brand-intro p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.features {
    background: #f8f9fa;
}

.features-content {
    max-width: 1200px;
    margin: 0 auto;
}

.feature-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.feature-intro p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #9c27b0, #673ab7);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(156, 39, 176, 0.2);
    border-color: #9c27b0;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.feature-card h3 {
    color: #9c27b0;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: bold;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

.feature-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border: 2px solid #9c27b0;
}

.feature-cta p {
    font-size: 1.2rem;
    color: #333;
    margin: 0;
    line-height: 1.6;
}

/* Registration Process */
.registration-process {
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #9c27b0, #673ab7);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* Advantages Section */
.advantages {
    background: #f8f9fa;
}

.advantages-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.advantages-text h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.advantages-text h3:first-child {
    margin-top: 0;
}

.security-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.security-badges img {
    max-width: 150px;
    height: auto;
    opacity: 1;
    transition: transform 0.3s ease;
}

.security-badges img:hover {
    transform: scale(1.05);
}

/* FAQ Section */
.faq {
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.faq-item h3 {
    background: #9c27b0;
    color: white;
    padding: 1rem 1.5rem;
    margin: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-item h3:hover {
    background: #673ab7;
}

.faq-item p {
    padding: 1.5rem;
    margin: 0;
    line-height: 1.6;
}

.faq-item a {
    color: #007bff;
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #9c27b0 0%, #673ab7 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: 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: #e1bee7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #e1bee7;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

.footer-bottom a {
    color: #e1bee7;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .advantages-content {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
.btn:focus,
a:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000;
        color: #fff;
        border: 2px solid #fff;
    }
    
    .btn-secondary {
        background: #fff;
        color: #000;
        border: 2px solid #000;
    }
}

/* Page-specific styles */
.page-hero {
    background: linear-gradient(135deg, #9c27b0 0%, #673ab7 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.last-updated {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

/* Content wrapper for pages */
.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.content-wrapper h2 {
    color: #9c27b0;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.content-wrapper h3 {
    color: #673ab7;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.content-wrapper ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.content-wrapper li {
    margin-bottom: 0.5rem;
}

/* About Us specific styles */
.about-content {
    background: white;
    padding: 4rem 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.text-content {
    grid-column: 1;
}

.image-content {
    grid-column: 2;
}

.image-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.values-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.value-card h3 {
    color: #9c27b0;
    margin-bottom: 1rem;
}

/* Privacy Policy and Terms specific styles */
.privacy-content,
.terms-content,
.disclaimer-content {
    background: white;
    padding: 4rem 0;
}

.privacy-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 4rem;
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
}

.privacy-section:last-child {
    border-bottom: none;
}

.privacy-section h2 {
    color: #9c27b0;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.privacy-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #9c27b0, #673ab7);
    border-radius: 2px;
}

.privacy-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.privacy-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

/* Information Collection Grid */
.info-collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #9c27b0, #673ab7);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(156, 39, 176, 0.15);
    border-color: #9c27b0;
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.info-card h3 {
    color: #9c27b0;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.info-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.info-card ul {
    margin: 0;
    padding-left: 1.5rem;
}

.info-card li {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Usage Grid */
.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.usage-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    text-align: center;
    transition: all 0.3s ease;
}

.usage-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(156, 39, 176, 0.1);
    border-color: #9c27b0;
}

.usage-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.usage-item h4 {
    color: #9c27b0;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.usage-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Sharing Grid */
.sharing-content {
    max-width: 1000px;
    margin: 0 auto;
}

.sharing-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.sharing-intro p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.sharing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.sharing-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    text-align: center;
    transition: all 0.3s ease;
}

.sharing-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(156, 39, 176, 0.1);
    border-color: #9c27b0;
}

.sharing-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.sharing-item h4 {
    color: #9c27b0;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.sharing-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Security Grid */
.security-content {
    max-width: 1000px;
    margin: 0 auto;
}

.security-content p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.security-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    text-align: center;
    transition: all 0.3s ease;
}

.security-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(156, 39, 176, 0.1);
    border-color: #9c27b0;
}

.security-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.security-item h4 {
    color: #9c27b0;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.security-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Rights Grid */
.rights-content {
    max-width: 1000px;
    margin: 0 auto;
}

.rights-content p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.right-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    text-align: center;
    transition: all 0.3s ease;
}

.right-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(156, 39, 176, 0.1);
    border-color: #9c27b0;
}

.right-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.right-item h4 {
    color: #9c27b0;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.right-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 3rem 2rem;
    margin-top: 2rem;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-content p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(156, 39, 176, 0.15);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-item h4 {
    color: #9c27b0;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.contact-item a {
    color: #9c27b0;
    text-decoration: none;
    font-weight: bold;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-note {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.contact-note p {
    color: #666;
    font-size: 1rem;
    margin: 0;
    font-style: italic;
}

/* Terms & Conditions specific styles */
.terms-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.terms-section {
    margin-bottom: 4rem;
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
}

.terms-section:last-child {
    border-bottom: none;
}

.terms-section h2 {
    color: #9c27b0;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.terms-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #9c27b0, #673ab7);
    border-radius: 2px;
}

.terms-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.terms-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

/* Eligibility Grid */
.eligibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.eligibility-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.eligibility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #9c27b0, #673ab7);
}

.eligibility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(156, 39, 176, 0.15);
    border-color: #9c27b0;
}

.eligibility-card h3 {
    color: #9c27b0;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.eligibility-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Prohibited Activities Grid */
.prohibited-content {
    max-width: 1000px;
    margin: 0 auto;
}

.prohibited-content p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.prohibited-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.prohibited-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    text-align: center;
    transition: all 0.3s ease;
}

.prohibited-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(156, 39, 176, 0.1);
    border-color: #9c27b0;
}

.prohibited-item h4 {
    color: #9c27b0;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.prohibited-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Gaming Grid */
.gaming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gaming-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gaming-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #9c27b0, #673ab7);
}

.gaming-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(156, 39, 176, 0.15);
    border-color: #9c27b0;
}

.gaming-card h3 {
    color: #9c27b0;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.gaming-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Financial Grid */
.financial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.financial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.financial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #9c27b0, #673ab7);
}

.financial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(156, 39, 176, 0.15);
    border-color: #9c27b0;
}

.financial-card h3 {
    color: #9c27b0;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.financial-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Bonuses Grid */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.bonuses-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bonuses-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #9c27b0, #673ab7);
}

.bonuses-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(156, 39, 176, 0.15);
    border-color: #9c27b0;
}

.bonuses-card h3 {
    color: #9c27b0;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.bonuses-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsible Gaming Grid */
.responsible-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.responsible-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.responsible-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #9c27b0, #673ab7);
}

.responsible-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(156, 39, 176, 0.15);
    border-color: #9c27b0;
}

.responsible-card h3 {
    color: #9c27b0;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.responsible-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Account Management Grid */
.account-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.account-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.account-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #9c27b0, #673ab7);
}

.account-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(156, 39, 176, 0.15);
    border-color: #9c27b0;
}

.account-card h3 {
    color: #9c27b0;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.account-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Dispute Resolution Grid */
.dispute-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.dispute-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dispute-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #9c27b0, #673ab7);
}

.dispute-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(156, 39, 176, 0.15);
    border-color: #9c27b0;
}

.dispute-card h3 {
    color: #9c27b0;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.dispute-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Disclaimer specific styles */
.disclaimer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer-section {
    margin-bottom: 4rem;
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
}

.disclaimer-section:last-child {
    border-bottom: none;
}

.disclaimer-section h2 {
    color: #9c27b0;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.disclaimer-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #9c27b0, #673ab7);
    border-radius: 2px;
}

.disclaimer-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.disclaimer-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

/* Gaming Risks Grid */
.gaming-risks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gaming-risks-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gaming-risks-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #9c27b0, #673ab7);
}

.gaming-risks-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(156, 39, 176, 0.15);
    border-color: #9c27b0;
}

.gaming-risks-card h3 {
    color: #9c27b0;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.gaming-risks-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Technical Grid */
.technical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.technical-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.technical-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #9c27b0, #673ab7);
}

.technical-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(156, 39, 176, 0.15);
    border-color: #9c27b0;
}

.technical-card h3 {
    color: #9c27b0;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.technical-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Third-Party Grid */
.third-party-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.third-party-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.third-party-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #9c27b0, #673ab7);
}

.third-party-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(156, 39, 176, 0.15);
    border-color: #9c27b0;
}

.third-party-card h3 {
    color: #9c27b0;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.third-party-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Legal Grid */
.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.legal-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.legal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #9c27b0, #673ab7);
}

.legal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(156, 39, 176, 0.15);
    border-color: #9c27b0;
}

.legal-card h3 {
    color: #9c27b0;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.legal-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Liability Grid */
.liability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.liability-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.liability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #9c27b0, #673ab7);
}

.liability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(156, 39, 176, 0.15);
    border-color: #9c27b0;
}

.liability-card h3 {
    color: #9c27b0;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.liability-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Accuracy Grid */
.accuracy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.accuracy-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.accuracy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #9c27b0, #673ab7);
}

.accuracy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(156, 39, 176, 0.15);
    border-color: #9c27b0;
}

.accuracy-card h3 {
    color: #9c27b0;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.accuracy-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsibilities Grid */
.responsibilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.responsibilities-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.responsibilities-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #9c27b0, #673ab7);
}

.responsibilities-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(156, 39, 176, 0.15);
    border-color: #9c27b0;
}

.responsibilities-card h3 {
    color: #9c27b0;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.responsibilities-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Support page specific styles */
.support-content {
    background: white;
    padding: 4rem 0;
}

.support-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.support-section {
    margin-bottom: 4rem;
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
}

.support-section:last-child {
    border-bottom: none;
}

.support-section h2 {
    color: #9c27b0;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.support-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #9c27b0, #673ab7);
    border-radius: 2px;
}

.support-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.support-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

/* Contact Methods Grid */
.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-method-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #9c27b0, #673ab7);
}

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(156, 39, 176, 0.15);
    border-color: #9c27b0;
}

.contact-method-card h3 {
    color: #9c27b0;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.contact-method-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    text-align: center;
}

.detail-item h4 {
    color: #9c27b0;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.detail-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #9c27b0, #673ab7);
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(156, 39, 176, 0.15);
    border-color: #9c27b0;
}

.faq-card h3 {
    color: #9c27b0;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.faq-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Support Tips Content */
.support-tips-content {
    max-width: 1000px;
    margin: 0 auto;
}

.support-tips-content p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.tip-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    text-align: center;
    transition: all 0.3s ease;
}

.tip-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(156, 39, 176, 0.1);
    border-color: #9c27b0;
}

.tip-item h4 {
    color: #9c27b0;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.tip-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Emergency Section */
.emergency-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 3rem 2rem;
    margin-top: 2rem;
}

.emergency-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.emergency-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.emergency-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-methods {
    margin: 3rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.contact-card h3 {
    color: #9c27b0;
    margin-bottom: 1rem;
}

.contact-info {
    margin: 1rem 0;
    font-size: 0.9rem;
    color: #666;
}

.faq-section {
    margin: 3rem 0;
}

.support-tips {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.support-tips ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.emergency-contact {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: center;
}

.emergency-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

/* 404 Error page styles */
.error-page {
    background: white;
    padding: 4rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.error-image {
    text-align: center;
}

.error-image img {
    max-width: 100%;
    height: auto;
}

.error-text h1 {
    color: #9c27b0;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.error-text h2 {
    color: #ff6b6b;
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.error-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.helpful-links {
    margin: 3rem 0;
}

.helpful-links h3 {
    color: #9c27b0;
    text-align: center;
    margin-bottom: 2rem;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.help-link {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.help-link:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.help-link h4 {
    color: #9c27b0;
    margin-bottom: 0.5rem;
}

.help-link p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.search-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin: 2rem 0;
}

.search-suggestions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.suggestion-tag {
    background: #9c27b0;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.suggestion-tag:hover {
    background: #673ab7;
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .error-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .error-text h1 {
        font-size: 2rem;
    }
    
    .error-text h2 {
        font-size: 3rem;
    }
    
    .emergency-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .search-suggestions {
        flex-direction: column;
        align-items: center;
    }
    
    /* Features responsive */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .feature-card p {
        font-size: 0.95rem;
    }
    
    .feature-cta {
        padding: 1.5rem;
    }
    
    .feature-cta p {
        font-size: 1.1rem;
    }
    
    /* Privacy Policy responsive */
    .privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .info-collection-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .usage-grid,
    .sharing-grid,
    .security-grid,
    .rights-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .usage-item,
    .sharing-item,
    .security-item,
    .right-item {
        padding: 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-item {
        padding: 1.5rem;
    }
    
    .contact-section {
        padding: 2rem 1rem;
    }
    
    /* Terms & Conditions responsive */
    .terms-section h2 {
        font-size: 1.5rem;
    }
    
    .eligibility-grid,
    .gaming-grid,
    .financial-grid,
    .bonuses-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .eligibility-card,
    .gaming-card,
    .financial-card,
    .bonuses-card {
        padding: 1.5rem;
    }
    
    .prohibited-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .prohibited-item {
        padding: 1rem;
    }
    
    .responsible-grid,
    .account-grid,
    .dispute-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .responsible-card,
    .account-card,
    .dispute-card {
        padding: 1.5rem;
    }
    
    /* Disclaimer responsive */
    .disclaimer-section h2 {
        font-size: 1.5rem;
    }
    
    .gaming-risks-grid,
    .technical-grid,
    .third-party-grid,
    .legal-grid,
    .liability-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gaming-risks-card,
    .technical-card,
    .third-party-card,
    .legal-card,
    .liability-card {
        padding: 1.5rem;
    }
    
    .accuracy-grid,
    .responsibilities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .accuracy-card,
    .responsibilities-card {
        padding: 1.5rem;
    }
    
    /* Support responsive */
    .support-section h2 {
        font-size: 1.5rem;
    }
    
    .contact-methods-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-method-card,
    .faq-card {
        padding: 1.5rem;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tip-item {
        padding: 1rem;
    }
    
    .emergency-section {
        padding: 2rem 1rem;
    }
    
    .emergency-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Image optimization and compression */
picture {
    display: block;
}

picture img {
    max-width: 100%;
    height: auto;
}

/* Image compression and optimization */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: optimize-contrast;
    -ms-interpolation-mode: nearest-neighbor;
}

/* Lazy loading optimization - 移除透明度效果，让图片始终显示 */
img[loading="lazy"] {
    opacity: 1;
    transition: none;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Critical image optimization */
img[fetchpriority="high"] {
    image-rendering: auto;
    image-rendering: crisp-edges;
}

/* Security badges optimization */
.security-badges picture {
    display: inline-block;
    margin: 0 0.5rem;
}

.security-badges picture img {
    max-width: 150px;
    height: 100px;
    object-fit: contain;
}
