/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.5;
    color: #DEE2E6;
    background-color: #1E1E1E;
    font-size: 1.4rem;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    margin-bottom: 1rem;
    color: #00FFFF;
}

h1 { font-size: 2.4rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.8rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.5rem;
}

a {
    color: #4DB6AC;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #00FFFF;
}

.container {
    max-width: 430px;
    margin: 0 auto;
    padding: 0 1rem;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.text-center {
    text-align: center;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem;
    border-bottom: 1px solid #4DB6AC;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: #00FFFF;
}

.logo img {
    width: 3.2rem;
    height: 3.2rem;
    margin-right: 0.8rem;
}

.nav-toggle {
    background: none;
    border: none;
    color: #00FFFF;
    font-size: 2.4rem;
    cursor: pointer;
    padding: 0.4rem;
}

.btn {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 0.4rem;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #4DB6AC, #00FFFF);
    color: #1E1E1E;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(77, 182, 172, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #DB7093;
    border: 1px solid #DB7093;
}

.btn-secondary:hover {
    background: #DB7093;
    color: #1E1E1E;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(30, 30, 30, 0.98);
    border-top: 1px solid #4DB6AC;
    padding: 1rem;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    margin-bottom: 1rem;
}

.mobile-nav a {
    display: block;
    padding: 1rem;
    color: #DEE2E6;
    font-size: 1.4rem;
    border-bottom: 1px solid rgba(77, 182, 172, 0.2);
}

.mobile-nav a:hover {
    background: rgba(77, 182, 172, 0.1);
    color: #00FFFF;
}

.main {
    margin-top: 8rem;
    padding-bottom: 8rem;
}

.carousel {
    position: relative;
    height: 20rem;
    overflow: hidden;
    border-radius: 0.8rem;
    margin-bottom: 2rem;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.games-section {
    margin-bottom: 3rem;
}

.games-section h2 {
    margin-bottom: 1.5rem;
    color: #00FFFF;
    font-size: 1.8rem;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.game-item {
    background: rgba(77, 182, 172, 0.1);
    border-radius: 0.8rem;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.game-item:hover {
    background: rgba(77, 182, 172, 0.2);
    transform: translateY(-4px);
    border-color: #4DB6AC;
    box-shadow: 0 4px 12px rgba(77, 182, 172, 0.2);
}

.game-item img {
    width: 4rem;
    height: 4rem;
    border-radius: 0.4rem;
    margin-bottom: 0.5rem;
}

.game-item span {
    display: block;
    font-size: 1rem;
    color: #DEE2E6;
    font-weight: 500;
}

.content-section {
    background: rgba(77, 182, 172, 0.05);
    border-radius: 0.8rem;
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid #4DB6AC;
}

.content-section h3 {
    color: #00FFFF;
    margin-bottom: 1rem;
}

.promo-link {
    color: #DB7093;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.promo-link:hover {
    color: #00FFFF;
    text-decoration: underline;
}

.footer {
    background: #1E1E1E;
    padding: 3rem 1rem 2rem;
    border-top: 1px solid #4DB6AC;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: #4DB6AC;
    font-size: 1.2rem;
    padding: 0.5rem;
    text-align: center;
    border: 1px solid rgba(77, 182, 172, 0.3);
    border-radius: 0.4rem;
    transition: all 0.3s ease;
}

.partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.partners img {
    width: 3rem;
    height: 3rem;
    border-radius: 0.4rem;
    opacity: 0.7;
}

.copyright {
    text-align: center;
    color: #A0522D;
    font-size: 1.2rem;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-top: 1px solid #4DB6AC;
    z-index: 1000;
}

.bottom-nav-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
    max-width: 430px;
    margin: 0 auto;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0.4rem;
    color: #DEE2E6;
    text-decoration: none;
}

.bottom-nav-item i {
    font-size: 2rem;
    margin-bottom: 0.2rem;
}

.bottom-nav-item span {
    font-size: 1rem;
    font-weight: 500;
}

@media (min-width: 431px) {
    .container {
        max-width: 1200px;
        padding: 0 2rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(8, 1fr);
    }
    
    .bottom-nav {
        display: none;
    }
    
    .main {
        padding-bottom: 2rem;
    }
}

.text-primary { color: #00FFFF; }
.text-secondary { color: #4DB6AC; }
.text-accent { color: #DB7093; }
.mb-2 { margin-bottom: 2rem; } 