:root {
    --dark-navy: #0a192f;
    --light-navy: #112240;
    --navy-shadow: rgba(2, 12, 27, 0.7);
    --light-blue: #ebecf1;
    --text-primary: #ccd6f6;
    --text-secondary: #8892b0;
}

.pt-0 {
  padding-top: 0px !important;
}

.plandr25px {
  padding-left: 25px;
  padding-right: 25px;
}

.dcs-container {
    width: 98%;
   background: linear-gradient(to right, #13233B, #475D77, #13233B)!important;
    border-radius: 20px;
    box-shadow: 0 20px 40px var(--navy-shadow);
    max-width: var(--content-width);
    margin:0 auto;
    padding:15px
}

@media only screen and (max-width: 768px) {
    .dcs-container {
        width: 95%; /* Mobilde genişliği %95 yap */
        padding: 15px;
        max-width:95%!important;
    }
}


@media only screen and (min-width: 769px) and (max-width: 1500px) {
    .dcs-container {
        max-width: 100%!important;
    }
}

.dcs-row {
    display: grid;
    grid-template-columns: 1fr 1fr 60px;
    padding: 1.2rem;
    margin: 10px 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0);
    position: relative;
    cursor: pointer;
    opacity: 1;
}

.dcs-row:hover {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--light-blue);
    box-shadow: 0 1px 3px rgba(239, 239, 240, 0.658);
}

.dcs-label {
    color: var(--text-primary);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.dcs-value {
    color: var(--text-secondary);
    font-weight: 600;
    text-align: right;
    padding-right: 20px;
    transition: color 0.3s ease;
}

.dcs-value.success {
    color: white;
    text-shadow: 0 1 10px rgb(0, 0, 0);
}

.dcs-value.warning {
    color: #f1f1f1d8;
}

.dcs-value.highlight {
    color: #f0f0f0;
    text-shadow: 0 1 10px rgb(0, 0, 0);
}

.dcs-check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-blue);
    font-size: 1.2rem;
    opacity: 0;
    transform: scale(0);
}

.dcs-row.show-check .dcs-check-icon {
    opacity: 1;
    transform: scale(1);
    text-shadow: 0 0 10px rgb(0, 0, 0);
}

/* Mobil responsive tasarım güncellemesi */
@media (max-width: 768px) {
    .dcs-container {
        margin: 10px;
        padding: 15px;
    }

    .dcs-row {
        grid-template-columns: 1fr 1fr 40px;
        padding: 1rem;
        opacity: 1;
    }

    .dcs-row.clicked {
        background: rgba(255, 255, 255, 0.12);
    }

    .dcs-row::before {
        opacity: 0.3;
    }

    .dcs-value {
        /* padding-right: 10px; */
        font-size: 0.9rem;
        padding-top:14px;
    }

    .dcs-label {
        font-size: 0.9rem;
        padding-top:10px;
    }
}

/* Karanlık modda performans optimizasyonu */
@media (prefers-reduced-motion: reduce) {
    .dcs-row {
        opacity: 1;
    }
}


/* Zaferin yazdıkları */
.dcs-container-zf {
    width:  100%;
    border-radius: 20px;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
    margin:0 auto;
}


@media only screen and (max-width: 768px) {
    .dcs-container-zf {
        padding: 15px;
        max-width:100%!important;
    }
}


@media only screen and (min-width: 769px) and (max-width: 1501px) {
    .dcs-container-zf {
        max-width:100%!important;
    }
}
