/* Remi 101 Yono - Modern Gaming Platform 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: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 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 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffd700;
}

/* Breadcrumb Styles */
.breadcrumb {
    background: #e9ecef;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #667eea;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Main Content */
main {
    padding: 2rem 0;
}

.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #ffd700;
    color: #333;
}

.btn-primary:hover {
    background: #ffed4e;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #ffd700;
    color: #333;
    border: 2px solid #ffd700;
}

.btn-secondary:hover {
    background: #ffed4e;
    color: #333;
    border: 2px solid #ffed4e;
    transform: translateY(-2px);
}

/* Content Sections */
.content-section {
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.content-section h2 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.content-section h3 {
    color: #764ba2;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.content-section p {
    margin-bottom: 1rem;
    text-align: justify;
}

/* FAQ Styles */
.faq {
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.faq-question {
    background: #667eea;
    color: white;
    padding: 1rem;
    cursor: pointer;
    border-radius: 10px 10px 0 0;
    font-weight: 600;
}

.faq-answer {
    padding: 1rem;
    background: white;
    border-radius: 0 0 10px 10px;
    display: none;
}

.faq-answer.active {
    display: block;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 2rem 0;
    text-align: center;
    margin-top: 3rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffd700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .content-section {
        padding: 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Performance Optimizations */
img {
    max-width: 100%;
    height: auto;
    loading: lazy;
}

/* Image Placeholder Styles */
.image-placeholder {
    background: linear-gradient(45deg, #f0f0f0 25%, transparent 25%), 
                linear-gradient(-45deg, #f0f0f0 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, #f0f0f0 75%), 
                linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    border: 2px dashed #ccc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    margin: 1rem 0;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: "🖼️";
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.image-placeholder.hero-image {
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.image-placeholder.content-image {
    height: 200px;
}

.image-placeholder.small-image {
    height: 150px;
}

.image-placeholder.team-image {
    height: 250px;
    width: 250px;
    border-radius: 50%;
    margin: 1rem auto;
}

.image-placeholder.logo-placeholder {
    height: 60px;
    width: 200px;
    background: white;
    border: 2px solid #667eea;
}

/* Image Grid Layout */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.image-grid .image-placeholder {
    margin: 0;
}

/* Responsive Image Placeholders */
@media (max-width: 768px) {
    .image-placeholder.hero-image {
        height: 200px;
    }
    
    .image-placeholder.content-image {
        height: 150px;
    }
    
    .image-placeholder.small-image {
        height: 120px;
    }
    
    .image-placeholder.team-image {
        height: 200px;
        width: 200px;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}
