a {

    text-decoration: none;

    color: #333;

}

p {

    color: #000 !important;

}

.container {

    max-width: 430px;

    width: 100%;
    overflow: hidden;
    display: flex;
    min-height: 600px;
    background-image: url(images/bg2.png);
    background-size: cover;
}

.sidebar {
    width: 80px;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    padding: 15px 0;
}
.pig_header {
    background: #fff !important;
}
.bg-black {
    background: #fff !important;
}
.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.nav-item:hover {
    background: rgba(255, 87, 87, 0.1);
}

.nav-item.active {
    background: rgba(255, 87, 87, 0.15);
}
.nav-item img {
    width: 50px;
    height: 50px;
}

.nav-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 20px;
    background: #ff5757;
    border-radius: 0 2px 2px 0;
}

.nav-icon {
    width: 32px;
    height: 32px;
    background: #ddd;
    border-radius: 8px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.hot-badge {
    background: linear-gradient(45deg, #ff4757, #ff6b7a);
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 8px;
    position: absolute;
    top: 5px;
    right: 5px;
    font-weight: bold;
}

.nav-text {
    font-size: 11px;
    color: #666;
    text-align: center;
}

.main-content {
    flex: 1;
    padding: 15px;
    background: #fafafa;
    overflow-y: auto;
    max-height: 600px;
}

.games-category {
    display: none;
}

.games-category.active {
    display: block;
}
.games-category.games-28 .games-grid {
    grid-template-columns: 1fr;
}
.games-category.games-28 .game-card {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none !important;
    box-shadow: none !important;
}
.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.game-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease;
    aspect-ratio: 1;
}

.game-card:hover {
    transform: scale(1.05);
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 12px;
    text-align: center;
    padding: 8px;
}



.notification-badge {
    position: absolute;
    top: 3px;
    left: 3px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    font-size: 10px !important;
    font-weight: bold !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}
.v1 {
    width: 30px;
    height: 20px;
    border-radius: 12px;
}
.pg-logo {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
}

.game-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.233);
}
.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.game-card svg {
    width: 100%;
}

.pb-6 {
padding-bottom: 0 !important;;
}

/* AOS overflow fix - hide elements until animations load */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Specific overflow fix only for dragon animation container */
.relative.w-full.flex.justify-center.items-center.max-w-\[375px\].z-\[2\] {
    overflow: hidden;
}

/* Alternative approach - hide all AOS elements initially */
body:not(.aos-animate) [data-aos] {
    visibility: hidden;
}

body.aos-animate [data-aos] {
    visibility: visible;
}