:root {
    --primary-dark: #101010;
    --secondary-dark: #1c1c1c;
    --accent-silver: #c0c0c0;
    --accent-silver-dark: #a0a0a0;
    --text-light: #f5f5f5;
    --text-gray: #aaaaaa;
    --highlight: #e0e0e0;
    --highlight-hover: #ffffff;
    --border-color: #333333;
    --border-radius: 4px;
    --box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: linear-gradient(270deg, var(--primary-dark), var(--secondary-dark), var(--primary-dark));
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--highlight);
}

h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h2 {
    font-size: 2rem;
    position: relative;
    margin-top: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-silver), var(--accent-silver-dark));
    bottom: -2px;
    left: 0;
}

h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

a {
    color: var(--accent-silver);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--highlight-hover);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.95), rgba(16, 16, 16, 0.95));
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--highlight);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(45deg, var(--accent-silver), var(--highlight));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: none;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        list-style: none;
        margin-bottom: -10px;
    }
    
    .nav-links li {
        margin-left: 1.5rem;
    }
    
    .nav-links a {
        color: var(--text-gray);
        font-weight: 500;
        transition: var(--transition);
    }
    
    .nav-links a:hover {
        color: var(--highlight);
    }
    
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(16, 16, 16, 0.7), rgba(28, 28, 28, 0.9)), url('images/mersobahis-arkaplan.webp') no-repeat center center/cover;
    padding: 2rem 1rem;
}

.hero-content {
    max-width: 800px;
}

.hero-subtitle {
    color: var(--accent-silver);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    background: linear-gradient(45deg, var(--accent-silver-dark), var(--accent-silver));
    color: var(--primary-dark);
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    margin-right: 1rem;
    margin-bottom: 1rem;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: var(--primary-dark);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-silver);
    color: var(--accent-silver);
}

.btn-outline:hover {
    background: var(--accent-silver);
    color: var(--primary-dark);
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.8), rgba(16, 16, 16, 0.9));
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid rgba(192, 192, 192, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    border-color: rgba(192, 192, 192, 0.3);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent-silver);
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-top: 0;
}

/* Games & Services */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-item {
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.6), rgba(16, 16, 16, 0.8));
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(192, 192, 192, 0.1);
}

/* Game Categories */
.game-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 576px) {
    .game-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .game-categories {
        grid-template-columns: repeat(4, 1fr);
    }
}

.category-card {
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.7), rgba(16, 16, 16, 0.9));
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid rgba(192, 192, 192, 0.1);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    border-color: rgba(192, 192, 192, 0.3);
}

.category-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.category-card-content {
    padding: 1.5rem;
}

.category-card h3 {
    margin-top: 0;
    font-size: 1.2rem;
}

/* Lists */
ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

ul li, ol li {
    margin-bottom: 0.5rem;
}

.feature-list {
    list-style: none;
    margin-left: 0;
}

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-silver);
}

/* Tables */
.table-container {
    overflow-x: auto;
    margin-bottom: 2rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

th, td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

th {
    background-color: rgba(28, 28, 28, 0.9);
    color: var(--highlight);
    font-weight: 600;
}

tr:nth-child(even) {
    background-color: rgba(28, 28, 28, 0.3);
}

tr:hover {
    background-color: rgba(192, 192, 192, 0.1);
}

/* FAQ */
.faq-item {
    margin-bottom: 1.5rem;
}

.faq-question {
    font-weight: 600;
    color: var(--accent-silver);
    margin-bottom: 0.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.2rem;
    color: var(--accent-silver);
}

.faq-answer {
    display: none;
    padding: 1rem;
    background: rgba(28, 28, 28, 0.5);
    border-radius: var(--border-radius);
    margin-top: 0.5rem;
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials {
        grid-template-columns: repeat(2, 1fr);
    }
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.6), rgba(16, 16, 16, 0.8));
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(192, 192, 192, 0.1);
}

.testimonial-rating {
    color: gold;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--accent-silver);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--accent-silver-dark), var(--accent-silver));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--primary-dark);
    font-size: 1.2rem;
}

.contact-info {
    flex-grow: 1;
}

.contact-info h4 {
    margin-bottom: 0.25rem;
    color: var(--accent-silver);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--accent-silver-dark), var(--accent-silver));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-link i {
    color: var(--primary-dark);
    font-size: 1.2rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, rgba(16, 16, 16, 0.95), rgba(28, 28, 28, 0.95));
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-links h4 {
    color: var(--accent-silver);
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    margin-left: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Info Badges Styles */
.info-badges-container {
    text-align: center;
}

.info-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.info-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.info-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.info-badge i {
    font-size: 1.5rem;
    color: var(--highlight);
}

.info-badge span {
    font-size: 0.9rem;
    color: #fff;
}

.info-badge strong {
    color: var(--highlight);
}

/* Responsive styles for Info Badges */
@media (max-width: 768px) {
    .info-badges {
        gap: 1rem;
    }
    
    .info-badge {
        padding: 0.75rem;
    }
    
    .info-badge i {
        font-size: 1.25rem;
    }
    
    .info-badge span {
        font-size: 0.8rem;
    }
}

/* Image Sections */
.full-width-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    box-shadow: var(--box-shadow);
}

.image-text-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .image-text-section {
        grid-template-columns: 1fr 1fr;
    }
}

.image-text-section img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.image-text-content {
    padding: 1rem;
}

.faq-image {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin: 2rem auto;
    display: block;
    box-shadow: var(--box-shadow);
} 

.article-text {
    margin-top: 2rem;
    overflow-y: auto;
    height: 300px;
}