body {
    background: #050816;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}

.custom-navbar {
    background: rgba(5, 8, 22, 0.9);
    backdrop-filter: blur(10px);
}

.logo-nav {
    height: 38px;
    margin-right: 8px;
}

.hero-section {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, #1f6fff 0, transparent 35%),
        radial-gradient(circle at bottom right, #8b2cff 0, transparent 35%),
        #050816;
    display: flex;
    align-items: center;
    padding-top: 90px;
}

.hero-logo {
    width: 150px;
}

.hero-section h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    text-transform: uppercase;
}

.hero-text {
    max-width: 700px;
    margin: 20px auto;
    color: #d8d8ff;
    font-size: 1.2rem;
}

.section-dark,
.section-gradient,
.section-contact {
    padding: 90px 0;
}

.section-dark {
    background: #070b1d;
}

.section-gradient {
    background: linear-gradient(135deg, #081225, #151044, #070b1d);
}

h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
}

.price-card,
.mix-card,
.contact-form {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 24px;
    padding: 30px;
    height: 100%;
    backdrop-filter: blur(12px);
}

.price-card h3 {
    font-weight: 800;
}

.price-card h4 {
    font-size: 2rem;
    margin: 20px 0;
    color: #68a7ff;
}

.price-card span {
    display: block;
    color: #c8c8ff;
    font-weight: bold;
}

.soundcloud-box {
    margin-top: 20px;
    min-height: 170px;
    background: rgba(0,0,0,0.25);
    border-radius: 15px;
    overflow: hidden;
}

.phone-preview {
    width: 260px;
    height: 520px;
    border-radius: 40px;
    background: #111;
    padding: 18px;
    margin: auto;
    box-shadow: 0 0 40px rgba(104, 167, 255, 0.3);
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: linear-gradient(180deg, #0b1b3a, #180d3d);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.phone-screen img {
    width: 120px;
}

.phone-screen p {
    margin-top: 20px;
    font-size: 1.5rem;
    font-weight: bold;
}

.form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 14px;
}

.form-control::placeholder {
    color: #bbbbbb;
}

.form-control:focus {
    background: rgba(255,255,255,0.15);
    color: white;
    box-shadow: none;
    border-color: #68a7ff;
}

.btn-primary {
    background: linear-gradient(135deg, #1f6fff, #8b2cff);
    border: none;
}

.btn-primary:hover {
    opacity: 0.9;
}

footer {
    background: #02040c;
    padding: 25px 0;
    color: #aaa;
}