/*
Theme Name: SetClick Pro
Theme URI: https://setclickpro.com
Author: SkullKill
Author URI: https://setclickpro.com
Description: Professional click track player website theme. Custom WordPress theme built for SetClick Pro with exact HTML/CSS preservation.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: setclick-pro
Tags: music, band, performance, one-column, custom-menu, featured-images, sticky-post, threaded-comments, translation-ready
*/

/* SetClick Pro Website Styles */
/* Based on index-landing.html design language */

:root {
    --primary: #fbbf24;
    --primary-dark: #f59e0b;
    --secondary: #1f2937;
    --secondary-dark: #111827;
    --text-light: #ffffff;
    --text-gray: #9ca3af;
    --text-dark: #d1d5db;
    --border-color: rgba(251, 191, 36, 0.2);
    --card-bg: rgba(255, 255, 255, 0.05);
    --shadow-primary: rgba(251, 191, 36, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: hidden;
}

/* Navigation */
.nav {
    background: rgba(31, 41, 55, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.nav-logo:hover {
    color: var(--primary);
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
    fill: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active,
.nav-links a.current-menu-item {
    color: var(--primary);
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--secondary) !important;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 700;
}

.nav-cta:hover {
    color: var(--secondary) !important;
    text-decoration: none !important;
}

.nav-cta:visited {
    color: var(--secondary) !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.logo-large {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px var(--shadow-primary);
}

.logo-large svg {
    width: 60px;
    height: 60px;
    fill: var(--secondary);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.75rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.description {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--secondary);
    box-shadow: 0 10px 30px var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px var(--shadow-primary);
    color: var(--secondary) !important;
    text-decoration: none !important;
}

.btn-primary:visited {
    color: var(--secondary) !important;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
    color: var(--text-light);
    text-decoration: none;
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.25rem;
}

.hero-note {
    color: var(--text-gray);
    font-size: 1rem;
    margin-top: 30px;
}

.hero-image {
    margin-top: 60px;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.device-phone {
    max-width: 350px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.device-desktop {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: var(--primary);
}

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

.benefit-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.benefit-card h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 80px 0;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse > * {
    direction: ltr;
}

.feature-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--secondary);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.feature-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.feature-list {
    list-style: none;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.feature-list li {
    margin-bottom: 12px;
    padding-left: 10px;
}

.feature-image {
    max-width: 500px;
    margin: 0 auto;
}

.feature-image img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.screenshots-row {
    display: flex;
	max-width: 100%;
    gap: 15px;
	flex-wrap: wrap
}

.screenshots-row img {
    max-width: 270px;
}

/* PWA Explainer */
.pwa-explainer {
    padding: 80px 0;
    background: rgba(251, 191, 36, 0.05);
}

.pwa-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.highlight {
    color: var(--primary);
}

.lead {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 50px;
}

.pwa-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.pwa-column {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.pwa-column h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.pwa-column ul {
    list-style: none;
    color: var(--text-dark);
}

.pwa-column li {
    margin-bottom: 12px;
    padding-left: 10px;
}

.install-steps {
    margin-top: 60px;
}

.install-steps h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--text-light);
}

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

.step {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.step-number {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.step p {
    color: var(--text-dark);
    line-height: 1.8;
}

.note-box {
    margin-top: 40px;
    padding: 20px;
    background: rgba(251, 191, 36, 0.1);
    border-left: 4px solid var(--primary);
    border-radius: 4px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.note-box strong {
    color: #6097B6 !important;
    font-weight: 700;
}

.note-box p strong {
    color: #6097B6 !important;
}

.note-box p {
    color: var(--text-dark);
    margin: 0;
    text-align: center;
}

.note-box p:first-child {
    font-weight: bold;
    margin-bottom: 10px;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
}

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

.gallery-item {
    text-align: center;
}

.gallery-item img {
    width: 100%;
    max-width: 250px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
}

.gallery-item p {
    color: var(--text-dark);
    font-size: 1.1rem;
}

/* Donate Section */
.donate {
    padding: 80px 0;
}

.donate-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.donate-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary);
}

.donate-content p {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.donate-content ul {
    list-style: none;
    max-width: 500px;
    margin: 30px auto;
    text-align: left;
}

.donate-content li {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.donate-note {
    font-style: italic;
    margin-top: 30px;
}

/* CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(251, 191, 36, 0.05) 100%);
}

.final-cta h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.final-cta p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.final-cta .btn {
    display: block;
    margin: 0 auto;
    width: fit-content;
}

.cta-note {
    text-align: center;
    color: var(--text-gray);
    font-size: 1rem;
    margin-top: 20px;
}

/* Footer */
.footer {
    background: var(--secondary-dark);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-logo {
    width: 40px;
    height: 40px;
    fill: var(--primary);
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-gray);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-column h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(251, 191, 36, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-gray);
    margin-bottom: 5px;
}

/* Page Header */
.page-header {
    padding: 80px 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header .lead {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 0;
}

/* Content Section */
.content-section {
    padding: 80px 0;
}

.content-grid {
    max-width: 900px;
    margin: 0 auto;
}

.content-block {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.content-block h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 20px;
}

.content-block h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.content-block p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-block.highlight {
    background: rgba(251, 191, 36, 0.08);
    border-color: var(--primary);
}

.feature-list {
    list-style: none;
}

.feature-list li {
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.8;
}

.feature-list li strong {
    color: var(--primary);
}

.simple-list {
    list-style: disc;
    margin-left: 30px;
}

.simple-list li {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.tech-item {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(251, 191, 36, 0.1);
}

.tech-item h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.tech-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.spotify-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

/* User Guide Styles */
.user-guide-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.guide-nav {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.guide-nav h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.guide-nav ul {
    list-style: none;
}

.guide-nav li {
    margin-bottom: 10px;
}

.guide-nav a {
    color: var(--text-dark);
    text-decoration: none;
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s;
}

.guide-nav a:hover,
.guide-nav a.active {
    background: rgba(251, 191, 36, 0.1);
    color: var(--primary);
}

.guide-content {
    flex: 1;
}

.guide-section {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 30px;
    overflow: hidden;
}

.guide-section-header {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(251, 191, 36, 0.05);
    transition: background 0.3s;
}

.guide-section-header:hover {
    background: rgba(251, 191, 36, 0.1);
}

.guide-section-header h2 {
    color: var(--primary);
    font-size: 1.8rem;
    margin: 0;
}

.accordion-icon {
    color: var(--primary);
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.guide-section.active .accordion-icon {
    transform: rotate(180deg);
}

.guide-section-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.guide-section.active .guide-section-content {
    max-height: 10000px;
}

.guide-section-inner {
    padding: 30px;
}

.guide-section-inner h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.guide-section-inner h3:first-child {
    margin-top: 0;
}

.guide-section-inner p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 15px;
}

.guide-section-inner ul,
.guide-section-inner ol {
    margin: 20px 0 20px 30px;
}

.guide-section-inner li {
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.6;
}

.guide-section-inner strong {
    color: var(--text-light);
}

.guide-section-inner code {
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--primary);
    font-family: 'Courier New', monospace;
}

.step-list {
    list-style: none;
    counter-reset: step-counter;
    margin-left: 0;
}

.step-list li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
}

.step-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--primary);
    color: #374151;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.screenshots-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.screenshot-container {
    text-align: center;
}

.screenshot-container img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
}

.screenshot-caption {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-style: italic;
}

/* FAQ Styles */
.faq-section {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 50px;
}

.faq-category h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question span:first-child {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    display: none !important;
}

.faq-question::after {
    content: '\25BC';
    font-size: 1.2rem;
    color: var(--primary);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 2000px;
}

.faq-answer-content {
    padding: 0 20px 20px;
    color: var(--text-dark);
    line-height: 1.8;
}

.faq-answer-content p {
    margin-bottom: 15px;
}

.faq-answer-content strong {
    color: var(--text-light);
}

.faq-answer-content ul,
.faq-answer-content ol {
    margin: 15px 0;
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: var(--secondary);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    z-index: 999;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

#back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

#back-to-top.show {
    display: block;
}

/* Global Link Styles */
a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

a:visited {
    color: var(--primary);
}

.text-link {
    color: var(--primary);
    text-decoration: underline;
    transition: color 0.3s;
}

.text-link:hover {
    color: var(--primary-dark);
}

.benefit-card a {
    color: var(--primary);
    text-decoration: underline;
}

.benefit-card a:hover {
    color: var(--primary-dark);
}

.content-block a:not(.btn),
.faq-answer-content a,
.guide-section a:not(.btn) {
    color: var(--primary);
    text-decoration: underline;
}

.content-block a:not(.btn):hover,
.faq-answer-content a:hover,
.guide-section a:not(.btn):hover {
    color: var(--primary-dark);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .feature-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-row.reverse {
        direction: ltr;
    }
    
    .pwa-comparison {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .user-guide-layout {
        grid-template-columns: 1fr;
    }
    
    .guide-nav {
        position: static;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(31, 41, 55, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: 0;
        border-top: 1px solid var(--border-color);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    
    .nav-links.mobile-active {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 0;
        gap: 0;
        background: rgba(31, 41, 55, 0.98);
        backdrop-filter: blur(10px);
        border-top: 1px solid var(--border-color);
    }
    
    .nav-links li {
        margin: 0;
        padding: 0;
        width: 100%;
        border-bottom: 1px solid rgba(251, 191, 36, 0.1);
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        padding: 12px 20px;
        border: none;
        font-size: 1rem;
        display: block;
        width: 100%;
        text-align: left;
        transition: background 0.3s, color 0.3s;
    }
    
    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(251, 191, 36, 0.1);
        color: var(--primary);
    }
    
    .nav-links a.nav-cta {
        padding: 12px 20px;
        font-size: 1rem;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        color: var(--secondary) !important;
        text-align: center;
        margin: 10px 20px;
        border-radius: 8px;
        width: calc(100% - 40px);
    }
    
    .nav-links a.nav-cta:hover {
        background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
        color: var(--secondary) !important;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.3rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .hero-image {
        flex-direction: column;
    }
    
    .device-phone,
    .device-desktop {
        max-width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-image img {
        max-width: 100%;
    }
    
    .screenshots-row {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-block {
        padding: 25px;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    /* User Guide Mobile Fixes */
    .guide-section {
        margin-bottom: 15px;
        overflow: hidden;
    }
    
    .guide-section-header {
        padding: 15px 12px;
        word-wrap: break-word;
    }
    
    .guide-section-header h2 {
        font-size: 1.2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .guide-section-inner {
        padding: 15px 12px;
    }
    
    .guide-section-inner h3 {
        font-size: 1.3rem;
        margin: 20px 0 12px;
        word-wrap: break-word;
    }
    
    .guide-section-inner h4 {
        font-size: 1.1rem;
        margin: 15px 0 10px;
    }
    
    .guide-section-inner p {
        font-size: 0.95rem;
        word-wrap: break-word;
    }
    
    .content-block {
        padding: 15px 12px;
        margin-bottom: 15px;
    }
    
    .step-list li {
        padding-left: 35px;
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .step-list li:before {
        width: 24px;
        height: 24px;
        font-size: 0.85rem;
		color: #374151 
        left: 0;
    }
    
    .simple-list {
        margin-left: 20px;
        font-size: 0.95rem;
    }
    
    .simple-list li {
        margin-bottom: 8px;
    }
    
    .note-box {
        padding: 12px;
        margin: 15px 0;
        font-size: 0.9rem;
    }
    
    .note-box h4 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .screenshot-container img,
    .screenshots-row img {
        max-width: 100%;
        height: auto;
    }
    
    pre {
        font-size: 0.8rem;
        padding: 10px;
        overflow-x: auto;
    }
    
    /* FAQ Mobile Fixes */
    .faq-question {
        padding: 15px 12px;
        font-size: 1rem;
    }
    
    .faq-question span:first-child {
        padding-right: 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .faq-answer-content {
        padding: 0 12px 15px;
        font-size: 0.95rem;
    }
    
    .faq-category h2 {
        font-size: 1.5rem;
        padding: 0 12px 12px;
    }
    
    /* Ensure all content fits on mobile */
    .container {
        padding: 0 15px;
    }
    
    .content-grid {
        padding: 0;
    }
    
    /* Fix any overflow issues */
    .guide-content,
    .faq-section,
    .content-section {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    .guide-section-content,
    .faq-answer {
        overflow-x: hidden;
    }
    
    /* Make sure images don't overflow */
    img {
        max-width: 100%;
        height: auto;
    }
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* ==================================================
   ENHANCED FLOATING NAVIGATION - DESKTOP ONLY
   Fixed to preserve mobile responsiveness
   ================================================== */

/* Smooth scroll behavior - applies to all screens */
html {
    scroll-behavior: smooth;
}

.guide-section {
    scroll-margin-top: 120px;
}

/* Enhanced nav styling - applies to all screens */
.guide-nav h3 {
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.guide-nav ul {
    padding: 0;
    margin: 0;
}

.guide-nav li {
    margin-bottom: 8px;
}

.guide-nav a {
    padding: 10px 12px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.guide-nav a:hover {
    background: rgba(251, 191, 36, 0.15);
    transform: translateX(3px);
}

.guide-nav a.active {
    background: rgba(251, 191, 36, 0.2);
    font-weight: 600;
    border-left: 3px solid var(--primary);
    padding-left: 9px;
}

.guide-content {
    min-width: 0;
}

/* DESKTOP ONLY - Floating navigation for screens wider than 1024px */
@media (min-width: 1025px) {
    .guide-nav {
        position: -webkit-sticky;
        position: sticky;
        top: 20px;
        height: fit-content;
        max-height: calc(100vh - 40px);
        overflow-y: auto;
        background: var(--card-bg);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 20px;
        z-index: 100;
        
        /* Smooth scrollbar styling */
        scrollbar-width: thin;
        scrollbar-color: var(--primary) rgba(255, 255, 255, 0.1);
    }

    .guide-nav::-webkit-scrollbar {
        width: 6px;
    }

    .guide-nav::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 3px;
    }

    .guide-nav::-webkit-scrollbar-thumb {
        background: var(--primary);
        border-radius: 3px;
    }

    .guide-nav::-webkit-scrollbar-thumb:hover {
        background: var(--primary-dark);
    }
    
    /* Ensure overflow doesn't block sticky on desktop */
    body {
        overflow-x: hidden;
        overflow-y: visible;
    }
    
    .content-section,
    .content-section .container,
    .user-guide-layout {
        overflow: visible;
    }
}

/* TABLET - Collapsible navigation */
@media (max-width: 1024px) {
    .guide-nav h3 {
        cursor: pointer;
        position: relative;
        user-select: none;
    }
    
    .guide-nav h3::after {
        content: '▼';
        position: absolute;
        right: 0;
        transition: transform 0.3s;
    }
    
    .guide-nav.collapsed h3::after {
        transform: rotate(-90deg);
    }
    
    .guide-nav.collapsed ul {
        display: none;
    }
}

/* MOBILE - Compact navigation */
@media (max-width: 768px) {
    .guide-nav {
        padding: 15px;
    }
    
    .guide-nav h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .guide-nav a {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
	
	@media (max-width: 1024px) {
    .guide-section {
        scroll-margin-top: 80px !important;
    }
    
    .guide-section.active {
        scroll-snap-align: start;
    }

	
	
}

