/* ========================================
YouTube Music Page Styles - TechRepair.Co
======================================== */

/* Page Layout */
.scale-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 24px 60px;
}

.main-column {
    background: rgba(15, 20, 30, 0.9);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 20px;
    padding: 48px;
}

/* Hero Section */
.yt-hero {
    text-align: center;
    margin-bottom: 48px;
}

.yt-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff4444;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.yt-dot {
    width: 8px;
    height: 8px;
    background: #ff0000;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px #ff0000;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.yt-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff0000, #ff4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.yt-hero p {
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 16px;
}

.yt-hero p strong {
    color: white;
}

.yt-version-note {
    color: #64748b;
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 16px;
}

/* Features Section */
.yt-features {
    margin-bottom: 48px;
}

.section-why-us h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: white;
}

.section-why-us > p {
    color: #94a3b8;
    margin-bottom: 24px;
}

.yt-features ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
}

.yt-features li {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 12px;
}

.yt-features li strong {
    color: white;
}

/* Steps Section */
.steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0;
}

.yt-step {
    background: rgba(15, 25, 40, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
    padding: 28px;
    position: relative;
    transition: all 0.3s;
}

.yt-step:hover {
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateX(5px);
}

.yt-step-num {
    position: absolute;
    top: -12px;
    left: 28px;
    background: linear-gradient(135deg, #00d4ff, #00a8ff);
    color: #050508;
    font-weight: 800;
    font-size: 0.875rem;
    padding: 6px 16px;
    border-radius: 20px;
}

.yt-step h3 {
    color: #00d4ff;
    font-size: 1.1rem;
    margin-bottom: 8px;
    margin-top: 8px;
}

.yt-step p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.yt-step code {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
}

/* Tips Section */
.yt-tips {
    margin-top: 48px;
}

.yt-tips ul {
    list-style: none;
    margin-bottom: 32px;
}

.yt-tips li {
    color: #94a3b8;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.yt-tips li:last-child {
    border-bottom: none;
}

.yt-tips li::before {
    content: '💡';
    flex-shrink: 0;
}

.yt-tips li strong {
    color: white;
}

.yt-tips code {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
}

/* Download Button */
.yt-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.yt-main-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .main-column {
        padding: 24px;
    }

    .yt-hero h1 {
        font-size: 1.75rem;
    }

    .yt-features ul {
        grid-template-columns: 1fr;
    }

    .yt-step {
        padding: 20px;
    }

    .yt-main-btn {
        width: 100%;
        justify-content: center;
    }
}
