
*{
margin: auto;
}
.bg-background{
    background-color: #eee;
        padding: 30px;
}
.heading5{
color: #fff !important;
}

.plan-button{
    background-color: #fff !important;
     color:#538a87 !important;
}
.plan-button:hover{
     background-color: #538a87  !important;
     color:#fff !important;
     border-color: #fff !important;
}
.pricing-container {
            max-width: 750px;
         
            width: 100%;
            text-align: center;
            
        }

        .plan-title {
            font-size: 3rem;
            font-weight: bold;
            color: #e53e3e;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }

        .plan-subtitle {
            font-size: 1.1rem;
            color: #2b6cb0;
            margin-bottom: 40px;
            font-weight: 500;
        }

        .feature-item {
            background-color: #2d3748;
            color: white;
            padding: 20px;
            margin-bottom: 15px;
            border-radius: 8px;
            font-size: 2rem;
            font-weight: 500;
            border: 3px dotted #538a87;
            position: relative;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .feature-item:hover {
            transform: translateY(-2px);
            transition: transform 0.2s ease;
        }

        .buy-button {
            background-color: #538a87;
            color: white;
            font-size: 1.8rem;
            font-weight: bold;
            padding: 20px 60px;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            margin: 30px;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .buy-button:hover {
            background-color: #538a87;
            transform: translateY(-3px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
        }

        .buy-button:active {
            transform: translateY(-1px);
        }

        @media (max-width: 768px) {
            .plan-title {
                font-size: 2.5rem;
            }
            
            .feature-item {
                font-size: 1.1rem;
                padding: 18px;
            }
            
            .buy-button {
                font-size: 1.5rem;
                padding: 18px 50px;
            }
        }

        @media (max-width: 480px) {
            .plan-title {
                font-size: 2rem;
            }
            
            .feature-item {
                font-size: 1rem;
                padding: 16px;
            }
            
            .buy-button {
                font-size: 1.3rem;
                padding: 16px 40px;
            }
        }

/* Main Container */
.crypto-payment-container {
    background: #1f2937; /* Dark mode background */
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0px 8px 25px rgba(0,0,0,0.3);
    color: white;
    max-width: 50%;
    width: 100%;
}

/* Mobile view */
@media (max-width: 768px) {
    .crypto-payment-container {
        max-width: 100%;
     
    }
    .bg-background{
        padding:10px
    }
}

/* Header */
.crypto-payment-header {
    display: flex;
    justify-content: space-between !important; /* title left, right items on the edge */
    align-items: center;
    width: 100%;
}

.crypto-title {
    font-size: 22px;
    font-weight: bold;
    color: #f3f4f6;
}

.crypto-right {
    display: flex;
    align-items: center;
    margin:1px;
    gap: 10px; /* space between timer and back button */
}

.crypto-timer-box {
    background: rgba(255,255,255,0.08);
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 14px;
}

.crypto-timer {
    font-weight: bold;
    color: #facc15; /* yellow */
}

.crypto-back-btn {
    border: 1px solid #f3f4f6;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    transition: background 0.2s ease;
}

.crypto-back-btn:hover {
    background: rgba(255,255,255,0.15);
}


/* Subtitle */
.crypto-subtitle {
    text-align: center;
    font-size: 14px;
    color: #9ca3af;
    margin: 10px;
}

.crypto-warning {
    background: #f87171;
    color: white;
    font-weight: bold;
    padding: 10px;
    text-align: center;
    border-radius: 8px 8px 0 0;
}

/* Table Layout */
.crypto-table {
    border: 1px solid #4b5563;
    background: #111827;
    color: white;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
}
.crypto-row {
    display: flex;
    border-bottom: 1px solid #374151;
}
.crypto-row:last-child {
    border-bottom: none;
}
.crypto-label {
    flex: 1;
    padding: 12px;
    font-weight: bold;
    border-right: 1px solid #374151;
    white-space: nowrap;
    background: #1f2937;
    color: #d1d5db;
}
.crypto-value {
    flex: 2;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    word-break: break-word;
}

/* Input Fields */
.crypto-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #4b5563;
    border-radius: 6px;
    background: #111827;
    color: white;
}
.crypto-input:focus {
    border-color: #538a87;
    outline: none;
}

/* Copy Icon */
.crypto-copy-icon {
    width: 18px;
    height: 18px;
    cursor: pointer;
    color: #9ca3af;
    transition: color 0.2s ease-in-out;
}
.crypto-copy-icon:hover {
    color: #538a87;
}

/* Submit Button */
.crypto-submit-btn {
    width: 100%;
    background: #538a87;
    color: white;
    padding: 12px;
    margin-top: 20px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
}
.crypto-submit-btn:hover {
    background: #538a87;
}

/* Footer */
.crypto-footer {
    text-align: center;
    font-size: 12px;
    color: #fff;
    margin-top: 10px;
}

/* Footer */
.crypto-footer {
    text-align: center;
    font-size: 16px;
    margin-top: 10px;
    font-weight: bold;
}
.crypto-footer {
    background: #538a87;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-size: 16px;
}
.crypto-copy-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.crypto-copy-icon.tick {
    transform: scale(1.2);
    color: green;
    transition: transform 0.2s ease, color 0.3s ease;
}
.copy-check-icon {
    width: 20px;
    height: 20px;
    margin-left: 8px;
    vertical-align: middle;
    transition: opacity 0.3s;
}

         
                .thank-you-popup {
                    position: fixed;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    background: rgba(0, 0, 0, 0.6);
                    display: none;
                    align-items: center;
                    justify-content: center;
                    z-index: 9999;
                }

                .thank-you-content {
                    background: #fff;
                    padding: 30px;
                    border-radius: 10px;
                    text-align: center;
                    max-width: 400px;
                    width: 90%;
                    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
                }

                .thank-you-content button {
                    margin-top: 20px;
                    padding: 10px 20px;
                    background: #4CAF50;
                    color: white;
                    border: none;
                    border-radius: 5px;
                    cursor: pointer;
                }

                .thank-you-content button:hover {
                    background: #45a049;
                }
           /* Show datalist only on desktop */
.desktop-only { display: block; }
.mobile-only { display: none; }

@media (max-width: 768px) {
  .desktop-only { display: none; }
  .mobile-only { display: block; }
}

.btn-header{
padding: 0 0;
}