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

:root {
    --primary: #7A1FA2;
    --primary-light: #9C4DCC;
    --accent: #F4A742;
    --accent-light: #F8C77A;
    --background: #0E0E11;
    --surface: #1A1A20;
    --surface-variant: #2A2A31;
    --text: #FFFFFF;
    --text-secondary: #E4E4E7;
    --success: #4CAF50;
    --warning: #FFC107;
    --error: #F44336;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    border-radius: 8px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: radial-gradient(circle at 30% 20%, rgba(122, 31, 162, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(244, 167, 66, 0.15) 0%, transparent 50%);
}

.hero-content {
    text-align: center;
    padding: 120px 24px 80px;
}

.version-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--surface);
    border: 1px solid var(--primary);
    border-radius: 24px;
    padding: 8px 20px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(122, 31, 162, 0.2);
}

.version-tag {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.version-date {
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
}

.hero-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    margin-bottom: 24px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--text);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(122, 31, 162, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--background);
    box-shadow: 0 10px 30px rgba(244, 167, 66, 0.4);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.badges {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.badges img {
    height: 20px;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 64px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.features {
    background: var(--surface);
}

.privacy-feature-highlight {
    background: linear-gradient(135deg, rgba(122, 31, 162, 0.15) 0%, rgba(244, 167, 66, 0.15) 100%);
    border: 2px solid var(--primary);
    border-radius: 24px;
    padding: 48px;
    margin-bottom: 64px;
    display: flex;
    gap: 32px;
    align-items: center;
    box-shadow: 0 20px 60px rgba(122, 31, 162, 0.3);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 20px 60px rgba(122, 31, 162, 0.3); }
    50% { box-shadow: 0 20px 80px rgba(122, 31, 162, 0.5); }
}

.privacy-icon {
    font-size: 80px;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 8px rgba(122, 31, 162, 0.5));
}

.privacy-content h3 {
    font-size: 32px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.privacy-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 24px;
}

.privacy-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.privacy-badge {
    background: rgba(122, 31, 162, 0.2);
    border: 1px solid var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-light);
}

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

.feature-card {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(122, 31, 162, 0.2);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(122, 31, 162, 0.3);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text);
}

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

.features-grid .feature-card:nth-child(n+7) {
    display: none;
}

.features-grid.show-all .feature-card {
    display: block;
}

.features-toggle {
    text-align: center;
    margin-top: 48px;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

/* How It Works Section */
.steps {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
}

.step-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Stats Section */
.stats {
    background: var(--surface);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 18px;
    color: var(--text-secondary);
}

/* Tech Stack Section */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.tech-item {
    background: var(--surface);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: border-color 0.3s;
}

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

.tech-name {
    font-weight: 600;
}

.tech-version {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Download Section */
.download {
    background: var(--surface);
}

.download-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.download-card {
    background: var(--background);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s;
}

.download-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.download-card h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.download-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.download-note {
    text-align: center;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.download-note p {
    margin-bottom: 8px;
}

.download-note strong {
    color: var(--primary);
}

/* Footer */
.footer {
    background: var(--surface);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

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

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-right {
    color: var(--text-secondary);
}

/* Screenshots Section */
.screenshots {
    background: var(--background);
    padding: 80px 0;
}

.carousel-container {
    position: relative;
    max-width: 100%;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(122, 31, 162, 0.9);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 32px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.carousel-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-arrow:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(122, 31, 162, 0.5);
}

.carousel-arrow-left {
    left: 0;
}

.carousel-arrow-right {
    right: 0;
}

.screenshots-carousel {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    padding: 40px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--surface);
    cursor: grab;
    user-select: none;
}

.screenshots-carousel:active {
    cursor: grabbing;
}

.screenshots-carousel::-webkit-scrollbar {
    height: 8px;
}

.screenshots-carousel::-webkit-scrollbar-track {
    background: var(--surface);
    border-radius: 4px;
}

.screenshots-carousel::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.screenshots-carousel::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

.phone-mockup {
    flex: 0 0 auto;
    scroll-snap-align: center;
    text-align: center;
}

.phone-frame {
    width: 237px;
    height: 484px;
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 16px;
    padding: 21px 5px 21px 5px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(255, 255, 255, 0.1),
                inset 0 1px 2px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.phone-camera {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #1a1a2e 0%, #0f0f1e 100%);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 10;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}

.phone-camera::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(100, 120, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.phone-screenshot {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 13px;
    background: #0E0E11;
    display: block;
}

.phone-mockup {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.phone-mockup:hover {
    transform: scale(1.05);
}

.screenshot-caption {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* FAQ Section Enhancements */
#faq h3 {
    transition: color 0.3s ease;
}

#faq > div > div > div:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
    box-shadow: 0 15px 40px rgba(122, 31, 162, 0.4);
}

#faq > div > div > div:hover h3 {
    color: var(--accent) !important;
}

/* Screenshot Modal */
.screenshot-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
}

.screenshot-modal.active {
    display: block;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 48px;
    align-items: center;
    max-width: 90vw;
    max-height: 90vh;
    animation: slideIn 0.4s ease;
}

@keyframes slideIn {
    from {
        transform: translate(-50%, -50%) translateX(100%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%) translateX(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: -40px;
    right: -40px;
    background: var(--primary);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.modal-close:hover {
    transform: rotate(90deg) scale(1.1);
    background: var(--accent);
}

.modal-screenshot {
    flex-shrink: 0;
}

.phone-frame-large {
    width: 319px;
    height: 716px;
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 32px 6px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8),
                0 0 0 1px rgba(255, 255, 255, 0.1),
                inset 0 1px 2px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.phone-frame-large .phone-camera {
    top: 12px;
    width: 10px;
    height: 10px;
}

.modal-info {
    max-width: 500px;
    color: white;
    animation: slideInRight 0.5s ease 0.2s both;
}

/* Info Modal Styles */
.info-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
}

.info-modal.active {
    display: block;
}

.info-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--dark-card);
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8);
    animation: slideIn 0.4s ease;
    z-index: 1001;
}

.info-modal-content h2 {
    margin-bottom: 20px;
}

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

.info-modal-content ul li {
    padding: 8px 0;
}

.info-modal .modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.info-modal .modal-close:hover {
    transform: rotate(90deg) scale(1.1);
    background: var(--accent);
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.modal-info h2 {
    font-size: 32px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--primary);
}

.modal-info h3 {
    font-size: 20px;
    margin: 24px 0 12px 0;
    color: var(--accent);
}

.modal-info p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.modal-info ul {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.modal-info li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text);
}

.modal-info li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Releases Section */
.releases {
    background: linear-gradient(180deg, var(--background) 0%, var(--surface) 50%, var(--background) 100%);
    position: relative;
    overflow: hidden;
}

.releases::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, var(--primary) 20%, var(--accent) 80%, transparent 100%);
    opacity: 0.3;
    z-index: 0;
}

.releases .container {
    position: relative;
    z-index: 1;
}

.releases-grid {
    display: grid;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.release-card {
    background: var(--surface-variant);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.release-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(122, 31, 162, 0.1) 0%, rgba(244, 167, 66, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.release-card:hover {
    transform: translateX(8px);
    border-color: var(--primary);
    box-shadow: -8px 0 0 var(--primary), 
                0 8px 32px rgba(122, 31, 162, 0.4);
}

.release-card:hover::before {
    opacity: 1;
}

.release-card.loading {
    text-align: center;
    padding: 64px 32px;
    border: 2px dashed rgba(122, 31, 162, 0.3);
}

.loading-spinner {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    border: 4px solid var(--surface);
    border-top: 4px solid var(--primary);
    border-right: 4px solid var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.release-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.release-version {
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.release-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.release-date {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--surface);
    padding: 6px 14px;
    border-radius: 20px;
}

.release-badge {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--text);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(122, 31, 162, 0.3);
}

.release-badge.latest {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--background);
    box-shadow: 0 4px 12px rgba(244, 167, 66, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.release-body {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.release-body p {
    margin-bottom: 12px;
}

.release-body h1,
.release-body h2,
.release-body h3 {
    color: var(--text);
    margin-top: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.release-body h1 {
    font-size: 1.5em;
}

.release-body h2 {
    font-size: 1.3em;
}

.release-body h3 {
    font-size: 1.1em;
    color: var(--accent);
}

.release-body ul,
.release-body ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

.release-body li {
    margin-bottom: 8px;
    padding-left: 8px;
}

.release-body ul li::marker {
    color: var(--primary);
}

.release-body code {
    background: var(--surface);
    color: var(--accent);
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.9em;
    font-family: 'Courier New', monospace;
    border: 1px solid rgba(244, 167, 66, 0.2);
}

.release-footer {
    display: flex;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.release-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 12px;
    background: var(--surface);
    border: 1px solid rgba(122, 31, 162, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.release-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(122, 31, 162, 0.4);
}

.release-link:nth-child(2):hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--background);
    box-shadow: 0 6px 20px rgba(244, 167, 66, 0.4);
}

.footer-right a {
    color: var(--primary);
    text-decoration: none;
}

.footer-right a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .step {
        flex-direction: column;
        gap: 16px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .release-card {
        padding: 24px;
    }

    .release-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(122, 31, 162, 0.4);
    }

    .release-version {
        font-size: 24px;
    }

    .release-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .release-meta {
        width: 100%;
        justify-content: space-between;
    }

    .release-footer {
        flex-direction: column;
    }

    .release-link {
        width: 100%;
        justify-content: center;
    }

    .screenshots-carousel {
        gap: 24px;
        padding: 24px 0;
    }

    .phone-frame {
        width: 209px;
        height: 427px;
        border-radius: 14px;
        padding: 17px 4px;
    }

    .phone-camera {
        width: 6px;
        height: 6px;
        top: 8px;
    }

    .phone-screenshot {
        border-radius: 11px;
    }
    
    .privacy-feature-highlight {
        flex-direction: column;
        padding: 32px 24px;
        text-align: center;
    }
    
    .privacy-icon {
        font-size: 64px;
    }
    
    .privacy-content h3 {
        font-size: 24px;
    }
    
    .privacy-content p {
        font-size: 16px;
    }
    
    .privacy-badges {
        justify-content: center;
    }
    
    .modal-content {
        flex-direction: column;
        gap: 24px;
        max-width: 90vw;
    }
    
    .phone-frame-large {
        width: 280px;
        height: 628px;
        padding: 28px 5px;
    }
    
    .info-modal-content {
        width: 90%;
        max-width: 500px;
        padding: 24px;
    }
    
    .info-modal-content h2 {
        font-size: 24px;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .modal-content {
        flex-direction: column;
        gap: 24px;
        padding: 20px;
    }
    
    .phone-frame-large {
        width: 260px;
        height: 530px;
        padding: 22px 5px;
    }
    
    .modal-info {
        max-width: 100%;
    }
    
    .modal-close {
        top: 10px;
        right: 10px;
    }
    
    .screenshot-caption {
        font-size: 13px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--primary);
    color: white;
}
