.games-slideshow-container {
    width: 95%;
    max-width: 1100px;
    height: 220px;
    margin: 10px auto 45px;
    border-radius: 12px;
    overflow: visible;
    position: relative;
    background: rgba(30, 60, 114, 0.6);
    backdrop-filter: blur(10px);
    border: none;
    display: none;
}

#game-count-message,
#partner-count-message {
    background: rgba(30, 60, 114, 0.6);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 12px;
    color: white;
    display: inline-block;
    margin: 5px auto 20px;
    font-size: 13px;
    font-weight: 700;
}

.discord-message {
    color: #b0b0b0;
    font-size: 0.95rem;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.6s ease-in-out;
    display: flex;
    align-items: center;
    padding: 0 40px;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide.active .slide-content {
    transform: translateY(0);
}

.slide.active .slide-image-preview {
    transform: scale(1) rotate(0deg);
}

.slide-content {
    flex: 1;
    z-index: 2;
    text-align: left;
    transform: translateY(10px);
    transition: transform 0.6s ease;
}

.slide.active .slide-content {
    transform: translateY(0);
}

.slide-tag {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    border: 1px solid rgba(0, 212, 255, 0.2);
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
    border-radius: 12px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.slide-title {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    line-height: 1;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.slide-plays {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-btn {
    padding: 10px 24px;
    background: #00d4ff;
    color: black;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.slide-btn:hover {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.slide-image-preview {
    width: 320px;
    height: 180px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-left: 40px;
    flex-shrink: 0;
}

.slide:hover .slide-image-preview {
    transform: scale(1.05);
}

.slides-nav {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 8px;
}

.nav-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.nav-dot.active {
    background: #00d4ff;
    width: 20px;
    border-radius: 6px;
}

@keyframes dot-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.play-count-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    color: #4d94ff;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
    border: 1px solid rgba(77, 148, 255, 0.2);
    pointer-events: none;
}

.game-icon:hover .play-count-tag {
    opacity: 1;
    transform: translateY(0);
}

body.useawp .games-slideshow-container,
body.useawp #game-count-message,
body.useawp #partner-count-message {
    background: rgba(25, 40, 32, 0.8) !important;
    backdrop-filter: blur(5px) !important;
    border-radius: 10px !important;
    border: 1px solid rgba(70, 120, 85, 0.4) !important;
}

body.useawp .slide-tag {
    background: rgba(70, 120, 85, 0.2);
    color: rgb(130, 170, 140);
}

body.useawp .slide-btn {
    background: rgb(70, 120, 85);
    color: rgb(225, 240, 230);
}

body.useawp .nav-dot.active {
    background: rgb(130, 170, 140);
}

body.useawp .play-count-tag {
    color: rgb(130, 170, 140);
    background: rgba(15, 25, 18, 0.9);
}

body.useawp .slide-plays svg {
    fill: rgb(130, 170, 140);
}

body.cherryblossom .games-slideshow-container,
body.cherryblossom #game-count-message,
body.cherryblossom #partner-count-message {
    background: rgba(145, 82, 111, 0.8) !important;
    backdrop-filter: blur(5px) !important;
    border-radius: 12px !important;
    border: none !important;
}

body.cherryblossom .slide-tag {
    background: #91526f;
    color: white;
}

body.cherryblossom .slide-btn {
    background: #91526f;
    color: white;
}

body.cherryblossom .nav-dot.active {
    background: #91526f;
}

body.cherryblossom .play-count-tag {
    background: rgba(145, 82, 111, 0.9);
    color: white;
}

body.cherryblossom .slide-plays svg {
    fill: rgb(255, 182, 193);
}

body.kittycat .games-slideshow-container,
body.kittycat #game-count-message,
body.kittycat #partner-count-message {
    background: rgba(126, 73, 56, 0.85) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 12px !important;
    border: 1px solid rgba(233, 186, 183, 0.4) !important;
}

body.kittycat .slide-tag {
    background: rgba(233, 186, 183, 0.25);
    color: #E9BAB7;
    border-color: rgba(233, 186, 183, 0.4);
}

body.kittycat .slide-title {
    color: #FFF;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
}

body.kittycat .slide-plays {
    color: rgba(233, 186, 183, 0.9);
}

body.kittycat .slide-btn {
    background: #E9BAB7;
    color: #030304;
}

body.kittycat .slide-btn:hover {
    background: #AEB5C2;
}

body.kittycat .nav-dot {
    background: rgba(233, 186, 183, 0.3);
}

body.kittycat .nav-dot.active {
    background: #E9BAB7;
}

body.kittycat .play-count-tag {
    background: rgba(126, 73, 56, 0.9);
    color: #E9BAB7;
    border-color: rgba(233, 186, 183, 0.3);
}

body.kittycat .slide-plays svg {
    fill: #E9BAB7;
}
