/* PHPearl Gaming Platform CSS - u376e- prefix */

/* CSS Variables for color scheme */
:root {
    --u376e-primary: #800020;
    --u376e-secondary: #FFE4E1;
    --u376e-accent: #191970;
    --u376e-highlight: #6A5ACD;
    --u376e-purple: #DDA0DD;
    --u376e-light: #E6E6FA;
    --u376e-dark: #1a1a1a;
    --u376e-white: #ffffff;
    --u376e-gray: #666666;
    --u376e-light-gray: #f5f5f5;
    --u376e-border: #e0e0e0;
    --u376e-success: #28a745;
    --u376e-warning: #ffc107;
    --u376e-error: #dc3545;
    --u376e-gradient: linear-gradient(135deg, var(--u376e-primary) 0%, var(--u376e-accent) 100%);
    --u376e-gradient-secondary: linear-gradient(135deg, var(--u376e-highlight) 0%, var(--u376e-purple) 100%);
    --u376e-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --u376e-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --u376e-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --u376e-border-radius: 12px;
    --u376e-border-radius-sm: 8px;
    --u376e-border-radius-lg: 16px;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--u376e-dark);
    background-color: var(--u376e-white);
    overflow-x: hidden;
}

body.u376e-menu-open {
    overflow: hidden;
}

/* Typography */
.u376e-h1, .u376e-h2, .u376e-h3, .u376e-h4, .u376e-h5, .u376e-h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--u376e-primary);
}

.u376e-h1 { font-size: 2.5rem; }
.u376e-h2 { font-size: 2rem; }
.u376e-h3 { font-size: 1.75rem; }
.u376e-h4 { font-size: 1.5rem; }
.u376e-h5 { font-size: 1.25rem; }
.u376e-h6 { font-size: 1.125rem; }

.u376e-text-center { text-align: center; }
.u376e-text-left { text-align: left; }
.u376e-text-right { text-align: right; }

.u376e-text-primary { color: var(--u376e-primary); }
.u376e-text-secondary { color: var(--u376e-secondary); }
.u376e-text-accent { color: var(--u376e-accent); }
.u376e-text-highlight { color: var(--u376e-highlight); }

/* Layout utilities */
.u376e-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.u376e-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.u376e-col {
    flex: 1;
    padding: 0 10px;
}

.u376e-col-1 { flex: 0 0 8.333%; }
.u376e-col-2 { flex: 0 0 16.667%; }
.u376e-col-3 { flex: 0 0 25%; }
.u376e-col-4 { flex: 0 0 33.333%; }
.u376e-col-5 { flex: 0 0 41.667%; }
.u376e-col-6 { flex: 0 0 50%; }
.u376e-col-7 { flex: 0 0 58.333%; }
.u376e-col-8 { flex: 0 0 66.667%; }
.u376e-col-9 { flex: 0 0 75%; }
.u376e-col-10 { flex: 0 0 83.333%; }
.u376e-col-11 { flex: 0 0 91.667%; }
.u376e-col-12 { flex: 0 0 100%; }

/* Header */
.u376e-header {
    background: var(--u376e-gradient);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--u376e-shadow);
    transition: var(--u376e-transition);
}

.u376e-header.u376e-scrolled {
    padding: 0.5rem 0;
    background: rgba(128, 0, 32, 0.95);
    backdrop-filter: blur(10px);
}

.u376e-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.u376e-logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--u376e-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.u376e-logo:hover {
    color: var(--u376e-secondary);
}

.u376e-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.u376e-nav-link {
    color: var(--u376e-white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--u376e-border-radius-sm);
    transition: var(--u376e-transition);
    position: relative;
}

.u376e-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--u376e-secondary);
}

.u376e-nav-link.u376e-active {
    background: var(--u376e-white);
    color: var(--u376e-primary);
}

/* Header buttons */
.u376e-header-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.u376e-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--u376e-border-radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--u376e-transition);
    cursor: pointer;
    font-size: 0.875rem;
    white-space: nowrap;
}

.u376e-btn-primary {
    background: var(--u376e-white);
    color: var(--u376e-primary);
}

.u376e-btn-primary:hover {
    background: var(--u376e-secondary);
    transform: translateY(-2px);
    box-shadow: var(--u376e-shadow-hover);
}

.u376e-btn-secondary {
    background: transparent;
    color: var(--u376e-white);
    border: 2px solid var(--u376e-white);
}

.u376e-btn-secondary:hover {
    background: var(--u376e-white);
    color: var(--u376e-primary);
    transform: translateY(-2px);
}

.u376e-btn-gradient {
    background: var(--u376e-gradient-secondary);
    color: var(--u376e-white);
}

.u376e-btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: var(--u376e-shadow-hover);
}

/* Mobile menu */
.u376e-mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--u376e-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--u376e-border-radius-sm);
    transition: var(--u376e-transition);
}

.u376e-mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.u376e-hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--u376e-white);
    position: relative;
    transition: var(--u376e-transition);
}

.u376e-hamburger::before,
.u376e-hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--u376e-white);
    transition: var(--u376e-transition);
}

.u376e-hamburger::before {
    top: -8px;
}

.u376e-hamburger::after {
    top: 8px;
}

.u376e-mobile-menu-toggle.u376e-active .u376e-hamburger {
    background: transparent;
}

.u376e-mobile-menu-toggle.u376e-active .u376e-hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.u376e-mobile-menu-toggle.u376e-active .u376e-hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Mobile menu panel */
.u376e-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--u376e-white);
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: var(--u376e-shadow);
}

.u376e-mobile-menu.u376e-active {
    right: 0;
}

.u376e-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--u376e-transition);
}

.u376e-menu-overlay.u376e-active {
    opacity: 1;
    visibility: visible;
}

.u376e-mobile-menu-header {
    background: var(--u376e-gradient);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.u376e-mobile-menu-close {
    background: none;
    border: none;
    color: var(--u376e-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--u376e-border-radius-sm);
    transition: var(--u376e-transition);
}

.u376e-mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.u376e-mobile-menu-nav {
    padding: 1.5rem;
}

.u376e-mobile-menu-link {
    display: block;
    padding: 1rem 0;
    color: var(--u376e-dark);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--u376e-border);
    transition: var(--u376e-transition);
}

.u376e-mobile-menu-link:hover {
    color: var(--u376e-primary);
}

/* Main content */
.u376e-main {
    padding-top: 80px;
}

@media (max-width: 768px) {
    .u376e-main {
        padding-bottom: 80px; /* Space for bottom nav */
    }
}

/* Hero section */
.u376e-hero {
    background: var(--u376e-gradient);
    color: var(--u376e-white);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.u376e-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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.u376e-hero-content {
    position: relative;
    z-index: 2;
}

.u376e-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--u376e-white), var(--u376e-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.u376e-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.u376e-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Carousel */
.u376e-carousel {
    position: relative;
    max-width: 800px;
    margin: 2rem auto;
    border-radius: var(--u376e-border-radius-lg);
    overflow: hidden;
    box-shadow: var(--u376e-shadow-hover);
}

.u376e-carousel-container {
    position: relative;
    height: 400px;
}

.u376e-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.u376e-carousel-slide.u376e-active {
    opacity: 1;
}

.u376e-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.u376e-carousel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--u376e-white);
    padding: 2rem;
}

.u376e-carousel-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.u376e-carousel-description {
    opacity: 0.9;
    margin-bottom: 1rem;
}

.u376e-carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
}

.u376e-carousel-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--u376e-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--u376e-transition);
    backdrop-filter: blur(10px);
}

.u376e-carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.u376e-carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.u376e-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--u376e-transition);
}

.u376e-carousel-dot.u376e-active {
    background: var(--u376e-white);
    transform: scale(1.2);
}

/* Sections */
.u376e-section {
    padding: 4rem 0;
}

.u376e-section:nth-child(even) {
    background: var(--u376e-light-gray);
}

.u376e-section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.u376e-section-title .u376e-h2 {
    margin-bottom: 1rem;
}

.u376e-section-subtitle {
    font-size: 1.125rem;
    color: var(--u376e-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Game categories */
.u376e-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.u376e-category-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--u376e-border);
    background: var(--u376e-white);
    color: var(--u376e-gray);
    border-radius: var(--u376e-border-radius);
    cursor: pointer;
    transition: var(--u376e-transition);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.u376e-category-btn:hover {
    border-color: var(--u376e-primary);
    color: var(--u376e-primary);
}

.u376e-category-btn.u376e-active {
    background: var(--u376e-gradient);
    color: var(--u376e-white);
    border-color: transparent;
}

/* Game grid */
.u376e-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.u376e-game-card {
    background: var(--u376e-white);
    border-radius: var(--u376e-border-radius-lg);
    overflow: hidden;
    box-shadow: var(--u376e-shadow);
    transition: var(--u376e-transition);
    cursor: pointer;
}

.u376e-game-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--u376e-shadow-hover);
}

.u376e-game-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: var(--u376e-transition);
}

.u376e-game-card:hover .u376e-game-image {
    transform: scale(1.05);
}

.u376e-game-content {
    padding: 1.5rem;
}

.u376e-game-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--u376e-dark);
}

.u376e-game-category {
    font-size: 0.875rem;
    color: var(--u376e-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.u376e-game-play {
    background: var(--u376e-gradient);
    color: var(--u376e-white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--u376e-border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--u376e-transition);
    width: 100%;
    margin-top: 1rem;
}

.u376e-game-play:hover {
    transform: translateY(-2px);
    box-shadow: var(--u376e-shadow-hover);
}

/* Features section */
.u376e-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.u376e-feature {
    text-align: center;
    padding: 2rem;
    background: var(--u376e-white);
    border-radius: var(--u376e-border-radius-lg);
    box-shadow: var(--u376e-shadow);
    transition: var(--u376e-transition);
}

.u376e-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--u376e-shadow-hover);
}

.u376e-feature-icon {
    width: 80px;
    height: 80px;
    background: var(--u376e-gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--u376e-white);
    font-size: 2rem;
}

.u376e-feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--u376e-primary);
}

.u376e-feature-description {
    color: var(--u376e-gray);
    line-height: 1.6;
}

/* Content modules */
.u376e-content-modules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.u376e-content-module {
    background: var(--u376e-white);
    border-radius: var(--u376e-border-radius-lg);
    padding: 2rem;
    box-shadow: var(--u376e-shadow);
    transition: var(--u376e-transition);
}

.u376e-content-module:hover {
    box-shadow: var(--u376e-shadow-hover);
}

.u376e-module-title {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--u376e-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.u376e-module-content {
    color: var(--u376e-gray);
    line-height: 1.6;
}

.u376e-module-content ul {
    list-style: none;
    padding-left: 0;
}

.u376e-module-content li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.u376e-module-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--u376e-success);
    font-weight: bold;
}

/* Partners section */
.u376e-partners {
    background: var(--u376e-light-gray);
    padding: 3rem 0;
}

.u376e-partners-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.u376e-partner {
    background: var(--u376e-white);
    padding: 1rem;
    border-radius: var(--u376e-border-radius);
    box-shadow: var(--u376e-shadow);
    transition: var(--u376e-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    min-height: 60px;
}

.u376e-partner:hover {
    transform: translateY(-4px);
    box-shadow: var(--u376e-shadow-hover);
}

.u376e-partner img {
    max-width: 100px;
    max-height: 40px;
    object-fit: contain;
}

/* Footer */
.u376e-footer {
    background: var(--u376e-dark);
    color: var(--u376e-white);
    padding: 3rem 0 1rem;
}

.u376e-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.u376e-footer-section h3 {
    color: var(--u376e-secondary);
    margin-bottom: 1rem;
}

.u376e-footer-links {
    list-style: none;
}

.u376e-footer-links li {
    margin-bottom: 0.5rem;
}

.u376e-footer-links a {
    color: var(--u376e-white);
    text-decoration: none;
    transition: var(--u376e-transition);
}

.u376e-footer-links a:hover {
    color: var(--u376e-secondary);
}

.u376e-footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: var(--u376e-gray);
}

/* Mobile bottom navigation */
.u376e-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--u376e-gradient);
    padding: 0.75rem 0;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    display: none;
}

.u376e-bottom-nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 430px;
    margin: 0 auto;
}

.u376e-bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem;
    min-width: 60px;
    min-height: 60px;
    border: none;
    background: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: var(--u376e-transition);
    border-radius: var(--u376e-border-radius-sm);
    text-decoration: none;
}

.u376e-bottom-nav-item:hover,
.u376e-bottom-nav-item.u376e-active {
    color: var(--u376e-white);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.u376e-bottom-nav-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.u376e-bottom-nav-label {
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
}

/* Utilities */
.u376e-mt-1 { margin-top: 0.5rem; }
.u376e-mt-2 { margin-top: 1rem; }
.u376e-mt-3 { margin-top: 1.5rem; }
.u376e-mt-4 { margin-top: 2rem; }
.u376e-mt-5 { margin-top: 2.5rem; }

.u376e-mb-1 { margin-bottom: 0.5rem; }
.u376e-mb-2 { margin-bottom: 1rem; }
.u376e-mb-3 { margin-bottom: 1.5rem; }
.u376e-mb-4 { margin-bottom: 2rem; }
.u376e-mb-5 { margin-bottom: 2.5rem; }

.u376e-p-1 { padding: 0.5rem; }
.u376e-p-2 { padding: 1rem; }
.u376e-p-3 { padding: 1.5rem; }
.u376e-p-4 { padding: 2rem; }
.u376e-p-5 { padding: 2.5rem; }

.u376e-hidden { display: none; }
.u376e-visible { display: block; }

.u376e-fade-in {
    animation: u376eFadeIn 0.5s ease;
}

@keyframes u376eFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading spinner */
.u376e-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--u376e-transition);
}

.u376e-loading.u376e-active {
    opacity: 1;
    visibility: visible;
}

.u376e-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--u376e-border);
    border-top: 3px solid var(--u376e-primary);
    border-radius: 50%;
    animation: u376eSpin 1s linear infinite;
}

@keyframes u376eSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Toast notifications */
.u376e-toast {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--u376e-success);
    color: var(--u376e-white);
    padding: 1rem 1.5rem;
    border-radius: var(--u376e-border-radius);
    box-shadow: var(--u376e-shadow);
    z-index: 10000;
    transform: translateX(100%);
    transition: var(--u376e-transition);
}

.u376e-toast.u376e-active {
    transform: translateX(0);
}

/* Responsive design */
@media (max-width: 768px) {
    .u376e-nav {
        display: none;
    }

    .u376e-mobile-menu-toggle {
        display: block;
    }

    .u376e-bottom-nav {
        display: block;
    }

    .u376e-hero-title {
        font-size: 2rem;
    }

    .u376e-hero-subtitle {
        font-size: 1rem;
    }

    .u376e-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .u376e-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .u376e-carousel {
        margin: 1rem -20px;
        border-radius: 0;
    }

    .u376e-carousel-container {
        height: 300px;
    }

    .u376e-games-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .u376e-game-content {
        padding: 1rem;
    }

    .u376e-game-title {
        font-size: 1rem;
    }

    .u376e-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .u376e-content-modules {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .u376e-partners-grid {
        gap: 1rem;
    }

    .u376e-partner {
        min-width: 100px;
        min-height: 50px;
    }

    .u376e-footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .u376e-section {
        padding: 2rem 0;
    }
}

@media (max-width: 430px) {
    .u376e-container {
        padding: 0 15px;
    }

    .u376e-hero {
        padding: 2rem 0;
    }

    .u376e-hero-title {
        font-size: 1.75rem;
    }

    .u376e-games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .u376e-carousel-container {
        height: 250px;
    }

    .u376e-carousel-content {
        padding: 1rem;
    }

    .u376e-carousel-title {
        font-size: 1.25rem;
    }

    .u376e-bottom-nav-item {
        min-width: 50px;
        min-height: 50px;
        padding: 0.25rem;
    }

    .u376e-bottom-nav-icon {
        font-size: 1.25rem;
    }

    .u376e-bottom-nav-label {
        font-size: 0.625rem;
    }
}

/* Print styles */
@media print {
    .u376e-header,
    .u376e-footer,
    .u376e-bottom-nav,
    .u376e-mobile-menu-toggle,
    .u376e-carousel-controls,
    .u376e-carousel-dots {
        display: none !important;
    }

    .u376e-main {
        padding-top: 0;
    }
}