body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
}
nav {
    background-color: #2c3e50;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e74c3c;
}
nav a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
}
.container {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.hero {
    background-color: #34495e;
    color: white;
    text-align: center;
    padding: 3rem 1rem;
}
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}
.card h3 { color: #2c3e50; }
.btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}
.form-box {
    max-width: 400px;
    margin: 50px auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.form-box input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    box-sizing: border-box;
}
.form-box textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    box-sizing: border-box;
    font-family: inherit;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: white;
}
th, td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}
.status-pending { color: orange; }
.status-approved { color: green; }
.status-blocked { color: red; }

/* Slideshow Styles */
.slideshow-container {
    max-width: 100%;
    position: relative;
    margin: auto;
    background: #000;
}
.mySlides {
    display: none;
}
.mySlides img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    opacity: 0.8;
}
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.3);
}
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}
.text {
    color: #f2f2f2;
    font-size: 24px;
    padding: 8px 12px;
    position: absolute;
    bottom: 40px;
    width: 100%;
    text-align: center;
    text-shadow: 2px 2px 4px #000000;
    font-weight: bold;
}
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}
@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 40px;
}
.social-links { margin-bottom: 10px; }
.social-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
}
.social-links a:hover { color: #e74c3c; }

.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #7f8c8d;
}
.breadcrumb a {
    color: #2c3e50;
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}

.online-dot {
    height: 10px;
    width: 10px;
    background-color: #2ecc71;
    border-radius: 50%;
    display: inline-block;
}
.offline-dot {
    height: 10px;
    width: 10px;
    background-color: #95a5a6;
    border-radius: 50%;
    display: inline-block;
}