/* Detail Page Styles - Complete match with Vue file */

.detail-page {
    padding-top: 80px;
    min-height: 100vh;
    background: radial-gradient(circle at top left, #3a0b5f 0, var(--theme-background-color, #0a0a0f) 40%, #050509 100%);
}

.detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem 3rem;
    color: white;
}

.hero-section {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2.25rem 2.5rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(255, 255, 255, 0.02) 50%,
        rgba(255, 255, 255, 0.01) 100%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 12px 36px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    position: relative;
}

.hero-main {
    display: flex;
    align-items: center;
    gap: 2.25rem;
    flex: 1;
}

.app-icon {
    width: 140px;
    height: 140px;
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    flex-shrink: 0;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease;
}

.app-icon:hover {
    transform: scale(1.05);
}

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

.hero-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
    min-width: 0;
}

.app-title {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.app-category {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    text-transform: capitalize;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-top: 0.15rem;
    flex-wrap: wrap;
}

.category-chip {
    padding: 0.45rem 0.9rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.hero-cta-main {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    max-width: 440px;
}

.platform-switcher {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 440px;
}

.platform-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.platform-tab:hover {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
}

.platform-tab.active {
    background: linear-gradient(135deg, rgba(66, 230, 149, 0.2), rgba(59, 178, 184, 0.2));
    color: white;
    box-shadow: 0 2px 8px rgba(66, 230, 149, 0.2);
}

.platform-tab svg {
    flex-shrink: 0;
}

.cta-buttons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
    width: 100%;
}

.cta-btn-main {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.5rem;
    border-radius: 16px;
    border: 2px solid transparent;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    min-width: 220px;
    max-width: 440px;
    width: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.cta-btn-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-btn-main:hover::before {
    left: 100%;
}

.cta-btn-main svg:first-child {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.cta-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    text-align: left;
}

.cta-label {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.cta-meta {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 500;
}

.cta-arrow {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.cta-btn-main:hover .cta-arrow {
    opacity: 1;
    transform: translateX(4px);
}

.cta-btn-main.cta-primary {
    background: linear-gradient(135deg, #42e695 0%, #3bb2b8 100%);
    border-color: rgba(66, 230, 149, 0.5);
}

.cta-btn-main.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 32px rgba(66, 230, 149, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #4af0a5 0%, #45c5cc 100%);
}

.cta-btn-main.cta-secondary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: rgba(118, 75, 162, 0.5);
}

.cta-btn-main.cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 32px rgba(102, 126, 234, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #7684f5 0%, #8655b8 100%);
}

.download-note {
    width: 100%;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.download-note svg {
    flex-shrink: 0;
    color: #42e695;
}

.hero-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.hero-chip {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.7rem 1rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    min-width: 110px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.hero-chip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(66, 230, 149, 0.5) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-chip:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%, 
        rgba(255, 255, 255, 0.06) 100%);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-chip:hover::before {
    opacity: 1;
}

.chip-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.chip-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.3;
}

.rating-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, 
        rgba(255, 211, 105, 0.15) 0%, 
        rgba(255, 211, 105, 0.08) 100%);
    border: 1px solid rgba(255, 211, 105, 0.3);
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.rating-pill:hover {
    background: linear-gradient(135deg, 
        rgba(255, 211, 105, 0.2) 0%, 
        rgba(255, 211, 105, 0.12) 100%);
    border-color: rgba(255, 211, 105, 0.4);
    transform: translateY(-1px);
}

.rating-value {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
}

.rating-star {
    color: #ffd369;
    font-size: 1.1rem;
    filter: drop-shadow(0 0 4px rgba(255, 211, 105, 0.5));
}

.installs-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.installs-text:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Pricing Section */
.pricing-section {
    margin-bottom: 2.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.pricing-card {
    padding: 1.5rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.04) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.pricing-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #42e695;
}

.pricing-desc {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.pricing-breakdown {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.breakdown-title {
    margin: 0 0 0.5rem 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.breakdown-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.breakdown-list li {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    padding-left: 1rem;
    position: relative;
}

.breakdown-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #42e695;
}

/* Reviews Summary Section */
.reviews-summary-section {
    margin-bottom: 2.5rem;
}

.reviews-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.review-quote {
    padding: 1.25rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.06) 0%, 
        rgba(255, 255, 255, 0.03) 100%);
    border-radius: 12px;
    border-left: 3px solid #42e695;
}

.quote-stars {
    color: #ffd369;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.1em;
}

.quote-text {
    margin: 0 0 0.75rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.quote-author {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.reviews-meta {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.reviews-note {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.reviews-note strong {
    color: rgba(255, 255, 255, 0.95);
}

/* Features Section */
.features-section {
    margin-bottom: 2.5rem;
}

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

.feature-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.04) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%, 
        rgba(255, 255, 255, 0.06) 100%);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(66, 230, 149, 0.2), rgba(59, 178, 184, 0.2));
    border-radius: 12px;
    color: #42e695;
}

.feature-content {
    flex: 1;
    min-width: 0;
}

.feature-title {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.3;
}

.feature-desc {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

/* Screenshots Section */
.screenshots-section {
    margin-bottom: 2.5rem;
}

.screenshots-container {
    position: relative;
}

.screenshots-scroll {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.screenshots-scroll::-webkit-scrollbar {
    display: none;
}

.screenshot-card {
    flex: 0 0 220px;
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.screenshot-card:hover {
    transform: scale(1.05);
}

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

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.scroll-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.05);
}

.scroll-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.scroll-btn-left {
    left: 0;
}

.scroll-btn-right {
    right: 0;
}

.scroll-btn.hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

/* Section Title */
.section-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--theme-color, #667eea);
    margin-bottom: 0.75rem;
}

/* App Info Section */
.app-info-section {
    margin-bottom: 2.5rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.04) 50%,
        rgba(255, 255, 255, 0.02) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        #42e695 0%, 
        #3bb2b8 25%,
        var(--theme-color, #667eea) 50%,
        #764ba2 75%,
        #f093fb 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    box-shadow: 0 0 20px rgba(66, 230, 149, 0.5);
}

.info-item::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(66, 230, 149, 0.1) 0%, 
        rgba(102, 126, 234, 0.05) 30%,
        transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.info-item:hover {
    transform: translateY(-4px) scale(1.02);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%, 
        rgba(255, 255, 255, 0.06) 50%,
        rgba(255, 255, 255, 0.04) 100%);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.info-item:hover::before {
    opacity: 1;
}

.info-item:hover::after {
    opacity: 1;
}

.info-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-label::before {
    content: '';
    width: 3px;
    height: 12px;
    background: linear-gradient(180deg, #42e695, var(--theme-color, #667eea));
    border-radius: 2px;
    opacity: 0.6;
}

.info-value {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.98);
    font-weight: 600;
    line-height: 1.5;
    word-break: break-word;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Safety Section */
.safety-section {
    margin-bottom: 2rem;
    padding: 1.25rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.safety-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.safety-title {
    display: block;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.25rem;
}

.safety-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

.inline-btn {
    margin-left: 0.5rem;
    padding: 0.2rem 0.6rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.inline-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.permission-list {
    margin: 0.4rem 0 0.2rem 0;
    padding-left: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    display: grid;
    gap: 0.2rem;
}

.safety-link {
    color: #42e695;
    text-decoration: underline;
}

.safety-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.7);
    align-items: center;
}

.safety-warning {
    display: block;
    color: #ffd369;
    margin-top: 0.2rem;
    font-size: 0.82rem;
}

/* Trust Section */
.trust-section {
    margin-bottom: 2rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}

.trust-card {
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-title {
    margin: 0 0 0.4rem 0;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
}

.trust-body {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.5;
}

.trust-list {
    margin: 0;
    padding-left: 1.2rem;
    color: rgba(255, 255, 255, 0.78);
    display: grid;
    gap: 0.3rem;
}

.feedback-btn {
    padding: 0.45rem 0.9rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.feedback-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.feedback-btn.ghost {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
}

.feedback-btn.ghost:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* About Section */
.about-section {
    margin-bottom: 2rem;
}

.about-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.read-more {
    margin-left: 0.3rem;
    color: rgba(66, 230, 149, 0.7);
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.read-more:hover {
    color: rgba(66, 230, 149, 0.9);
}

/* Usage Section */
.usage-section {
    margin-bottom: 2rem;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}

.usage-card {
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.usage-title {
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
}

.usage-list,
.changelog-list {
    margin: 0;
    padding-left: 1.2rem;
    color: rgba(255, 255, 255, 0.78);
    display: grid;
    gap: 0.35rem;
}

.usage-body {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
}

.changelog-list strong {
    display: block;
    color: rgba(255, 255, 255, 0.9);
}

/* Review Section */
.review-section {
    margin-bottom: 2.5rem;
}

.review-card {
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.review-meta {
    margin: 0 0 0.35rem 0;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
}

.review-method {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    border-left: 3px solid #42e695;
}

/* Pros & Cons Section */
.pros-cons-section {
    margin-bottom: 2.5rem;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.pros-box,
.cons-box {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pros-box {
    border-left: 3px solid #42e695;
}

.cons-box {
    border-left: 3px solid #f5576c;
}

.pros-cons-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    color: rgba(255, 255, 255, 0.95);
}

.pros-cons-title svg {
    flex-shrink: 0;
}

.pros-box .pros-cons-title svg {
    color: #42e695;
}

.cons-box .pros-cons-title svg {
    color: #f5576c;
}

.pros-cons-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pros-cons-list li {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 1.5rem;
    position: relative;
}

.pros-cons-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    line-height: 1.4;
}

.pros-box .pros-cons-list li::before {
    color: #42e695;
}

.cons-box .pros-cons-list li::before {
    color: #f5576c;
}

/* Tech Section */
.tech-section {
    margin-bottom: 2rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}

.tech-card {
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.tech-title {
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
}

.tech-list {
    margin: 0;
    padding-left: 1.2rem;
    color: rgba(255, 255, 255, 0.78);
    display: grid;
    gap: 0.35rem;
}

.tech-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.tech-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.tech-body {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Rating Section */
.rating-section {
    margin-bottom: 2.5rem;
}

.rating-content {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.rating-summary {
    min-width: 140px;
}

.rating-score {
    font-size: 2.4rem;
    font-weight: 700;
}

.rating-stars-wrapper {
    position: relative;
    display: inline-block;
    margin-top: 0.3rem;
    font-size: 1.2rem;
    line-height: 1;
}

.rating-stars-empty {
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.1em;
}

.rating-stars-filled {
    position: absolute;
    top: 0;
    left: 0;
    color: #ffd369;
    overflow: hidden;
    white-space: nowrap;
    letter-spacing: 0.1em;
}

.rating-count {
    margin-top: 0.4rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.rating-source {
    margin: 0.5rem 0 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
}

.rating-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
}

.rating-label {
    width: 32px;
    text-align: right;
    color: rgba(255, 255, 255, 0.7);
}

.rating-bar-track {
    flex: 1;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #42e695, #3bb2b8);
}

/* QR Codes Section */
.qr-codes-section {
    margin-bottom: 2.5rem;
}

.qr-codes-wrapper {
    padding: 1.5rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.06) 0%, 
        rgba(255, 255, 255, 0.03) 100%);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.qr-codes-grid {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.qr-desktop-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.qr-subtitle {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.qr-note {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

.qr-note span {
    color: #42e695;
    font-weight: 600;
}

.qr-placeholder {
    width: 150px;
    min-height: 150px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.75rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.qr-placeholder:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.25);
}

.qr-code-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.qr-code-image {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    background: white;
    padding: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.qr-code-text {
    margin: 0;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.qr-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.loading-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* FAQ Section */
.faq-section {
    margin-bottom: 2.5rem;
    padding: 1.25rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-list {
    display: grid;
    gap: 0.9rem;
}

.faq-item {
    padding: 0.9rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-q {
    margin: 0 0 0.35rem 0;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
}

.faq-a {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    font-size: 0.92rem;
}

.faq-actions {
    margin-top: 1rem;
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

/* Apps Section */
.apps-section {
    margin-bottom: 2.5rem;
}

.apps-scroll {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    padding-bottom: 0.5rem;
}

.mini-app-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    height: 140px;
    min-height: 140px;
}

.mini-app-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mini-app-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
}

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

.mini-app-name {
    margin: 0;
    font-size: 0.78rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    overflow: hidden;
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.3;
    min-height: 2.6em;
    max-height: 2.6em;
}

.mini-app-rating {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    height: 1.2em;
    min-height: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(2px);
}

.lightbox-inner {
    max-width: 99vw;
    max-height: 97vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.lightbox-img {
    width: auto;
    max-width: 99vw;
    max-height: 95vh;
    min-height: 80vh;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    object-fit: contain;
    background: #000;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    border-radius: 999px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.detail-empty {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .detail-container {
        padding: 1.5rem 1rem 2.5rem;
    }

    .hero-section {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .hero-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.25rem;
        width: 100%;
    }

    .app-icon {
        width: 120px;
        height: 120px;
        border-radius: 28px;
    }

    .hero-info {
        align-items: center;
        width: 100%;
    }

    .app-title {
        font-size: 1.75rem;
        text-align: center;
    }

    .app-category {
        text-align: center;
    }

    .hero-meta {
        justify-content: center;
        gap: 0.75rem;
        flex-wrap: wrap;
    }

    .hero-cta-main {
        margin-top: 1.25rem;
        max-width: 420px;
    }

    .platform-switcher {
        margin-bottom: 0.75rem;
        max-width: 420px;
    }

    .platform-tab {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }

    .cta-buttons-wrapper {
        gap: 0.6rem;
    }

    .cta-btn-main {
        min-width: auto;
        width: 100%;
        max-width: 420px;
        padding: 1rem 1.25rem;
        gap: 0.75rem;
    }

    .cta-btn-main svg:first-child {
        width: 20px;
        height: 20px;
    }

    .cta-label {
        font-size: 0.95rem;
    }

    .cta-meta {
        font-size: 0.75rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .reviews-summary-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card {
        padding: 1.25rem;
        gap: 0.75rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .qr-codes-grid {
        flex-direction: column;
        align-items: center;
    }

    .qr-placeholder {
        width: 100%;
        max-width: 200px;
    }

    .hero-summary {
        width: 100%;
        gap: 0.6rem;
        justify-content: center;
    }

    .hero-chip {
        flex: 1 1 calc(50% - 0.3rem);
        min-width: 0;
        padding: 0.6rem 0.75rem;
        text-align: center;
    }

    .chip-label {
        font-size: 0.65rem;
    }

    .chip-value {
        font-size: 0.9rem;
    }

    .rating-pill {
        padding: 0.45rem 0.85rem;
        font-size: 0.9rem;
    }

    .installs-text {
        padding: 0.45rem 0.85rem;
        font-size: 0.85rem;
    }

    .screenshots-scroll {
        gap: 0.9rem;
    }

    .screenshot-card {
        flex: 0 0 180px;
        height: 300px;
    }

    .apps-scroll {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .lightbox {
        padding: 0.5rem;
    }

    .lightbox-img {
        max-height: 94vh;
        max-width: 98vw;
        width: auto;
        height: auto;
    }

    .lightbox-inner {
        max-width: 98vw;
        max-height: 94vh;
        padding: 0.5rem;
    }

    .lightbox-close {
        top: 12px;
        right: 12px;
    }

    .info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .info-item {
        padding: 1rem 0.75rem;
    }

    .info-label {
        font-size: 0.65rem;
    }

    .info-value {
        font-size: 0.9rem;
    }

    .pros-cons-grid {
        grid-template-columns: 1fr;
    }

    .rating-content {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .rating-summary {
        min-width: auto;
        width: 100%;
        text-align: center;
    }

    .rating-score {
        font-size: 2rem;
    }

    .rating-bars {
        width: 100%;
    }

    .rating-row {
        font-size: 0.75rem;
        gap: 0.5rem;
    }

    .rating-label {
        width: 28px;
        font-size: 0.75rem;
    }

    .rating-bar-track {
        height: 5px;
    }

    .safety-section,
    .faq-section {
        padding: 1rem;
    }

    .faq-item {
        padding: 0.8rem 0.9rem;
    }

    .hero-meta {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
}
