﻿/* ----------------------- */
/* GLOBAL STYLES */
/* ----------------------- */
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, sans-serif;
    background: #050b18;
    color: #e8ecf3;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ----------------------- */
/* HEADER */
/* ----------------------- */
.header {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    height: 44px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #e8ecf3;
}

.brand-name {
    font-size: 20px;
    font-weight: 600;
}

.nav a {
    margin-right: 22px;
    color: #8aa4c8;
    text-decoration: none;
    font-size: 15px;
}

    .nav a:hover {
        color: #cfe2ff;
    }

/* ----------------------- */
/* HOMEPAGE HERO LOGO */
/* ----------------------- */
.hero-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 16px 12px;
}

.hero-logo-img {
    width: auto;
    height: 130px;
    max-width: 100%;
}

@media (min-width: 600px) {
    .hero-logo-img {
        height: 130px;
    }
}

/* ----------------------- */
/* HERO SECTION */
/* ----------------------- */
.hero {
    padding: 64px 0 32px;
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
    text-align: left;
}

/* Homepage hero - less top padding since logo is above */
.hero-home {
    padding-top: 6px;
}

.hero h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.subtext {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 22px;
    color: #b8c5d9;
}

/* Email + CTA row */
.signup-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    max-width: 520px;
}

    .signup-box .cta-btn {
        box-sizing: border-box;
    }

.email-input {
    flex: 1;
    padding: 12px 14px;
    font-size: 16px;
    border-radius: 10px;
    background: #0f1627;
    border: 1px solid #1f2d47;
    color: #e8ecf3;
}

.cta-btn {
    display: inline-block;
    padding: 12px 18px;
    background: linear-gradient(90deg, #0b6bff, #4a9dff);
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}

    .cta-btn:hover {
        opacity: 0.9;
    }

.no-spam {
    margin-top: 6px;
    color: #899bb5;
    font-size: 14px;
}

/* ----------------------- */
/* FEATURES */
/* ----------------------- */

.features {
    width: 100%;
    max-width: 760px;
    margin: 8px auto 48px;
    padding: 0 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feature {
    padding: 22px;
    background: #0c1324;
    border-radius: 16px;
    border: 1px solid #1f2d47;
}

    .feature h2 {
        margin: 0 0 8px 0;
        font-size: 20px;
    }

    .feature p {
        margin: 0;
    }

/* ----------------------- */
/* FOOTER */
/* ----------------------- */

.footer {
    padding: 40px 0;
    text-align: left;
    color: #7383a5;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

    .footer-links a {
        color: #8aa4c8;
        text-decoration: none;
        font-size: 14px;
    }

        .footer-links a:hover {
            color: #cfe2ff;
        }

.social-links {
    display: flex;
    gap: 20px;
}

    .social-links a {
        color: #7383a5;
        text-decoration: none;
        font-size: 14px;
    }

        .social-links a:hover {
            color: #cfe2ff;
        }

/* ----------------------- */
/* MOBILE OPTIMIZATION */
/* ----------------------- */

@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
    }

    .signup-box {
        flex-direction: column;
        align-items: stretch;
        max-width: 100%;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
    }
}




/* WALLPAPER */


/* ----------------------- */
/* BREADCRUMB */
/* ----------------------- */
.breadcrumb {
    margin-bottom: 16px;
    font-size: 14px;
    color: #7383a5;
}

    .breadcrumb a {
        color: #8aa4c8;
        text-decoration: none;
    }

        .breadcrumb a:hover {
            color: #cfe2ff;
        }

/* ----------------------- */
/* CATEGORY HERO */
/* ----------------------- */
.category-hero {
    padding: 48px 0 32px;
}

    .category-hero h1 {
        font-size: 32px;
        font-weight: 700;
        margin: 0 0 20px 0;
    }

.category-intro {
    font-size: 16px;
    line-height: 1.7;
    color: #b8c5d9;
    max-width: 720px;
    margin-bottom: 24px;
}

    .category-intro p {
        margin-bottom: 16px;
    }

        .category-intro p:last-child {
            margin-bottom: 0;
        }

.category-cta {
    margin-bottom: 16px;
}

/* ----------------------- */
/* WALLPAPER GRID */
/* ----------------------- */
.wallpaper-grid-section {
    padding: 24px 0 48px;
}

.wallpaper-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 600px) {
    .wallpaper-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 900px) {
    .wallpaper-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wallpaper-card {
    display: block;
    text-decoration: none;
    color: #e8ecf3;
    background: #0c1324;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #1f2d47;
    transition: transform 0.2s, border-color 0.2s;
}

    .wallpaper-card:hover {
        transform: translateY(-4px);
        border-color: #3a5a8a;
    }

.wallpaper-thumb {
    aspect-ratio: 9 / 16;
    overflow: hidden;
    background: #0a0f1a;
}

    .wallpaper-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.wallpaper-card-title {
    padding: 12px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ----------------------- */
/* EMPTY STATE */
/* ----------------------- */
.empty-state {
    text-align: center;
    padding: 48px 24px;
    background: #0c1324;
    border-radius: 16px;
    border: 1px solid #1f2d47;
}

    .empty-state p {
        color: #b8c5d9;
        margin-bottom: 20px;
    }

/* ----------------------- */
/* CATEGORY PILLS */
/* ----------------------- */
.related-categories {
    padding: 32px 0 48px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

    .related-categories h2 {
        font-size: 20px;
        margin-bottom: 16px;
    }

.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-pill {
    display: inline-block;
    padding: 10px 18px;
    background: #0c1324;
    border: 1px solid #1f2d47;
    border-radius: 24px;
    color: #8aa4c8;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s, border-color 0.2s;
}

    .category-pill:hover {
        background: #12192e;
        border-color: #3a5a8a;
        color: #cfe2ff;
    }

/* ----------------------- */
/* CATEGORIES GRID (Landing Page) */
/* ----------------------- */
.categories-grid-section {
    padding: 24px 0 48px;
}

    .categories-grid-section h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 600px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.category-card {
    display: block;
    text-decoration: none;
    color: #e8ecf3;
    background: #0c1324;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #1f2d47;
    text-align: center;
    transition: transform 0.2s, border-color 0.2s;
}

    .category-card:hover {
        transform: translateY(-4px);
        border-color: #3a5a8a;
    }

.category-card-icon {
    font-size: 32px;
    margin-bottom: 12px;
    color: #4a9dff;
}

.category-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.category-card-count {
    font-size: 13px;
    color: #7383a5;
    margin: 0;
}

/* ----------------------- */
/* LATEST WALLPAPERS SECTION */
/* ----------------------- */
.latest-wallpapers {
    padding: 32px 0 48px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

    .latest-wallpapers h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

/* ----------------------- */
/* DETAIL PAGE */
/* ----------------------- */
.detail-hero {
    padding: 48px 0 24px;
}

    .detail-hero h1 {
        font-size: 28px;
        font-weight: 700;
        margin: 0;
    }

.detail-content {
    padding: 0 0 48px;
}

.detail-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 768px) {
    .detail-layout {
        flex-direction: row;
        align-items: flex-start;
    }

    .detail-image {
        flex: 0 0 320px;
    }

    .detail-info {
        flex: 1;
    }
}

.detail-image {
    background: #0a0f1a;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #1f2d47;
}

    .detail-image img {
        width: 100%;
        height: auto;
        display: block;
    }

.detail-description {
    font-size: 16px;
    line-height: 1.7;
    color: #b8c5d9;
    margin-bottom: 20px;
}

.detail-tags {
    margin-bottom: 24px;
}

.tag {
    display: inline-block;
    padding: 6px 12px;
    background: #12192e;
    border-radius: 16px;
    color: #8aa4c8;
    font-size: 13px;
    margin-right: 8px;
    margin-bottom: 8px;
}

.detail-cta {
    background: #0c1324;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #1f2d47;
}

.cta-text {
    margin: 0 0 16px 0;
    color: #b8c5d9;
}

/* ----------------------- */
/* MORE WALLPAPERS SECTION */
/* ----------------------- */
.more-wallpapers {
    padding: 32px 0 48px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

    .more-wallpapers h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

.view-all-link {
    margin-top: 20px;
    text-align: center;
}

    .view-all-link a {
        color: #4a9dff;
        text-decoration: none;
        font-size: 15px;
    }

        .view-all-link a:hover {
            text-decoration: underline;
        }


/* Fix feature link styling */
.feature-link,
.feature-link:hover,
.feature-link:visited {
    text-decoration: none;
}

    .feature-link h2 {
        color: #e8ecf3;
        text-decoration: none;
    }

    .feature-link p {
        color: #b8c5d9;
        text-decoration: none;
    }


/* Honeypot - hide from humans */
.website-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

/* ----------------------- */
/* SUPPORT PAGE */
/* ----------------------- */
.support-hero {
    padding: 48px 0 24px;
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

    .support-hero h1 {
        font-size: 32px;
        font-weight: 700;
        margin: 0 0 12px 0;
    }

    .support-hero p {
        font-size: 16px;
        color: #b8c5d9;
        margin: 0;
    }

.support-form-section {
    padding: 0 0 64px;
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

.support-form {
    background: #0c1324;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #1f2d47;
    max-width: 480px;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-size: 14px;
        color: #b8c5d9;
    }

    .form-group .optional {
        color: #7383a5;
    }

.form-input {
    width: 100%;
    padding: 12px 14px;
    font-size: 16px;
    border-radius: 10px;
    background: #0f1627;
    border: 1px solid #1f2d47;
    color: #e8ecf3;
    box-sizing: border-box;
}

    .form-input:focus {
        outline: none;
        border-color: #3a5a8a;
    }

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-message {
    display: block;
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
}

    .form-message.success {
        background: rgba(34, 197, 94, 0.15);
        color: #4ade80;
        border: 1px solid rgba(34, 197, 94, 0.3);
    }

    .form-message.error {
        background: rgba(239, 68, 68, 0.15);
        color: #f87171;
        border: 1px solid rgba(239, 68, 68, 0.3);
    }

/* Honeypot for support form */
.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

/* ----------------------- */
/* HOME CATEGORIES SECTION */
/* ----------------------- */
.home-categories {
    padding: 24px 0 32px;
    border-top: none;
}

    .home-categories h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

.view-all {
    margin-top: 20px;
}

    .view-all a {
        color: #4a9dff;
        text-decoration: none;
        font-size: 15px;
    }

        .view-all a:hover {
            text-decoration: underline;
        }

/* ----------------------- */
/* FEATURED WALLPAPERS (Homepage) */
/* ----------------------- */
.featured-wallpapers {
    padding: 32px 0;
}

    .featured-wallpapers h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

@media (min-width: 600px) {
    .featured-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 900px) {
    .featured-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* ----------------------- */
/* FEATURED RINGTONES (Homepage) */
/* ----------------------- */
.featured-ringtones {
    padding: 32px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

    .featured-ringtones h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

.ringtone-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 600px) {
    .ringtone-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.ringtone-card {
    background: #0c1324;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #1f2d47;
}

.ringtone-title {
    font-size: 14px;
    font-weight: 500;
    color: #e8ecf3;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ringtone-duration {
    font-size: 12px;
    color: #7383a5;
}

/* ----------------------- */
/* SEO INTRO TEXT */
/* ----------------------- */
.seo-intro {
    padding: 32px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

    .seo-intro h2 {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .seo-intro p {
        font-size: 16px;
        line-height: 1.7;
        color: #b8c5d9;
        margin-bottom: 16px;
        max-width: 720px;
    }

        .seo-intro p:last-child {
            margin-bottom: 0;
        }

/* ----------------------- */
/* HOME CTA SECTION */
/* ----------------------- */
.home-cta {
    padding: 48px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

    .home-cta h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .home-cta p {
        color: #b8c5d9;
        margin-bottom: 20px;
    }

    .home-cta .signup-box {
        justify-content: center;
        max-width: none;
    }

    .home-cta .no-spam {
        text-align: center;
    }








/* ----------------------- */
/* RINGTONE LIST ITEMS */
/* ----------------------- */
.ringtone-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ringtone-list-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #0c1324;
    border-radius: 12px;
    border: 1px solid #1f2d47;
    text-decoration: none;
    color: #e8ecf3;
    transition: transform 0.2s, border-color 0.2s;
}

    .ringtone-list-item:hover {
        transform: translateX(4px);
        border-color: #3a5a8a;
    }

.ringtone-list-play {
    width: 56px;
    height: 56px;
    background: url('/images/ringtones-icon-play-button.png') center/contain no-repeat;
    flex-shrink: 0;
}

.ringtone-list-info {
    flex: 1;
    min-width: 0;
}

.ringtone-list-title {
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.ringtone-list-meta {
    font-size: 13px;
    color: #7383a5;
}

.ringtone-list-downloads {
    font-size: 13px;
    color: #7383a5;
    flex-shrink: 0;
}

/* ----------------------- */
/* RINGTONE PLAYER CARD */
/* ----------------------- */
.ringtone-player-section {
    padding: 0 0 32px;
}

.ringtone-player-card {
    background: linear-gradient(135deg, #0c1324, #12192e);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #1f2d47;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

/* ----------------------- */
/* RINGTONE THUMBNAIL WITH WAVEFORM OVERLAY */
/* ----------------------- */
.ringtone-player-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.ringtone-thumbnail-wrapper {
    position: relative;
    width: 280px;
    height: 280px;
    cursor: pointer;
}

.ringtone-thumbnail-bg {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 0 30px rgba(74, 157, 255, 0.5), 0 0 60px rgba(74, 157, 255, 0.3), 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: box-shadow 0.3s ease;
}

.ringtone-thumbnail-wrapper:hover .ringtone-thumbnail-bg {
    box-shadow: 0 0 40px rgba(74, 157, 255, 0.7), 0 0 80px rgba(74, 157, 255, 0.4), 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Playing state - pulse animation */
.ringtone-thumbnail-wrapper.playing .ringtone-thumbnail-bg {
    animation: pulse-glow 1.5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(74, 157, 255, 0.5), 0 0 60px rgba(74, 157, 255, 0.3), 0 8px 32px rgba(0, 0, 0, 0.4);
    }

    50% {
        box-shadow: 0 0 50px rgba(74, 157, 255, 0.8), 0 0 100px rgba(74, 157, 255, 0.5), 0 8px 32px rgba(0, 0, 0, 0.4);
    }
}

/* Play/Pause State Overlay */
.ringtone-play-state {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s, transform 0.2s;
}

    .ringtone-play-state .play-icon {
        font-size: 24px;
        color: white;
        margin-left: 4px;
    }

    .ringtone-play-state .pause-icon {
        font-size: 20px;
        color: white;
        display: none;
        letter-spacing: 2px;
    }

    .ringtone-play-state.is-playing .play-icon {
        display: none;
    }

    .ringtone-play-state.is-playing .pause-icon {
        display: block;
    }

.ringtone-thumbnail-wrapper:hover .ringtone-play-state {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(0, 0, 0, 0.6);
}

.ringtone-thumbnail-wrapper .ringtone-waveform {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 4px;
    height: 60px;
}

    .ringtone-thumbnail-wrapper .ringtone-waveform span {
        width: 6px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 3px;
        animation: waveform 1s ease-in-out infinite;
    }

/* Waveform bar heights - applied to both standalone and overlay */
.ringtone-waveform span:nth-child(1) {
    height: 20px;
    animation-delay: 0s;
}

.ringtone-waveform span:nth-child(2) {
    height: 35px;
    animation-delay: 0.1s;
}

.ringtone-waveform span:nth-child(3) {
    height: 50px;
    animation-delay: 0.2s;
}

.ringtone-waveform span:nth-child(4) {
    height: 40px;
    animation-delay: 0.3s;
}

.ringtone-waveform span:nth-child(5) {
    height: 55px;
    animation-delay: 0.4s;
}

.ringtone-waveform span:nth-child(6) {
    height: 45px;
    animation-delay: 0.5s;
}

.ringtone-waveform span:nth-child(7) {
    height: 35px;
    animation-delay: 0.6s;
}

.ringtone-waveform span:nth-child(8) {
    height: 50px;
    animation-delay: 0.7s;
}

.ringtone-waveform span:nth-child(9) {
    height: 30px;
    animation-delay: 0.8s;
}

.ringtone-waveform span:nth-child(10) {
    height: 25px;
    animation-delay: 0.9s;
}

@keyframes waveform {
    0%, 100% {
        transform: scaleY(0.5);
    }

    50% {
        transform: scaleY(1);
    }
}

/* Standalone waveform (fallback if no thumbnail) */
.ringtone-waveform {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 60px;
}

    .ringtone-waveform span {
        width: 6px;
        background: linear-gradient(180deg, #4a9dff, #0b6bff);
        border-radius: 3px;
        animation: waveform 1s ease-in-out infinite;
    }

.ringtone-play-btn {
    display: inline-block;
    padding: 16px 48px;
    background: linear-gradient(90deg, #0b6bff, #4a9dff);
    border: none;
    color: white;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    margin-bottom: 16px;
    transition: transform 0.2s, opacity 0.2s;
}

    .ringtone-play-btn:hover {
        transform: scale(1.05);
        opacity: 0.9;
    }

.ringtone-player-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
    color: #7383a5;
    font-size: 14px;
}

.ringtone-cta {
    width: 100%;
    max-width: 280px;
    margin: 0 auto 12px;
}

.ringtone-cta-text {
    font-size: 13px;
    color: #7383a5;
    margin: 0;
}

/* ----------------------- */
/* RINGTONE DESCRIPTION */
/* ----------------------- */
.ringtone-description {
    padding: 32px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

    .ringtone-description h2 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .ringtone-description p {
        font-size: 16px;
        line-height: 1.7;
        color: #b8c5d9;
        max-width: 720px;
    }

.ringtone-artist {
    margin-top: 12px;
    font-size: 14px;
    color: #7383a5;
}

/* ----------------------- */
/* RINGTONE TAGS */
/* ----------------------- */
.ringtone-tags {
    padding: 0 0 32px;
}

/* ----------------------- */
/* USE CASES */
/* ----------------------- */
.ringtone-use-cases {
    padding: 32px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

    .ringtone-use-cases h2 {
        font-size: 20px;
        margin-bottom: 16px;
    }

.use-cases-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 400px;
}

    .use-cases-list li {
        font-size: 15px;
        color: #b8c5d9;
    }

/* ----------------------- */
/* CREATE CTA */
/* ----------------------- */
.ringtone-create-cta {
    padding: 48px 0;
    text-align: center;
    background: linear-gradient(135deg, #0c1324, #12192e);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

    .ringtone-create-cta h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .ringtone-create-cta p {
        color: #b8c5d9;
        margin-bottom: 20px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

/* ----------------------- */
/* MOBILE RINGTONE STYLES */
/* ----------------------- */
@media (max-width: 480px) {
    .ringtone-list-item {
        padding: 12px 16px;
    }

    .ringtone-list-play {
        width: 48px;
        height: 48px;
    }

    .ringtone-list-title {
        font-size: 14px;
    }

    .ringtone-list-downloads {
        display: none;
    }

    .ringtone-player-card {
        padding: 24px 20px;
    }

    .ringtone-play-btn {
        padding: 14px 40px;
        font-size: 16px;
    }

    .use-cases-list {
        grid-template-columns: 1fr;
    }

    .ringtone-thumbnail-wrapper {
        width: 240px;
        height: 240px;
    }
}




/* ----------------------- */
/* VENTONES ORIGINAL BADGE */
/* ----------------------- */
.ventones-original-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .ventones-original-badge::before {
        content: "✦";
        font-size: 0.7rem;
    }

.ventones-original-badge-sm {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    color: white;
    font-size: 0.55rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

    .ventones-original-badge-sm::before {
        content: "✦";
        font-size: 0.55rem;
    }

/* ----------------------- */
/* SIGNATURE SERIES BADGE (Detail Page) */
/* ----------------------- */
.ringtone-hero-badge {
    margin: 8px 0 0 0;
}

.signature-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}






/* ----------------------- */
/* RINGTONE GRID CARDS */
/* ----------------------- */
.ringtone-grid-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 600px) {
    .ringtone-grid-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 900px) {
    .ringtone-grid-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

.ringtone-card-item {
    display: block;
    text-decoration: none;
    color: #e8ecf3;
    transition: transform 0.2s;
}

    .ringtone-card-item:hover {
        transform: translateY(-4px);
    }

.ringtone-card-thumb {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    background: #0c1324;
    border: 1px solid #1f2d47;
}

.ringtone-card-item:hover .ringtone-card-thumb {
    border-color: #3a5a8a;
}

.ringtone-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ringtone-card-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    opacity: 0;
    transition: opacity 0.2s;
}

.ringtone-card-item:hover .ringtone-card-play {
    opacity: 1;
}

.ringtone-card-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 4px;
}

.ringtone-card-title {
    padding: 10px 4px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .ringtone-grid-cards {
        gap: 12px;
    }

    .ringtone-card-play {
        width: 40px;
        height: 40px;
        font-size: 14px;
        opacity: 1;
    }

    .ringtone-card-title {
        font-size: 13px;
        padding: 8px 2px;
    }
}
