/* Steam Account Slider Styles */
.steam-account-slider {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.steam-account-slider-container {
    overflow: hidden;
    border-radius: 16px;
    position: relative;
    height: 380px;
}

.steam-account-slider-track {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.steam-account-slide {
    flex: 0 0 443px;
    position: relative;
    margin: 0 8px;
    height: 380px;
}

.steam-account-slide-active {
    z-index: 2;
}

.steam-account-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #1a1a1a;
}

.steam-account-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.steam-account-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.steam-account-nav {
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.steam-account-nav:hover {
    background: rgba(255, 44, 44, 0.8);
}

.steam-account-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.steam-account-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}
@media (max-width: 480px) {
    .steam-account-dot {
        width: 14px;
        height: 14px;
    }
}


.steam-account-button:active {
    transform: translateY(0);
}

.steam-account-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.steam-account-modal.show {
    display: flex;
}

.steam-account-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.steam-account-modal-content {
    position: relative;
    background: rgba(45, 45, 45, 0.50);
    backdrop-filter: blur(82px);
    border-radius: 24px;
    padding: 32px;
    max-width: 557px;
    width: 100%;
}

.steam-account-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.steam-account-modal-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.steam-account-modal-close {
    background: none;
    border: none;
    color: white;
    opacity: 0.5;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.steam-account-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.steam-account-modal-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}


.steam-account-modal-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}



.steam-account-modal-copy {
    position: absolute;
    right: 20px;
    background: none;
    border: none;
        color: #fff;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.steam-account-modal-copy:hover {
    color: #333;
}

@media (max-width: 1024px) {
    .steam-account-slider {
        padding: 0 60px;
        max-width: 900px;
    }
    
    .steam-account-slide {
        flex: 0 0 400px;
        height: 320px;
    }
    
    .steam-account-slider-container {
        height: 320px;
    }
    
    .steam-account-nav {
        width: 40px;
        height: 40px;
    }
    
    .steam-account-nav svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 768px) {
    .steam-account-slider {
        padding: 0 40px;
        max-width: 600px;
    }
    
    .steam-account-slide {
        flex: 0 0 350px;
        height: 280px;
    }
    
    .steam-account-slider-container {
        height: 280px;
    }
    
    .steam-account-nav {
        width: 36px;
        height: 36px;
    }
    
    .steam-account-nav svg {
        width: 18px;
        height: 18px;
    }
    
    /* Tablet modal styles */
    #howToGetFreeModal.steam-account-modal {
        align-items: flex-start;
        padding: 20px;
    }
    
    #howToGetFreeModal .steam-account-modal-content {
        margin: 20px auto;
        max-width: 90%;
        width: 100%;
        padding: 24px;
        border-radius: 20px;
        max-height: calc(100vh - 40px);
        overflow-y: auto;
    }
}

@media (max-width: 480px) {
    .steam-account-slider {
        padding: 0;
        max-width: 443px;
    }
    
    .steam-account-slide {
        flex: 0 0 443px;
        height: 380px;
    }
    
    .steam-account-slider-container {
        height: 380px;
    }
    
    .steam-account-button {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    /* Mobile modal styles */
    #howToGetFreeModal.steam-account-modal {
        align-items: flex-start;
        padding: 20px;
    }
    
    #howToGetFreeModal .steam-account-modal-content {
        margin: 20px auto;
        max-width: 100%;
        width: 100%;
        padding: 20px;
        border-radius: 16px;
        max-height: calc(100vh - 40px);
        overflow-y: auto;
    }
    
    #howToGetFreeModal .steam-account-modal-header {
        margin-bottom: 16px;
    }
    
    #howToGetFreeModal .steam-account-modal-body {
        max-height: none;
        overflow-y: visible;
    }
}

@media not all and (min-width: 768px) {
    .max-md\:mb-0 {
        margin-bottom: 0px;
    }
}
#howToGetFreeModal .steam-account-modal-content{
    overflow-y: auto;
}

/* Light theme styles for How to Get Free modal */
[data-theme="light"] #howToGetFreeModal .steam-account-modal-overlay {
    background: rgba(0, 0, 0, 0.5);
}

[data-theme="light"] #howToGetFreeModal .steam-account-modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(82px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

[data-theme="light"] #howToGetFreeModal .steam-account-modal-title h3 {
    color: #212529;
}

[data-theme="light"] #howToGetFreeModal .steam-account-modal-close {
    color: #212529;
}

[data-theme="light"] #howToGetFreeModal .steam-account-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] #howToGetFreeModal .steam-account-modal-body .text-white,
[data-theme="light"] #howToGetFreeModal .steam-account-modal-body .text-white\/80 {
    color: #212529 !important;
}

[data-theme="light"] #howToGetFreeModal .steam-account-modal-body p {
    color: #212529;
}

[data-theme="light"] #howToGetFreeModal .steam-account-modal-body .text-yellow-400 {
    color: #b45309 !important;
}

[data-theme="light"] #howToGetFreeModal .border-white\/20 {
    border-color: rgba(33, 37, 41, 0.2);
}

/* Light theme styles for Find Code modal */
[data-theme="light"] #findCodeModal .steam-account-modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(82px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

[data-theme="light"] #findCodeModal .steam-account-modal-title h3 {
    color: #212529;
}

[data-theme="light"] #findCodeModal .steam-account-modal-close {
    color: #212529;
}

[data-theme="light"] #findCodeModal .text-white,
[data-theme="light"] #findCodeModal .text-white\/80 {
    color: #212529 !important;
}

[data-theme="light"] #findCodeModal .text-white\/60 {
    color: rgba(33, 37, 41, 0.6) !important;
}

[data-theme="light"] #findCodeModal .bg-white\/5 {
    background: rgba(33, 37, 41, 0.05);
}

[data-theme="light"] #findCodeModal .border-white\/10 {
    border-color: rgba(33, 37, 41, 0.1);
}

[data-theme="light"] #findCodeModal .border-white\/50 {
    border-color: rgba(33, 37, 41, 0.3);
}

[data-theme="light"] #findCodeModal .text-yellow-400 {
    color: #b45309 !important;
}

[data-theme="light"] #findCodeModal input.steam-account-modal-input {
    color: #212529;
    border-color: rgba(33, 37, 41, 0.3);
}

[data-theme="light"] #findCodeModal input.steam-account-modal-input::placeholder {
    color: rgba(33, 37, 41, 0.5);
}

/* Light theme styles for Choice modal (GET ACCESS) */
[data-theme="light"] #choiceModal .steam-account-modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(82px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

[data-theme="light"] #choiceModal .steam-account-modal-title h3 {
    color: #212529;
}

[data-theme="light"] #choiceModal .steam-account-modal-close {
    color: #212529;
}

[data-theme="light"] #choiceModal .steam-account-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] #choiceModal .text-white,
[data-theme="light"] #choiceModal .text-white\/80 {
    color: #212529 !important;
}

[data-theme="light"] #choiceModal .text-white\/60 {
    color: rgba(33, 37, 41, 0.6) !important;
}

/* Light theme styles for Minigame modal (PLAY TO GET ACCESS) */
[data-theme="light"] #minigameModal .steam-account-modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(82px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

[data-theme="light"] #minigameModal .steam-account-modal-title h3 {
    color: #212529;
}

[data-theme="light"] #minigameModal .steam-account-modal-close {
    color: #212529;
}

[data-theme="light"] #minigameModal .steam-account-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] #minigameModal .text-white,
[data-theme="light"] #minigameModal .text-white\/80 {
    color: #212529 !important;
}

[data-theme="light"] #minigameModal .text-white\/60 {
    color: rgba(33, 37, 41, 0.6) !important;
}

[data-theme="light"] #minigameModal .minigame-stats span {
    color: #212529;
}