/* styles.css */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Raleway', sans-serif;
    background: url('background.jpg') no-repeat center center fixed;
    backdrop-filter: blur(30px);
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mint-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.mint-card {
    position: relative;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    max-width: 350px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    color: white;
    transition: transform 0.3s;
    background: rgba(0, 0, 0, 0.7);
}

.mint-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(5px);
    z-index: -1;
    border-radius: 20px;
}

.mint-card:hover {
    transform: translateY(-10px);
}

.header h1 {
    color: #fff;
    margin: 0;
    font-size: 28px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.header p {
    color: #ddd;
    margin: 10px 0;
    font-size: 18px;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 5px solid white;
    border-radius: 50%;
    overflow: hidden;
    width: 190px;
    height: 190px;
    margin: 0 auto 20px;
}

.nft-image {
    width: 100%;
    height: 100%;
    transition: transform 0.3s;
    object-fit: cover;
}

.nft-image:hover {
    transform: scale(1.1);
}

.mint-details p {
    color: #ccc;
    margin: 10px 0;
    font-size: 18px;
    font-weight: bold;
}

.mint-details h2 {
    color: #ccc;
    margin: 10px 0;
    font-size: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.mint-quantity {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
    background: rgba(29, 29, 29, 0.9);
    border-radius: 20px;
    padding: 5px 15px;
    max-width: 300px;
    margin: 20px auto;
}

.mint-quantity button {
    background: transparent;
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
    font-size: 20px;
    transition: background 0.3s, transform 0.3s;
}

.mint-quantity button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

#quantity-container {
    background: transparent;
    border-radius: 5px;
    padding: 10px;
    font-size: 20px;
    color: white;
    font-weight: bold;
    text-align: center;
    margin: 0 10px;
    width: 10px;
}

.mint-quantity p {
    color: #fff;
    font-size: 14px;
    margin-left: 10px;
}

.mint-total {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
}

.mint-total::before,
.mint-total::after {
    content: "";
    width: 80%;
    border-bottom: 1px solid #eeebeb;
}

.mint-total::before {
    margin-bottom: 10px;
}

.mint-total::after {
    margin-top: 10px;
}

.mint-total h3 {
    color: #ccc;
    font-size: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.connect-wallet {
    background: white;
    border: none;
    color: black;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 20px;
    font-size: 20px;
    font-family: 'Cabin', sans-serif;
    transition: background 0.3s, transform 0.3s;
}

.connect-wallet:hover {
    background: #f0f0f0;
    transform: scale(1.1);
}

.mint-card p {
    color: #aaa;
    font-size: 18px;
    font-weight: bold;
}

@media (max-width: 1200px) {
    .mint-card {
        max-width: 80%;
    }
}

@media (max-width: 992px) {
    .mint-card {
        max-width: 90%;
    }

    .header h1 {
        font-size: 24px;
    }

    .header p, .mint-details p, .mint-details h2, .mint-total h3, .connect-wallet, .mint-card p {
        font-size: 18px;
    }

    .mint-quantity button, #quantity-container {
        font-size: 18px;
        padding: 8px;
    }
}

@media (max-width: 768px) {
    .mint-card {
        max-width: 95%;
        padding: 20px;
    }

    .header h1 {
        font-size: 20px;
    }

    .header p, .mint-details p, .mint-details h2, .mint-total h3, .connect-wallet, .mint-card p {
        font-size: 16px;
    }

    .mint-quantity {
        flex-direction: column;
        padding: 10px;
    }

    .mint-quantity button, #quantity-container {
        font-size: 16px;
    }

    .mint-total h3 {
        font-size: 18px;
    }
}
