/* Dice Oyunu CSS */

/* Backgradient Dark */
.backgradientDark {
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.9) 0%, rgba(33, 33, 33, 0.9) 100%);
    border: 1px solid rgba(33, 33, 33, 0.5);
}

/* Dice Step Animations */
.dice-step-1 {
    background: linear-gradient(135deg, rgba(227, 146, 20, 0.1) 0%, rgba(227, 146, 20, 0.05) 100%);
    border-radius: 0.5rem;
    opacity: 0.5;
}

.dice-step-2-desktop,
.dice-step-2 {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    border-radius: 0.5rem;
    opacity: 0.3;
}

.dice-step-3 {
    background: linear-gradient(135deg, rgba(33, 33, 33, 0.8) 0%, rgba(17, 17, 17, 0.8) 100%);
    border-radius: 0.5rem;
}

/* Responsive DÃƒÆ’Ã‚Â¼zenlemeler */
@media (max-width: 1024px) {
    .dice-step-2-desktop {
        display: none;
    }
    
    .dice-step-2 {
        display: grid;
    }
}

@media (min-width: 1024px) {
    .dice-step-2-desktop {
        display: grid;
    }
    
    .dice-step-2 {
        display: none;
    }
}

/* Dice Layout SÃƒâ€žÃ‚Â±nÃƒâ€žÃ‚Â±flarÃƒâ€žÃ‚Â± */
.dice-wrapper {
    overflow: hidden;
}

.dice-content {
    margin: 0 auto 3rem;
    width: 100%;
    padding: 0 1rem;
}

.dice-grid-layout {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
    height: 100%;
    width: 100%;
}

.dice-header-section {
    grid-area: span 1 / span 12;
}

.dice-header-nav {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.dice-header-link {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    width: max-content;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.dice-header-link svg {
    padding: 0.5rem;
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    background-color: rgb(17, 17, 17);
}

.dice-header-title {
    display: none;
    font-size: 1.875rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.dice-main-section {
    width: 100%;
    grid-area: span 8 / span 12;
}

.dice-main-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    align-items: start;
}

.dice-control-panel {
    z-index: 10;
    order: 2;
    grid-column: span 3;
    user-select: none;
}

.dice-control-box {
    width: 21.5rem;
    position: relative;
    height: max-content;
    flex-shrink: 0;
    border-radius: 0.5rem;
    padding: 1rem;
}

.dice-control-box .dice-step-1 {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.dice-control-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dice-game-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dice-game-icon {
    position: relative;
    height: 3rem;
    width: 3rem;
}

.dice-game-icon img {
    position: absolute;
    height: 100%;
    width: 100%;
    inset: 0px;
    color: transparent;
    z-index: 10;
    object-fit: contain;
    filter: grayscale(100%);
}

.dice-game-icon-glow {
    position: absolute;
    height: 1rem;
    width: 1rem;
    border-radius: 0.5rem;
    filter: blur(12px);
    brightness: 150%;
}

.dice-game-icon-glow.top {
    top: 0;
    background-color: rgb(33, 33, 33);
}

.dice-game-icon-glow.bottom-left {
    bottom: 0;
    left: 0;
    background-color: rgba(227, 146, 20, 0.6);
}

.dice-game-icon-glow.bottom-right {
    bottom: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 1);
}

.dice-game-title {
    display: flex;
    flex-direction: column;
}

.dice-game-title h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.dice-game-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.dice-mode-toggle {
    position: relative;
    margin-bottom: 1.5rem;
    display: flex;
    width: 100%;
    justify-content: center;
    border-radius: 0.5rem;
    background-color: rgb(17, 17, 17);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.dice-mode-toggle::before {
    content: '';
    position: absolute;
    left: 0.25rem;
    top: 0;
    height: 90%;
    width: calc(50% - 0.5rem);
    transform: translateY(3px) translateX(var(--dice-toggle-position, 0%));
    border-radius: 0.5rem;
    background-color: rgba(33, 33, 33, 0.6);
    transition: transform 0.3s ease-in-out;
}

.dice-mode-toggle button {
    position: relative;
    z-index: 10;
    border-radius: 0.5rem;
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dice-mode-toggle button.active {
    color: rgba(255, 255, 255, 0.8);
}

.dice-mode-toggle button:not(.active) {
    color: rgba(255, 255, 255, 0.6);
}

/* Otomatik Mod AlanÃƒâ€žÃ‚Â± */
.dice-auto-mode-field {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
}

.dice-auto-mode-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.dice-auto-mode-input-wrapper {
    position: relative;
    width: 100%;
}

.dice-auto-mode-input {
    width: 100%;
    border-radius: 0.5rem;
    background-color: rgb(17, 17, 17);
    padding: 0.75rem;
    padding-right: 2.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    border: none;
    outline: none;
}

.dice-auto-mode-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.dice-auto-mode-input:focus {
    outline: 2px solid rgba(227, 146, 20, 0.6);
    outline-offset: 2px;
}

.dice-auto-mode-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.8);
    animation: dice-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    pointer-events: none;
}

/* Animasyonlar */
@keyframes dice-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.dice-input-wrapper {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.dice-input-label {
    position: absolute;
    top: -1.5rem;
    transform: translateX(-0.75rem);
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.dice-input-field {
    position: relative;
    display: flex;
    width: 100%;
    align-items: center;
    gap: 0.25rem;
    border-radius: 0.5rem;
    background-color: rgb(17, 17, 17);
    padding-left: 0.75rem;
    transition: outline 0.2s ease;
}

.dice-input-field:focus-within {
    outline: 2px solid rgba(227, 146, 20, 0.6);
    outline-offset: 2px;
}

.dice-input-icon {
    position: relative;
    height: 2rem;
    width: 2rem;
}

.dice-input-icon img {
    position: absolute;
    height: 100%;
    width: 100%;
    inset: 0px;
    color: transparent;
    z-index: 10;
    object-fit: contain;
}

.dice-input-icon-pulse {
    position: absolute;
    inset: 0;
    border-radius: 0.5rem;
    filter: blur(12px);
    animation: dice-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.dice-input-icon-pulse.red {
    background-color: rgba(239, 68, 68, 0.4);
}

.dice-input {
    width: 100%;
    border-radius: 0.5rem;
    background-color: rgb(17, 17, 17);
    padding: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    border: none;
    outline: none;
    transition: none;
}

.dice-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.dice-input-buttons {
    position: absolute;
    right: 0.25rem;
    display: flex;
    height: 100%;
    gap: 0.25rem;
    color: white;
}

.dice-input-button {
    margin: 0.25rem 0;
    display: flex;
    align-items: center;
    user-select: none;
    border-radius: 0.5rem;
    background-color: rgb(33, 33, 33);
    padding: 0 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.dice-input-button:hover:not(:disabled) {
    background-color: rgb(43, 43, 43);
    cursor: pointer;
}

.dice-input-button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

/* KazanÃƒÆ’Ã‚Â§ TutarÃƒâ€žÃ‚Â± */
.dice-win-amount-display-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    border-radius: 0.5rem;
    background-color: rgb(17, 17, 17);
    padding-left: 0.75rem;
}


.dice-win-amount-display {
    width: 100%;
    border-radius: 0.5rem;
    background-color: transparent;
    padding: 0.75rem;
    padding-left: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.dice-win-amount-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 20px;
    height: 20px;
    color: transparent;
    object-fit: contain;
    filter: grayscale(100%);
}

.dice-play-buttons {
    order: -1;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
}

.dice-play-button {
    width: 100%;
    max-width: 100%;
}


.dice-game-area-wrapper {
    position: relative;
    order: 1;
    grid-column: span 3;
    width: 100%;
    min-width: 256px;
    user-select: none;
    overflow: hidden;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

.dice-volume-control {
    position: absolute;
    right: 1.5rem;
    top: 0.5rem;
    z-index: 10;
    display: flex;
    height: 1.5rem;
    width: 1.5rem;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dice-volume-control:hover {
    color: rgb(236, 72, 153);
}

.dice-game-area-content {
    position: relative;
    border-radius: 0.5rem;
    color: rgb(214, 214, 214);
    height: 100%;
    min-height: auto;
    max-height: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    flex: 1;
}

.dice-game-area-bg-image {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    opacity: 0.4;
    filter: blur(4px) grayscale(100%);
    color: transparent;
}

.dice-game-area-overlay-bg {
    position: absolute;
    inset: 0;
    background-color: rgba(33, 33, 33, 0.5);
}

.dice-game-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 1rem;
    padding-bottom: 0;
    height: auto;
    flex: 1;
}

/* Scroll Gradient */
.dice-scroll-gradient {
    position: relative;
    display: flex;
    align-items: center;
    height: 3rem;
    gap: 0.5rem;
    overflow: hidden;
}

.dice-scroll-gradient::after {
    content: '';
    position: absolute;
    z-index: 10;
    width: 3rem;
    height: 100%;
    right: -0.5rem;
    background: linear-gradient(to left, rgba(33, 33, 33, 1) 0%, rgba(33, 33, 33, 0.9) 50%, transparent 100%);
}

/* Zar DeÃƒâ€žÃ…Â¸eri */
.dice-value-display {
    z-index: 10;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.dice-value-label {
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.dice-value-number {
    z-index: 10;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 1;
    transform: none;
}

.dice-value-text {
    margin-top: -0.25rem;
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
}

/* Slider */
.dice-slider-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    width: 100%;
}

.dice-slider-track {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 2rem;
    margin: 1rem 0;
    cursor: pointer;
}

.dice-slider-background {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    transform: scale(1.02);
    cursor: default;
    border-radius: 0.5rem;
    background-color: rgb(33, 33, 33);
    z-index: 1;
}

.dice-slider-track::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 0.75rem;
    width: 100%;
    border-radius: 4px;
    background: linear-gradient(to right, rgb(229, 5, 14) 50%, rgb(0, 255, 134) 50%);
    z-index: 2;
}

.dice-slider-handle {
    position: absolute;
    top: -0.5rem;
    height: 1.75rem;
    width: 0.75rem;
    cursor: pointer;
    border-radius: 2px;
    background-color: rgb(240, 240, 240);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.dice-slider-tooltip {
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    min-width: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
    padding: 0.25rem 0.5rem;
    white-space: nowrap;
    color: white;
    background-color: rgb(17, 17, 17);
    font-size: 0.75rem;
}

.dice-slider-tooltip-value {
    display: block;
}

/* Slider Labels */
.dice-slider-labels-desktop {
    position: relative;
    display: none;
    width: 100%;
    transform: translateY(-1.5rem);
    align-items: center;
    justify-content: space-between;
}

.dice-slider-labels-mobile {
    position: relative;
    display: flex;
    width: 100%;
    transform: translateY(-1.5rem);
    align-items: center;
    justify-content: space-between;
}

.dice-slider-label-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.dice-slider-label-line {
    height: 0.75rem;
    width: 2px;
    background-color: rgb(107, 114, 128);
}

.dice-slider-label-text {
    position: absolute;
    top: 0.75rem;
    font-size: 0.75rem;
    color: white;
}


/* Bottom Controls */
.dice-bottom-controls {
    position: relative;
    margin-top: 20px;
    margin-bottom: 0;
    display: flex;
    height: max-content;
    width: 100%;
    align-items: center;
    justify-content: space-around;
    gap: 1rem;
    border-radius: 0.5rem;
    padding: 0.5rem 1.5rem;
    padding-bottom: 1rem;
    color: white;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.95) 0%, rgba(33, 33, 33, 0.95) 100%);
    z-index: 10;
}

.dice-bottom-controls.dice-step-2 {
    opacity: 1;
}

.dice-bottom-controls-content {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    gap: 1rem;
    width: 100%;
    z-index: 20;
}

.dice-multiplier-input-wrapper {
    display: flex;
    flex-direction: column;
}

.dice-multiplier-input-field {
    position: relative;
    display: flex;
    width: 100%;
    align-items: center;
    gap: 0.25rem;
    border-radius: 0.5rem;
    background-color: rgb(17, 17, 17);
    padding-left: 0.75rem;
    transition: outline 0.2s ease;
}

.dice-multiplier-input-field:focus-within {
    outline: 2px solid rgba(239, 68, 68, 0.6);
    outline-offset: 2px;
}

.dice-multiplier-input {
    width: 100%;
    border-radius: 0.5rem;
    background-color: rgb(17, 17, 17);
    padding: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    border: none;
    outline: none;
    pointer-events: none;
    user-select: none;
}

.dice-multiplier-input-icon {
    pointer-events: none;
    margin-right: 0.5rem;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    height: 1em;
    width: 1em;
}

/* Direction Buttons */
.dice-direction-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.dice-direction-buttons-desktop {
    position: relative;
    display: none;
    width: fit-content;
    justify-content: flex-start;
    border-radius: 0.5rem;
    background-color: rgb(17, 17, 17);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.dice-direction-buttons-mobile {
    position: relative;
    display: flex;
    width: fit-content;
    justify-content: flex-start;
    border-radius: 0.5rem;
    background-color: rgb(17, 17, 17);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.dice-direction-button {
    position: relative;
    z-index: 10;
    border-radius: 0.5rem;
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.6);
}

.dice-direction-button.active {
    background-color: rgba(33, 33, 33, 0.6);
    color: rgba(255, 255, 255, 0.8);
}

.dice-direction-button-mobile {
    position: relative;
    z-index: 10;
    border-radius: 0.5rem;
    background-color: rgba(239, 68, 68, 0.6);
    padding: 0.5rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-width: 3rem;
    gap: 0.5rem;
}

.dice-direction-button-mobile:hover {
    background-color: rgba(239, 68, 68, 0.8);
}

.dice-direction-button-mobile.active {
    background-color: rgba(239, 68, 68, 0.9);
    border: 2px solid rgba(239, 68, 68, 1);
}

.dice-direction-button-mobile-text {
    display: none;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

.dice-direction-icon {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    height: 1em;
    width: 1em;
    flex-shrink: 0;
}

/* Win Chance Input */
.dice-win-chance-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.dice-win-chance-input-field {
    position: relative;
    display: flex;
    width: 100%;
    align-items: center;
    gap: 0.25rem;
    border-radius: 0.5rem;
    background-color: rgb(17, 17, 17);
    padding-left: 0.25rem;
    transition: outline 0.2s ease;
}

.dice-win-chance-input-field:focus-within {
    outline: 2px solid rgba(239, 68, 68, 0.6);
    outline-offset: 2px;
}

.dice-win-chance-input {
    width: 100%;
    border-radius: 0.5rem;
    background-color: rgb(17, 17, 17);
    padding: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    border: none;
    outline: none;
    pointer-events: none;
    user-select: none;
}

.dice-win-chance-input-icon {
    pointer-events: none;
    margin-right: 0.5rem;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    height: 1em;
    width: 1em;
}

/* Responsive */
@media (min-width: 768px) {
    .dice-header-nav {
        display: flex;
    }
    
    .dice-header-title {
        display: block;
    }
    
    .dice-play-buttons {
        order: 0;
        margin-top: 1rem;
    }
    
    .dice-slider-labels-desktop {
        display: flex;
    }
    
    .dice-slider-labels-mobile {
        display: none;
    }
    
    .dice-direction-buttons-desktop {
        display: flex;
    }
    
    .dice-direction-buttons-mobile {
        display: none;
    }
}

@media (min-width: 1024px) {
    .dice-main-grid {
        display: flex;
    }
    
    .dice-control-panel {
        order: 1;
        grid-column: span 1;
    }
    
    .dice-game-area-wrapper {
        order: 2;
        grid-column: span 2;
    }
    
    .dice-control-box {
        width: 20rem;
    }
    
    .dice-game-area-content {
        min-height: auto;
    }
}

/* Ãƒâ€žÃ‚Â°statistikler Butonu */
.dice-stats-button-wrapper {
    position: relative;
    margin-left: auto;
    display: flex;
    width: 100%;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

/* Stats icon - SVG elementleri iÃƒÆ’Ã‚Â§in */
svg.dice-stats-icon {
    cursor: pointer;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.5s ease;
}

svg.dice-stats-icon:hover {
    color: rgb(255, 255, 255);
}

.dice-stats-icon-rotate {
    transform: rotate(180deg);
}

/* Ãƒâ€žÃ‚Â°statistikler Modal */
.dice-stats-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.dice-stats-modal.active {
    display: flex;
}

.dice-stats-modal-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.dice-stats-modal-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 28rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(227, 146, 20, 0.6);
    background-color: rgb(17, 17, 17);
    padding: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform-origin: center bottom;
    animation: dice-modal-enter 0.2s ease-out;
}

@keyframes dice-modal-enter {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.dice-stats-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.dice-stats-modal-title {
    margin: 0;
    text-align: center;
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    flex: 1;
}

.dice-stats-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.dice-stats-modal-close:hover {
    color: white;
}

.dice-stats-modal-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dice-stats-tours {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 0.75rem;
    background-color: rgb(17, 17, 17);
    padding: 0.25rem 0.25rem 0.75rem;
}

.dice-stats-tour-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.dice-stats-tour-label {
    margin-bottom: 0.25rem;
}

.dice-stats-tour-value {
    font-weight: 600;
}

.dice-stats-tour-value.wins {
    color: rgb(74, 222, 128);
}

.dice-stats-tour-value.losses {
    color: rgb(248, 113, 113);
}

.dice-stats-chart {
    border-radius: 0.75rem;
    background-color: rgb(17, 17, 17);
    width: 100%;
    height: 100px;
    min-width: 0;
    overflow: hidden;
}

.dice-stats-chart-placeholder {
    width: 100%;
    height: 100%;
}

.dice-stats-chart-placeholder svg {
    width: 100%;
    height: 100%;
}

.dice-stats-summary {
    display: flex;
    width: 100%;
    gap: 0.5rem;
}

.dice-stats-summary-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    border-radius: 0.75rem;
    background-color: rgb(17, 17, 17);
    padding: 0.25rem 0.25rem 0.75rem;
}

.dice-stats-summary-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.dice-stats-summary-value {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dice-stats-summary-amount {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.dice-stats-summary-amount.profit {
    color: rgb(74, 222, 128);
}

.dice-stats-coin-icon {
    width: 20px;
    height: 20px;
    color: transparent;
    object-fit: contain;
}

/* Alert Modal AnimasyonlarÃƒâ€žÃ‚Â± */
@keyframes dice-alert-enter {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes dice-alert-exit {
    from {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
}

