/* Royal Jeet - Modern Gaming Platform Styles */

/* Reset and 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: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Styles */
.navbar {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    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 {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
    color: #ffd700;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

/* 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(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #1a1a2e;
}

.btn-login {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-register {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a2e;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1em;
}

/* Breadcrumb Styles */
.breadcrumb {
    background: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    list-style: none;
}

.breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #ff6b6b;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Main Content */
.main-content {
    padding: 80px 0;
}

section {
    margin-bottom: 80px;
}

h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    color: #1a1a2e;
}

h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #1a1a2e;
}

/* Brand Introduction */
.brand-intro {
    background: white;
    padding: 60px 0;
    border-radius: 10px;
    margin: 0 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.brand-intro p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

/* Platform Features */
.platform-features {
    background: #f8f9fa;
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #1a1a2e;
}

/* Registration Process */
.registration-process {
    background: white;
    padding: 60px 0;
    border-radius: 10px;
    margin: 0 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.process-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.process-text p {
    margin-bottom: 20px;
    text-align: justify;
}

.process-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Advantages & Security */
.advantages-security {
    background: #f8f9fa;
    padding: 60px 0;
}

.advantages-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.advantages-text p {
    margin-bottom: 20px;
    text-align: justify;
}

.security-features {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.security-features ul {
    list-style: none;
}

.security-features li {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 25px;
}

.security-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* FAQ Section */
.faq-section {
    background: white;
    padding: 60px 0;
    border-radius: 10px;
    margin: 0 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #ff6b6b;
}

.faq-item h3 {
    margin-bottom: 15px;
    color: #1a1a2e;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    border-radius: 10px;
    margin: 0 20px;
}

.cta-section h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Footer */
.footer {
    background: #1a1a2e;
    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: #ffd700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffd700;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

.footer-bottom a {
    color: #ffd700;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 20px;
    }
    
    .nav-menu {
        margin: 20px 0;
        flex-direction: column;
        text-align: center;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5em;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .process-content {
        grid-template-columns: 1fr;
    }
    
    .advantages-content {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    h2 {
        font-size: 2em;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2em;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

/* 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 */
a:focus,
button: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-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.page-header h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.page-subtitle {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 10px;
}

.last-updated {
    font-size: 0.9em;
    color: #999;
    font-style: italic;
}

/* About Us specific styles */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-text p {
    margin-bottom: 20px;
    text-align: justify;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.choose-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.choose-item h3 {
    margin-bottom: 15px;
    color: #1a1a2e;
}

/* Policy and Terms specific styles */
.policy-content,
.terms-content,
.disclaimer-content {
    background: white;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 0 20px;
}

.policy-section,
.terms-section,
.disclaimer-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.policy-section:last-child,
.terms-section:last-child,
.disclaimer-section:last-child {
    border-bottom: none;
}

.policy-section h2,
.terms-section h2,
.disclaimer-section h2 {
    color: #1a1a2e;
    margin-bottom: 20px;
    font-size: 1.8em;
}

.policy-section h3,
.terms-section h3,
.disclaimer-section h3 {
    color: #1a1a2e;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.policy-section p,
.terms-section p,
.disclaimer-section p {
    margin-bottom: 15px;
    text-align: justify;
    line-height: 1.7;
}

.policy-section ul,
.terms-section ul,
.disclaimer-section ul {
    margin: 15px 0;
    padding-left: 30px;
}

.policy-section li,
.terms-section li,
.disclaimer-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Support page specific styles */
.support-content {
    background: white;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 0 20px;
}

.support-intro {
    margin-bottom: 50px;
    text-align: center;
}

.support-intro h2 {
    margin-bottom: 20px;
    color: #1a1a2e;
}

.support-intro p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.support-methods {
    margin-bottom: 50px;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.support-method {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid #ff6b6b;
}

.support-method h3 {
    margin-bottom: 15px;
    color: #1a1a2e;
}

.support-method p {
    margin-bottom: 20px;
    text-align: justify;
}

.common-issues {
    margin-bottom: 50px;
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.issue-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #28a745;
}

.issue-item h3 {
    margin-bottom: 15px;
    color: #1a1a2e;
}

.issue-item p {
    text-align: justify;
    line-height: 1.6;
}

.support-hours,
.feedback-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.support-hours h2,
.feedback-section h2 {
    margin-bottom: 20px;
    color: #1a1a2e;
}

.support-hours p,
.feedback-section p {
    margin-bottom: 15px;
    text-align: justify;
    line-height: 1.6;
}

/* 404 Error page specific styles */
.error-content {
    background: white;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 0 20px 50px;
}

.error-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.error-text h1 {
    font-size: 4em;
    margin-bottom: 20px;
    color: #ff6b6b;
    font-weight: 700;
}

.error-text h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #1a1a2e;
    font-weight: 600;
}

.error-message {
    font-size: 1.3em;
    margin-bottom: 25px;
    color: #666;
    line-height: 1.6;
}

.error-description {
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.6;
}

.error-reasons {
    margin: 25px 0;
    padding-left: 0;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.error-reasons li {
    margin-bottom: 10px;
    color: #666;
}

.error-actions {
    margin-top: 40px;
}

.error-actions h3 {
    margin-bottom: 20px;
    color: #1a1a2e;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.popular-pages {
    background: #f8f9fa;
    padding: 60px;
    border-radius: 10px;
    margin: 0 20px 50px;
}

.popular-pages h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.popular-pages p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1em;
}

.pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.page-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.page-card:hover {
    transform: translateY(-5px);
}

.page-card h3 {
    margin-bottom: 15px;
    color: #1a1a2e;
}

.page-card p {
    margin-bottom: 20px;
    text-align: justify;
}

.search-section {
    background: white;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 0 20px 50px;
}

.search-section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.search-section p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1em;
}

.search-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.search-option {
    text-align: center;
}

.search-option h3 {
    margin-bottom: 15px;
    color: #1a1a2e;
}

.search-option p {
    margin-bottom: 20px;
    text-align: justify;
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .error-container {
        max-width: 100%;
        padding: 20px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .policy-content,
    .terms-content,
    .disclaimer-content,
    .support-content {
        padding: 30px;
        margin: 0 10px;
    }
    
    .error-content {
        padding: 30px;
        margin: 0 10px 30px;
    }
    
    .popular-pages,
    .search-section {
        padding: 30px;
        margin: 0 10px 30px;
    }
    
    .support-grid,
    .issues-grid,
    .pages-grid,
    .search-options {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2em;
    }
    
    .error-text h1 {
        font-size: 3em;
    }
    
    .error-text h2 {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .policy-content,
    .terms-content,
    .disclaimer-content,
    .support-content {
        padding: 20px;
    }
    
    .error-content {
        padding: 20px;
    }
    
    .popular-pages,
    .search-section {
        padding: 20px;
    }
    
    .page-header h1 {
        font-size: 1.8em;
    }
    
    .error-text h1 {
        font-size: 2.5em;
    }
    
    .error-text h2 {
        font-size: 1.8em;
    }
}
