/* Paketler CSS */

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    margin-top: 40px;
}

.downloadmenu {
    background: linear-gradient(135deg, var(--primary), var(--blue)) !important;
    color: #ffffff !important;
}

.package-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    background: rgba(20, 20, 35, 0.6);
    backdrop-filter: blur(20px);
    transition: 0.3s;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
}

.package-card.featured {
    border-color: var(--primary);
    background: rgba(139, 92, 246, 0.1);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.yt-1 {
    margin-top: 30px;
}

.livecard {
    margin-bottom: 45px !important
}

.btn-transcribe-ready {
    background-color: #4caf50;
    color: white;
    border: 1px solid #4caf50;
    cursor: pointer;
}

.btn-transcribe-ready:hover {
    background-color: #45a049;
}

.popular-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    padding: 5px 15px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
}

/* Dashboard Share Modal */

.share-modal.hidden {
    display: none;
}

.share-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
    z-index: 3000;
}

.share-modal-content {
    width: 320px;
    background: #16161d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.share-modal-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
}

.share-modal-body {
    color: #cbd5e1;
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toggle-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.toggle-row input {
    display: none;
}

.toggle-slider {
    width: 44px;
    height: 24px;
    border-radius: 999px;
    background: #2f3336;
    position: relative;
    transition: 0.2s;
}

.toggle-slider::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    transition: 0.2s;
}

.toggle-row input:checked+.toggle-slider {
    background: #8B5CF6;
}

.toggle-row input:checked+.toggle-slider::after {
    transform: translateX(20px);
}

.share-hint {
    font-size: 0.85rem;
    color: #94a3b8;
    margin: 0;
}

.share-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 12px;
}

.share-btn {
    border: none;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
}

.share-btn.cancel {
    background: rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
}

.pkg-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pkg-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
}

.pkg-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
}

.pkg-list {
    list-style: none;
    width: 100%;
    margin-bottom: 30px;
    padding: 0;
    text-align: left;
}

.pkg-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #e2e8f0;
    font-size: 0.95rem;
}

.pkg-list li .material-symbols-rounded {
    font-size: 20px;
}

.pkg-list li.disabled {
    color: #64748b;
    text-decoration: line-through;
}

.pkg-list li.disabled .material-symbols-rounded {
    color: #64748b !important;
}

/* Guide Css */

.guide-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.guide-section {
    margin-bottom: 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    color: #94a3b8;
    font-size: 1.1rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.guide-card {
    background: rgba(20, 20, 35, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 32px;
}

.card-h {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.card-p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.example-box {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 12px;
    font-family: 'Monaspace Neon', monospace;
    font-size: 0.85rem;
    color: #fbbf24;
    word-break: break-all;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.step-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.step-num {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.step-text {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Renk Temaları */

.theme-blue .icon-box {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

.theme-purple .icon-box {
    background: rgba(139, 92, 246, 0.2);
    color: #a78bfa;
}

.theme-green .icon-box {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
}

.theme-red .icon-box {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
}

/* Privacy Css */

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: left;
}

.privacy-card {
    background: rgba(20, 20, 35, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 30px;
}

.privacy-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff, #94a3b8);
    -webkit-background-clip: text;
    color: transparent;
    text-align: center;
}

.privacy-subtitle {
    color: #94a3b8;
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.security-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.security-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-5px);
}

.sec-icon {
    font-size: 32px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #8B5CF6, #0EA5E9);
    -webkit-background-clip: text;
    color: transparent;
}

.sec-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.sec-desc {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.info-section h3 {
    color: #fff;
    margin-bottom: 15px;
}

.info-section p {
    color: #94a3b8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.developer-credit {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #64748b;
    font-size: 0.9rem;
}

.dev-link {
    color: #F43F5E;
    text-decoration: none;
    font-weight: 700;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.dev-link:hover {
    color: #fb7185;
    text-shadow: 0 0 10px rgba(244, 63, 94, 0.3);
}

/* Setting Page */

.settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1000px;
    text-align: left;
}

.settings-card {
    padding: 40px;
    height: fit-content;
    background: rgba(20, 20, 35, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-header img {
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.section-title {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.package-info-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 15px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--blue));
}

.alert-box {
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 900px;
    text-align: left;
}

.alert-success {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.alert-error {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Auth Pages (Login, Register, Forgot Password) */

.auth-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-card {
    background: #0f1014;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-icon {
    width: 60px;
    height: 60px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #8b5cf6;
}

.auth-icon span {
    font-size: 30px;
}

.auth-header h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.auth-header p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.5;
}

.alert-box {
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.auth-form .input-group {
    margin-bottom: 20px;
}

.auth-form label {
    display: block;
    color: #e2e8f0;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.auth-form .input-wrapper {
    position: relative;
}

.auth-form .input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    pointer-events: none;
}

.auth-form input {
    width: 100%;
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 14px 14px 45px;
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    transition: 0.3s;
    box-sizing: border-box;
}

.auth-form input:focus {
    outline: none;
    border-color: #8b5cf6;
    background: #0f1014;
}

.btn-primary {
    width: 100%;
    background: #8b5cf6;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.2s;
}

.btn-primary:hover {
    background: #7c3aed;
    transform: translateY(-2px);
}

.auth-footer {
    margin-top: 25px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.auth-footer p {
    font-size: 0.9rem;
    color: #94a3b8;
}

.auth-footer a {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.auth-footer a:hover {
    color: #a78bfa;
}

/*İndex.php SEO Content Section */

.seo-content-wrapper {
    max-width: 800px;
    margin: 60px auto 20px auto;
    background: rgba(15, 16, 20, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    position: relative;
}

.seo-content {
    color: #94a3b8;
    line-height: 1.8;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.seo-content.collapsed {
    max-height: 150px;
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

.seo-content h2 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.seo-content h3 {
    color: #e2e8f0;
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 600;
}

.seo-content p {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.seo-content ul {
    list-style: none;
    padding: 0;
}

.seo-content li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.seo-content li::before {
    content: "•";
    color: #8b5cf6;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.seo-content strong {
    color: #cbd5e1;
}

.btn-read-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #a78bfa;
    padding: 10px 20px;
    border-radius: 50px;
    margin: 20px auto 0 auto;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-read-more:hover {
    background: rgba(139, 92, 246, 0.1);
    color: #fff;
    border-color: #8b5cf6;
}

.wit {
    background: #e1e1e1;
}

.btn-studio {
    background: #F59E0B;
    /* Turuncu renk */
    color: #fff;
}

.btn-studio:hover {
    background: #D97706;
}

/* Home Plau */

.homeplay-section {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto 40px;
    padding: 0 2px;
}

.homeplay-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.homeplay-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.25px;
}

.homeplay-title .material-symbols-rounded {
    font-size: 22px;
    background: linear-gradient(135deg, #9a6bff, #7c5dff);
    -webkit-background-clip: text;
    color: transparent;
}

.homeplay-badge {
    padding: 6px 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #dfe6ff;
    font-weight: 700;
    font-size: 0.9rem;
}

.homeplay-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 18px;
}

.space-cardx {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 240px;
    background: linear-gradient(135deg, #9a6bff, #7c5dff);
    border-radius: 20px;
    padding: 18px;
    color: #fff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.arch-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 12px;
    background: #FFD54F;
    color: #212121;
    font-weight: 800;
    font-size: 0.9rem;
}

.arch-badge .material-symbols-rounded {
    font-size: 18px;
}

.space-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.space-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-main {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.space-meta {
    line-height: 1.1;
}

.space-host {
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.badge-verify {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 0.75rem;
}

.space-role {
    font-size: 0.85rem;
    color: #f3e8ff;
}

.space-title {
    font-size: 1.2rem;
    font-weight: 900;
    margin: 6px 0;
    line-height: 1.25;
    max-height: 3.1em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.space-action {
    margin-top: auto;
}

.btn-listen {
    width: 100%;
    border: none;
    background: #f7f8fb;
    color: #111;
    font-weight: 900;
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.15s, box-shadow 0.15s;
    font-size: 1rem;
}

.btn-listen:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.dots {
    font-size: 18px;
}

.space-player {
    display: none;
    margin-top: 8px;
    background: rgba(0, 0, 0, 0.15);
    padding: 10px;
    border-radius: 12px;
}

.space-player.active {
    display: block;
}

.space-player audio {
    width: 100%;
}

@media(max-width:640px) {
    .homeplay-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .homeplay-grid {
        grid-template-columns: 1fr;
    }
}

.transcribe-modal {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.33);
    display: flex;
    align-items: center;
    justify-content: center;
}

.transcribe-modal-content {
    background: #151e2b;
    border-radius: 14px;
    padding: 32px 32px 22px 32px;
    min-width: 300px;
    min-height: 110px;
    box-shadow: 0 12px 32px #2227;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loader-bar {
    width: 260px;
    height: 13px;
    border-radius: 9px;
    background: #283d57;
    margin-bottom: 12px;
    overflow: hidden;
}

.loader-progress {
    background: linear-gradient(90deg, #3b82f6, #a78bfa);
    height: 100%;
    width: 0%;
    border-radius: 9px;
    transition: width .41s cubic-bezier(.4, 1.6, .68, 1);
}

.transcribe-status {
    text-align: center;
    color: #f9fafb;
    font-size: 1.1em;
    letter-spacing: .01em;
}

/* Foobar */

.foobar-menu {
    display: none;
}

@media (max-width: 780px) {
    .foobar-menu {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        z-index: 3500;
        flex-direction: row;
        justify-content: space-around;
        align-items: stretch;
        height: 60px;
        background: rgba(24, 25, 36, .93);
        box-shadow: 0 -3px 24px 0 rgba(23, 18, 50, 0.19), 0 1.5px 6px 0 #14203e30;
        border-top: 1.5px solid #22223b;
        backdrop-filter: blur(10px);
        margin: 0;
        padding: 0;
        border-radius: 0;
        gap: 0;
    }
    .foobar-link {
        flex: 1 1 0;
        text-align: center;
        color: #eef1fb;
        font-size: 13.1px;
        font-weight: 500;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border: none;
        padding: 0 0 0 0;
        background: none;
        transition: color .19s;
        position: relative;
        min-width: 0;
        height: 100%;
        user-select: none;
        cursor: pointer;
        border-radius: 0;
    }
    .foobar-link .foobar-icon {
        font-family: 'Material Symbols Rounded';
        font-size: 25.4px;
        display: block;
        line-height: 1;
        margin-bottom: 3px;
        margin-top: 2px;
        transition: color .19s;
        opacity: .94;
    }
    .foobar-link.foobar-active,
    .foobar-link.foobar-active .foobar-icon {
        color: #22b9ff!important;
    }
    .foobar-link.foobar-active {
        font-weight: 600;
        background: rgba(43, 80, 163, .11);
    }
    .foobar-link.foobar-active::after {
        content: '';
        display: block;
        margin: 4px auto 0 auto;
        width: 18px;
        height: 2.2px;
        border-radius: 2px;
        background: linear-gradient(90deg, #22b9ff 65%, #6D4AFF);
        opacity: .92;
    }
    .foobar-link:not(:last-child)::before {
        content: '';
        position: absolute;
        top: 15px;
        right: 0px;
        width: 1.1px;
        height: 25px;
        background: linear-gradient(180deg, #292c3d3c 35%, #161625 65%);
        opacity: .13;
        z-index: 2;
        border-radius: 1px;
        pointer-events: none;
    }
    body {
        padding-bottom: 62px !important;
    }
}

.foobar-menu {
    display: none;
}

@media (max-width: 780px) {
    .foobar-menu {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        z-index: 3500;
        flex-direction: row;
        justify-content: space-around;
        align-items: stretch;
        height: 60px;
        background: rgba(24, 25, 36, .93);
        box-shadow: 0 -3px 24px 0 rgba(23, 18, 50, 0.19), 0 1.5px 6px 0 #14203e30;
        border-top: 1.5px solid #22223b;
        backdrop-filter: blur(10px);
        margin: 0;
        padding: 0;
        border-radius: 0;
        gap: 0;
    }
    .foobar-link {
        flex: 1 1 0;
        text-align: center;
        color: #eef1fb;
        font-size: 13.1px;
        font-weight: 500;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border: none;
        padding: 0 0 0 0;
        background: none;
        transition: color .19s;
        position: relative;
        min-width: 0;
        height: 100%;
        user-select: none;
        cursor: pointer;
        border-radius: 0;
    }
    .foobar-link .foobar-icon {
        font-family: 'Material Symbols Rounded';
        font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
        font-size: 25.4px;
        display: block;
        line-height: 1;
        margin-bottom: 3px;
        margin-top: 2px;
        transition: color .19s;
        opacity: .94;
    }
    .foobar-link.foobar-active,
    .foobar-link.foobar-active .foobar-icon {
        color: #22b9ff!important;
    }
    .foobar-link.foobar-active {
        font-weight: 600;
        background: rgba(43, 80, 163, .11);
    }
    .foobar-link.foobar-active::after {
        content: '';
        display: block;
        margin: 4px auto 0 auto;
        width: 18px;
        height: 2.2px;
        border-radius: 2px;
        background: linear-gradient(90deg, #22b9ff 65%, #6D4AFF);
        opacity: .92;
    }
    .foobar-link:not(:last-child)::before {
        content: '';
        position: absolute;
        top: 15px;
        right: 0px;
        width: 1.1px;
        height: 25px;
        background: linear-gradient(180deg, #292c3d3c 35%, #161625 65%);
        opacity: .13;
        z-index: 2;
        border-radius: 1px;
        pointer-events: none;
    }
    body {
        padding-bottom: 62px !important;
    }
}

/* Download Page – scoped styles (no :root vars) */

.download-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 40px;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 28px;
    align-items: center;
}

.download-hero h1 {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    margin: 0 0 16px;
    font-weight: 900;
    line-height: 1.05;
    background: linear-gradient(135deg, #ffffff, #a78bfa 45%, #3b82f6);
    -webkit-background-clip: text;
    color: transparent;
}

.download-hero p {
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 22px;
}

.dl-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.dl-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.1px;
    background: linear-gradient(135deg, #8B5CF6, #0EA5E9);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
    transition: transform .15s ease, box-shadow .15s ease, opacity .2s;
}

.dl-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 45px rgba(59, 130, 246, 0.35);
}

.dl-btn.ghost {
    background: rgba(255, 255, 255, 0.05);
    color: #eef2ff;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dl-meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
    font-weight: 700;
    font-size: 0.92rem;
    margin-right: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dl-meta-chip .material-symbols-rounded {
    font-size: 18px;
}

.download-visual {
    position: relative;
    background: radial-gradient(120% 120% at 20% 20%, rgba(139, 92, 246, 0.2), transparent 55%), radial-gradient(90% 90% at 80% 10%, rgba(14, 165, 233, 0.16), transparent 55%), #0b1020;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 22px;
    padding: 26px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.55);
    overflow: hidden;
}

.dl-visual-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 18px;
    color: #fff;
    backdrop-filter: blur(10px);
}

.dl-visual-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.dl-visual-pill {
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
}

.dl-visual-pill .material-symbols-rounded {
    color: #fbbf24;
}

.download-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px 70px;
}

.dl-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 18px;
}

.dl-card {
    background: rgba(20, 20, 35, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dl-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(14, 165, 233, 0.05));
    opacity: 0.85;
    pointer-events: none;
}

.dl-card .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 700;
    color: #fff;
    z-index: 1;
    width: fit-content;
}

.dl-logo-row {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1;
}

.dl-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    background: #0b1020;
    border-radius: 10px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dl-card h3 {
    margin: 0 0 2px;
    font-size: 1.25rem;
    color: #fff;
    z-index: 1;
}

.dl-specs {
    display: flex;
    gap: 8px;
    z-index: 1;
}

.dl-chrome {
    display: flex;
    gap: 8px;
    z-index: 1;
    margin-bottom: 40px;
    margin-top: 31px;
}

.dl-windows {
    display: flex;
    gap: 8px;
    z-index: 1;
    margin-bottom: 45px;
    margin-top: 34px;
}

.dl-chip {
    padding: 8px 11px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #dbeafe;
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.9rem;
}

.dl-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    z-index: 1;
}

.dl-foot {
    margin-bottom: 15px;
    margin-top: 15px;
}

.dl-actions.column {
    flex-direction: column;
    margin-top: 20px;
}

.dl-actions .action {
    width: 100%;
    min-height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.08px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
    transition: transform .12s ease, opacity .12s ease, box-shadow .12s ease;
}

.dl-actions .action.primary {
    background: linear-gradient(135deg, #8B5CF6, #0EA5E9);
    border: none;
}

.dl-actions .action.apk {
    background: #3a9349;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #e5e7eb;
}

.dl-actions .action:hover {
    opacity: 0.94;
    transform: translateY(-2px);
    box-shadow: 0 14px 45px rgba(0, 0, 0, 0.32);
}

.dl-update-row {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #cbd5e1;
    font-size: 0.95rem;
    z-index: 1;
}

.dl-update-row .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    display: inline-block;
}

.dl-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 14px;
    z-index: 1;
}

.dl-table td {
    padding: 9px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: #e2e8f0;
    font-size: 0.95rem;
}

.dl-table td:first-child {
    color: #cbd5e1;
    width: 38%;
}

.section-head {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 30px 0 16px;
}

.section-head .material-symbols-rounded {
    color: #0EA5E9;
}

.dl-faq {
    display: grid;
    gap: 10px;
}

.dl-faq-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 14px 16px;
}

.dl-faq-item h4 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 1rem;
}

.dl-faq-item p {
    margin: 0;
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Step icons */

.step-list {
    margin: 0 0 8px 0;
    padding: 0;
    list-style: none;
    z-index: 1;
}

.step-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 10px;
}

.step-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 2px;
}

.step-icon.chrome {
    background-image: url('/assets/img/icons/chrome.svg');
}

.step-icon.android {
    background-image: url('/assets/img/icons/android.svg');
}

.step-icon.windows {
    background-image: url('/assets/img/icons/windows.svg');
}

/* Studio tag */

.studio-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 10px;
    background: rgba(124, 77, 255, 0.16);
    color: #e6ddff;
    font-weight: 800;
    border: 1px solid rgba(124, 77, 255, 0.35);
}

/* Modals */

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 4000;
    padding: 20px;
}

.modal-backdrop.active {
    display: flex;
}

.modal {
    width: 100%;
    max-width: 520px;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 20px 20px 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    color: #e2e8f0;
}

.modal h3 {
    margin: 0 0 10px;
    font-weight: 800;
    color: #fff;
}

.modal p {
    margin: 0 0 12px;
    color: #cbd5e1;
    line-height: 1.6;
}

.modal ul {
    margin: 0 0 12px 18px;
    color: #cbd5e1;
    line-height: 1.55;
}

.modal .actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 8px;
}

.modal-btn {
    border: none;
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 700;
    cursor: pointer;
    color: #fff;
}

.modal-btn.secondary {
    background: rgba(255, 255, 255, 0.08);
}

.modal-btn.primary {
    background: linear-gradient(135deg, #8B5CF6, #0EA5E9);
}

.chrome-p {
    margin-top: 31px;
}

.windows-p {
    margin-top: 16px;
}

.app-p {
    margin-top: 15px;
    margin-bottom: 15px;
}

@media (max-width: 960px) {
    .download-hero {
        grid-template-columns: 1fr;
        padding-top: 110px;
    }
}

@media (max-width: 640px) {
    .dl-actions {
        flex-direction: column;
    }
    .dl-btn {
        width: 100%;
        justify-content: center;
    }
    .dl-windows {
        margin-bottom: 10px;
        margin-top: 15px;
    }
    .dl-chrome {
        margin-bottom: 15px;
        margin-top: 20px;
    }
    .app-p {
        margin-top: 15px;
        margin-bottom: 20px;
    }
    .dl-specs {
        margin-bottom: 15px;
    }
}

/* Dashboard  Player Styles */

#fs-player-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.player-container {
    width: 35%;
    border-radius: 30px;
    box-shadow: 0 15px 38px rgba(0, 0, 0, 0.5);
    background: #121F3D;
    padding: 30px 28px 26px 28px;
    position: relative;
}

.close-player-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
}

.close-player-btn:hover {
    background: #ef566c;
    transform: rotate(90deg);
}

.cover {
    width: 90px;
    height: 90px;
    margin: 0 auto 17px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(30, 180, 248, .14);
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.song-title {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.song-artist {
    text-align: center;
    color: #5dbff7;
    font-size: 14px;
    margin-bottom: 20px;
}

.wave-box {
    height: 100px;
    margin-bottom: 15px;
    width: 100%;
}

canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.progress-section {
    margin-top: 10px;
}

.progress-container {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    position: relative;
    width: 100%;
    cursor: pointer;
    touch-action: none;
}

.progress {
    height: 100%;
    width: 0%;
    background: #38bdf8;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

.knob {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
    left: 0%;
    pointer-events: none;
    transition: transform 0.1s;
}

.progress-container:hover .knob {
    transform: translate(-50%, -50%) scale(1.2);
}

.time-bar {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #98adcc;
    margin-top: 8px;
}

.controls-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    position: relative;
}

.play-buttons {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.play-buttons i {
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    transition: color 0.2s;
}

.play-buttons i:hover {
    color: #38bdf8;
}

.play-buttons #play {
    font-size: 42px;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.1);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.play-buttons #play:hover {
    background: rgba(56, 189, 248, 0.2);
    transform: scale(1.05);
}

.volume-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.volume-section i {
    font-size: 20px;
    color: #98adcc;
    cursor: pointer;
    z-index: 20;
}

.volume-section i:hover {
    color: #fff;
}

.volume-slider-wrapper {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 0;
    background: #1a2c50;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: height 0.2s ease, opacity 0.2s ease;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.volume-section:hover .volume-slider-wrapper,
.volume-slider-wrapper:hover,
.volume-slider-wrapper.active {
    height: 110px;
    opacity: 1;
    pointer-events: auto;
    padding-bottom: 10px;
}

#volume {
    appearance: none;
    width: 80px;
    height: 4px;
    background: #334a75;
    border-radius: 2px;
    transform: rotate(-90deg);
    outline: none;
    cursor: pointer;
}

#volume::-webkit-slider-thumb {
    appearance: none;
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

@media (max-width: 640px) {
    .player-container {
        width: 95%;
        height: 85%;
    }
}

/* Listen.php Css */

.listen-page-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 20px;
    font-family: 'Inter', sans-serif;
}

.lp-card {
    width: 100%;
    max-width: 420px;
    background: #1e293b;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.lp-image-container {
    width: 100%;
    height: 320px;
    position: relative;
    overflow: hidden;
}

.lp-cover-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(20px) brightness(0.6);
    transform: scale(1.1);
    position: absolute;
    z-index: 1;
}

.lp-cover-main {
    width: 220px;
    height: 220px;
    border-radius: 20px;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.lp-content {
    padding: 24px;
    position: relative;
    z-index: 5;
    background: linear-gradient(to bottom, #1e293b 0%, #0f172a 100%);
}

.lp-header {
    text-align: center;
    margin-bottom: 24px;
}

.lp-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lp-artist {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(56, 189, 248, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    color: #38bdf8;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.lp-artist:hover {
    background: rgba(56, 189, 248, 0.2);
}

.lp-controls-area {
    margin-bottom: 24px;
}

.lp-progress-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #94a3b8;
    margin-bottom: 8px;
}

.lp-progress-bar-bg {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.lp-progress-fill {
    height: 100%;
    width: 0%;
    background: #38bdf8;
    border-radius: 99px;
    position: relative;
    transition: width 0.1s linear;
}

.lp-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 20px;
}

.lp-btn-control {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-btn-control:hover {
    color: #fff;
}

.lp-btn-control span {
    font-size: 28px;
}

.lp-btn-play {
    width: 64px;
    height: 64px;
    background: #38bdf8;
    border-radius: 50%;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.lp-btn-play:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.6);
}

.lp-btn-play span {
    font-size: 36px;
}

.lp-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    text-align: center;
}

.lp-meta-date {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 12px;
    display: block;
}

.lp-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.lp-action-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}