/* 
    Project: Socials Ofegypt - Spinel Spark Theme
    Framework: MonochromePro
    Standards: W3C, Google AdSafe, SEO Optimized
*/

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --c5umwn-bg-color: #2e1a1a;
    --c5umwn-primary-color: #ff69b4;
    --c5umwn-accent-color: #ff1493;
    --c5umwn-text-light: #ffffff;
    --c5umwn-text-muted: #e0e0e0;
    --c5umwn-glass-bg: rgba(46, 26, 26, 0.85);
    --c5umwn-card-bg: #3d2424;
    --c5umwn-transition: all 0.3s ease;
    --c5umwn-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    --c5umwn-radius: 12px;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--c5umwn-bg-color);
    color: var(--c5umwn-text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--c5umwn-transition);
}

/* Layout Elements */
.c5umwn-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header Styles */
.c5umwn-header-l-r-r {
    background: var(--c5umwn-glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 105, 180, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.c5umwn-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c5umwn-primary-color);
    letter-spacing: 1px;
}

.c5umwn-desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.c5umwn-desktop-nav a:hover {
    color: var(--c5umwn-primary-color);
}

.c5umwn-age-flag {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.c5umwn-hamburger {
    background: none;
    border: 1px solid var(--c5umwn-primary-color);
    color: var(--c5umwn-primary-color);
    font-size: 24px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 4px;
    display: none;
}

@media (max-width: 768px) {
    .c5umwn-desktop-nav { display: none; }
    .c5umwn-hamburger { display: block; }
}

/* Mobile Menu Overlay */
.c5umwn-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--c5umwn-bg-color);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.c5umwn-mobile-menu ul {
    list-style: none;
    text-align: center;
}

.c5umwn-mobile-menu li {
    margin: 20px 0;
}

.c5umwn-mobile-menu a {
    font-size: 1.8rem;
    font-weight: 700;
}

.c5umwn-close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--c5umwn-primary-color);
    font-size: 30px;
    cursor: pointer;
}

/* Hero Section */
.c5umwn-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 80px 20px;
    gap: 40px;
    background: radial-gradient(circle at top right, rgba(255, 105, 180, 0.1), transparent);
}

.c5umwn-hero-text {
    flex: 1;
    min-width: 300px;
}

.c5umwn-hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--c5umwn-primary-color);
    margin-bottom: 1.5rem;
}

.c5umwn-hero-text p {
    font-size: 1.2rem;
    color: var(--c5umwn-text-muted);
    margin-bottom: 2rem;
}

.c5umwn-hero-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.c5umwn-hero-image img {
    max-width: 100%;
    border-radius: var(--c5umwn-radius);
    box-shadow: var(--c5umwn-shadow);
    border: 1px solid rgba(255, 105, 180, 0.3);
}

/* Buttons */
.c5umwn-btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--c5umwn-primary-color);
    color: #fff;
    font-weight: 700;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
    transition: var(--c5umwn-transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.c5umwn-btn:hover {
    background: var(--c5umwn-accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.6);
}

/* Game Grid */
.c5umwn-game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.c5umwn-game-card {
    background: var(--c5umwn-card-bg);
    border-radius: var(--c5umwn-radius);
    overflow: hidden;
    transition: var(--c5umwn-transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
}

.c5umwn-game-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--c5umwn-shadow);
    border-color: var(--c5umwn-primary-color);
}

.c5umwn-game-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.c5umwn-game-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.c5umwn-game-card h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.c5umwn-game-card p {
    color: var(--c5umwn-text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* Game Frame Styles */
.c5umwn-game-container {
    background: #1a0f0f;
    border-radius: var(--c5umwn-radius);
    padding: 20px;
    margin: 40px 0;
    box-shadow: var(--c5umwn-shadow);
    text-align: center;
}

#game-canvas {
    background: #000;
    max-width: 100%;
    border-radius: 8px;
    cursor: crosshair;
}

.c5umwn-stats-bar {
    display: flex;
    justify-content: space-around;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
    border-radius: 8px;
    font-weight: 700;
}

.c5umwn-stat-val {
    color: var(--c5umwn-primary-color);
    margin-left: 5px;
}

/* Footer Styles */
.c5umwn-footer-centered {
    background: #241414;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.c5umwn-footer-centered ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.c5umwn-footer-centered a:hover {
    color: var(--c5umwn-primary-color);
}

/* Trust Signals */
.c5umwn-trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    opacity: 0.8;
}

.c5umwn-badge {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--c5umwn-text-muted);
}

.c5umwn-badge svg {
    margin-right: 8px;
    fill: var(--c5umwn-primary-color);
}

/* Generic Section */
.c5umwn-content-section {
    padding: 80px 0;
}

.c5umwn-section-title {
    text-align: center;
    margin-bottom: 50px;
}

.c5umwn-section-title h2 {
    font-size: 2.5rem;
    color: var(--c5umwn-primary-color);
}

.c5umwn-section-title p {
    color: var(--c5umwn-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Responsible Gaming Page Specifics */
.c5umwn-legal-text h2 {
    margin-top: 30px;
    color: var(--c5umwn-primary-color);
}

.c5umwn-legal-text p, .c5umwn-legal-text li {
    margin-bottom: 15px;
    color: var(--c5umwn-text-muted);
}

.c5umwn-legal-text ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

/* Transitions */
.fade-in {
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}