.myCards{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    .myCard{
        user-select:none;
        border: 1px solid #ffffff22;
        display: flex;
        flex-direction: column;
        background-color: rgb(34, 34, 34, 0.9);
        border-radius: .7rem;
        backdrop-filter: blur(34px);
        .CardContent{
            ul{
                padding: 0px;
                list-style-type: none;
                li{
                    display: flex;
                    flex-direction: row;
                    img{
                        margin-right: 5px;
                    }
                }
            }
        }
    }
}
.nft{
    user-select:none;
    max-width: 300px;
    border: 1px solid #ffffff22;
    display: flex;
    justify-content: center;
    background: linear-gradient(0deg, rgb(34, 34, 34) 0%, rgba(18, 18, 18, 0.5) 100%);
    border-radius: .7rem;
    backdrop-filter: blur(34px);
    -webkit-backdrop-filter: blur(7px);

    transition: .5s all;
    hr{
        width: 100%;
        border: none;
        border-bottom: 1px solid #88888855;
        margin-top: 0;
    }
    ins{
        text-decoration: none;
    }
    .mainCard{
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 1rem;
        .tokenImage{
            border-radius: .5rem;
            max-width: 100%;
            height: 250px;
            object-fit: contain;
            transform: scale(1.2);
        }
        .descriptionCard{
            margin: .5rem 0;
            color: #000000;
        }
        .tokenInfo{
            display: flex;
            justify-content: space-between;
            align-items: center;
            .price{
                display: flex;
                align-items: center;
                color: #ee83e5;
                font-weight: 700;
                ins{
                    margin-left: -.3rem;
                    margin-right: .5rem;
                }
            }
            .duration{
                display: flex;
                align-items: center;
                color: #a89ec9;
                margin-right: .2rem;
                ins{
                    margin: .5rem;
                    margin-bottom: .4rem;
                }
            }
        }
        .creator{
            display: flex;
            align-items: center;
            margin-top: .2rem;
            margin-bottom: -.3rem;
            p{
                margin: 0px;
            }
            ins{
                color: #989898;
                text-decoration: none;
            }
            .wrapper{
                display: flex;
                align-items: center;
                padding: .3rem;
                padding-left: 0px;
                margin: 0;
                margin-right: .5rem;
                border-radius: 100%;
                img{
                    border-radius: 100%;
                    width: 2rem;
                    height: 2rem;
                    object-fit: cover;
                    margin: 0;
                }
            }
        }
    }
    ::before{
        position: fixed;
        content: "";
        box-shadow: 0 0 100px 40px #ffffff08;
        top: -10%;
        left: -100%;
        transform: rotate(-45deg);
        height: 60rem;
        transition: .7s all;
    }
    &:hover{
        border: 1px solid #ffffff44;
        transform: scale(1.015);
        filter: brightness(1.3);
        ::before{
            filter: brightness(.5);
            top: -100%;
            left: 200%;
        }
    }
}
.owl-nav{
    button.owl-prev{
        position: absolute;
        left: -15px;
        top: 45%;
        padding-top: 5px!important;
        padding-bottom: 5px!important;
        padding-left: 16px!important;
        padding-right: 16px!important;
        border-radius: 16px;
        scale: 120%;
        color: #0a0a0a!important;
        background: rgba(255, 255, 255, 0.4) !important;
        outline: thin solid #000000;
        &:hover{
            background: rgba(0, 0, 0, 0.4) !important;
            color: #ffffff!important;
            outline: thin solid #000000;
            i{
                color: #ffffff!important;
            }
        }

    }
    button.owl-next{
        position: absolute;
        right: -15px;
        top: 45%;
        scale: 120%;
        padding-top: 5px!important;
        padding-bottom: 5px!important;
        padding-left: 16px!important;
        padding-right: 16px!important;
        border-radius: 16px;
        color: #ffffff!important;
        background: rgba(255, 255, 255, 0.4) !important;
        outline: thin solid #7e7e7e;
        i{
            color: #000000 !important;
        }
        &:hover{
            background: rgba(0, 0, 0, 0.4) !important;
            color: #ffffff!important;
            outline: thin solid #ffffff;
            i{
                color: #ffffff!important;
            }
        }
    }
}
@media (max-width: 600px) {
    .owl-nav{
        button.owl-prev{
            left: 25px!important;
        }
        button.owl-next{
            right: 25px!important;
        }

    }
}
.owl-dots{
    margin-top: 45px;
    button.owl-dot{
        span{
            background-color: transparent;
            border: 1px solid #0a0a0a;
        }
    }
    button.owl-dot.active{
        span{
            background-color: #0a0a0a;

        }

    }
}
.owl-dots {
    text-align: center;
    margin-top: 20px;
}
.owl-dot {
    display: inline-block;
    margin: 5px;
}
.owl-dot span {
    width: 12px;
    height: 12px;
    background: #ccc;
    display: block;
    border-radius: 50%; /* yuvarlak olması için */
    transition: background 0.3s;
}
.owl-dot.active span {
    background: #000; /* aktif dot rengi */
}
.owl-item{
    display: flex;
    justify-content: center;
}
