
.header {
    background-color: #1a1a1a;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    flex-shrink: 0;
    letter-spacing: -0.5px;
}

.logo-p {
    color: #4fc3f7;
    text-decoration: none;
}

.logo-games {
    color: #ffffff;
}


.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-link {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: #ffffff;
}


.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #2a2a2a;
    border-radius: 6px;
    padding: 8px 15px;
    max-width: 300px;
    width: 100%;
    margin-left: auto;
}

.search-icon {
    color: #666;
    margin-right: 10px;
    flex-shrink: 0;
    cursor: pointer;
}

.search-input {
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 14px;
    width: 100%;
}

.search-input::placeholder {
    color: #666;
}


@media (max-width: 768px) {
    .nav-wrapper {
        flex-wrap: wrap;
    }
    
    .nav-links {
        order: 3;
        width: 100%;
        justify-content: left;
        margin-top: 0;
        overflow-x: auto;
    }
    
    .search-box {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 20px;
    }
    
    .nav-link {
        font-size: 13px;
    }
    
    .search-box {
        padding: 6px 12px;
    }
}



.about-section {
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    padding: 80px 0;
    margin-top: 60px;
    border-top: 1px solid #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
}

.about-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 20px;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #4fc3f7 0%, #29b6f6 100%);
    border-radius: 2px;
}

.about-text {
    color: #b0b0b0;
    font-size: 16px;
    line-height: 2;
    text-align: justify;
}

.about-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #4fc3f7;
    margin-top: 35px;
    margin-bottom: 15px;
    padding-left: 15px;
    border-left: 4px solid #4fc3f7;
    line-height: 1.4;
}

.about-subtitle:first-child {
    margin-top: 0;
}

.about-text p {
    margin-bottom: 25px;
    text-indent: 2em;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text p:first-letter {
    font-size: 1.3em;
    font-weight: 600;
    color: #4fc3f7;
}


@media (max-width: 1024px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-title {
        font-size: 28px;
        margin-bottom: 35px;
    }
    
    .about-subtitle {
        font-size: 18px;
        margin-top: 30px;
        margin-bottom: 12px;
    }
    
    .about-text {
        font-size: 15px;
        line-height: 1.9;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 50px 0;
        margin-top: 40px;
    }
    
    .about-title {
        font-size: 24px;
        margin-bottom: 30px;
        padding-bottom: 15px;
    }
    
    .about-title::after {
        width: 80px;
        height: 3px;
    }
    
    .about-subtitle {
        font-size: 17px;
        margin-top: 25px;
        margin-bottom: 10px;
        padding-left: 12px;
        border-left-width: 3px;
    }
    
    .about-text {
        font-size: 14px;
        line-height: 1.8;
        text-align: left;
    }
    
    .about-text p {
        margin-bottom: 20px;
        text-indent: 1.5em;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 40px 0;
    }
    
    .about-title {
        font-size: 20px;
        margin-bottom: 25px;
    }
    
    .about-subtitle {
        font-size: 16px;
        margin-top: 20px;
        margin-bottom: 8px;
        padding-left: 10px;
    }
    
    .about-text {
        font-size: 13px;
        line-height: 1.7;
    }
    
    .about-text p {
        margin-bottom: 18px;
    }
}


.footer {
    background-color: #1a1a1a;
    border-top: 1px solid #2a2a2a;
    padding: 30px 0;
    margin-top: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: #666;
    font-size: 14px;
}

.footer-copyright p {
    margin: 0;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-link {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #4fc3f7;
}

.footer-separator {
    color: #444;
    user-select: none;
}


@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 20px 0;
    }
    
    .footer-copyright {
        font-size: 12px;
    }
    
    .footer-link {
        font-size: 12px;
    }
    
    .footer-links {
        gap: 10px;
    }
}


.u_ad{
    width: 100%;
    max-width: 1400px;
    background: #b0b0b0;
    padding: 15px 0;
    padding-top: 5px;
    margin: 0 auto;
    
    border-radius: 5px;
    color: #ffffffbb;
    p{
        text-align: center;
        color: #ffffffbb;
        margin-bottom: 12px;
    }
    .u_ad_cont{
        width: 100%;
        min-height: 250px;
        display: flex;
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .u_ad{
        width: 100%;
        margin: 0 auto;
    }
}

