* {
    box-sizing: border-box;
}

body {
    font-family: 'Vazirmatn', sans-serif;
    background: #09090B;
    text-align: right;
}

.glass-card {
    background: rgba(17, 24, 39, 0.72);
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.podcast-card:hover,
.glass-card:hover {
    transform: translateY(-4px);
}

.hero-grid {
    background-image:
        radial-gradient(circle at top left, rgba(59,130,246,0.24), transparent 30%),
        radial-gradient(circle at bottom right, rgba(139,92,246,0.22), transparent 38%);
}

input, textarea, select {
    color: #fff;
    text-align: right;
}

input::placeholder,
textarea::placeholder {
    color: #A1A1AA;
}

.custom-player {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(139, 92, 246, 0.20));
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 24px;
    padding: 16px;
}

.player-bar {
    position: relative;
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
    overflow: hidden;
}

.player-progress {
    position: absolute;
    inset: 0 auto 0 0;
    width: 0;
    background: linear-gradient(90deg, #3B82F6, #8B5CF6);
    border-radius: inherit;
}

.player-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    color: white;
    box-shadow: 0 10px 24px rgba(59, 130, 246, 0.35);
}

.upload-drop {
    display: block;
    width: 100%;
    border: 1px dashed rgba(255,255,255,0.18);
    border-radius: 18px;
    padding: 14px;
    background: rgba(255,255,255,0.03);
}

.file-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(59,130,246,0.14);
    color: #dbeafe;
    font-size: 12px;
}
