@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #0f172a;
    color: #f8fafc;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
}

h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #38bdf8;
}

p {
    color: #94a3b8;
    margin-bottom: 25px;
    font-size: 14px;
}

.music-card {
    background: #1e293b;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #334155;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.music-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    border-color: #38bdf8;
}

.music-info h3 {
    font-size: 18px;
    color: #e2e8f0;
}

.payment-box {
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    color: #fff;
    box-shadow: 0 10px 15px -3px rgba(14, 165, 233, 0.4);
}

.payment-box h3 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
}

.payment-box h1 {
    font-size: 28px;
    letter-spacing: 1px;
}

.form-group {
    text-align: left;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #cbd5e1;
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 8px;
    color: #f8fafc;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
}

.btn {
    display: inline-block;
    width: 100%;
    padding: 14px;
    background: #38bdf8;
    color: #0f172a;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.btn:hover {
    background: #0ea5e9;
    transform: translateY(-2px);
}

.btn-small {
    width: auto;
    padding: 10px 20px;
    font-size: 14px;
}

.success-icon {
    font-size: 60px;
    color: #22c55e;
    margin-bottom: 20px;
}
.price-box {
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    text-align: center;
}

.price-label {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    color: #00f0ff;
    font-size: 2.2rem;
    margin: 5px 0 15px;
}

.price-usd {
    font-size: 1.1rem;
    color: #94a3b8;
}

.price-desc {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}