/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Navigation */
.navbar {
    background: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.8;
}

.logo {
    width: 32px;
    height: 32px;
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 12px;
    position: relative;
}

.nav-links a:hover {
    color: #007aff;
    background: rgba(0, 122, 255, 0.1);
    backdrop-filter: blur(10px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #1a1a1a;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.05) 0%, rgba(0, 122, 255, 0.1) 100%);
    backdrop-filter: blur(20px);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 20px;
    align-items: center;
    position: relative;
    z-index: 1;
    min-height: 600px;
}

.hero-content {
    grid-column: 1 / 3;
    grid-row: 2 / 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-image {
    grid-column: 3 / 5;
    grid-row: 1 / 5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-stats {
    grid-column: 1 / 3;
    grid-row: 4 / 5;
    display: flex;
    gap: 20px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    margin-bottom: 60px;
}

.app-store-badge {
    height: 60px;
    transition: transform 0.3s ease;
}

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

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 20px;
}

.stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 20px;
    transition: all 0.3s ease;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #007aff;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.7;
}

.phone-mockup {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.02) 0%, rgba(0, 122, 255, 0.05) 100%);
    backdrop-filter: blur(1px);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a1a1a;
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 24px;
    pointer-events: none;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Screenshots Section */
.screenshots {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.screenshots::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.01) 0%, rgba(0, 122, 255, 0.03) 100%);
    backdrop-filter: blur(1px);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.screenshot-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.screenshot-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 24px;
    pointer-events: none;
}

.screenshot-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.screenshot {
    width: 100%;
    max-width: 250px;
    border-radius: 32px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.screenshot:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.screenshot-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
    position: relative;
    z-index: 1;
}

.screenshot-item p {
    color: #666;
    position: relative;
    z-index: 1;
}

/* Download Section */
.download {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #1a1a1a;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.download::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.05) 0%, rgba(0, 122, 255, 0.1) 100%);
    backdrop-filter: blur(20px);
}

.download-content {
    position: relative;
    z-index: 1;
}

.download-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.download-content p {
    font-size: 1.25rem;
    opacity: 0.8;
    margin-bottom: 40px;
}

.download-buttons {
    margin-bottom: 40px;
}

.download-info {
    opacity: 0.7;
}

.download-info p {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.05) 0%, rgba(0, 122, 255, 0.1) 100%);
    backdrop-filter: blur(1px);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #007aff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #999;
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1000px) {
    .hero {
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 120px;
    }
}

@media (min-width: 769px) {
    .hero-image {
        margin-top: 0;
    }

    .hero-stats {
        position: static;
        margin-top: 10px;
        justify-content: flex-start;
    }
}

@media (max-width: 1160px) {
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat:nth-child(1) {
        flex-basis: 100%;
    }

    .stat:nth-child(2),
    .stat:nth-child(3) {
        flex-basis: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(4, 0.5fr);
        min-height: 800px;
    }

    .hero-content {
        grid-column: 1 / 5;
        grid-row: 1 / 2;
        text-align: center;
    }

    .hero-image {
        grid-column: 1 / 5;
        grid-row: 2 / 4;
        margin-top: 0px;
    }

    .hero-stats {
        grid-column: 1 / 5;
        grid-row: 4 / 5;
        margin-top: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

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

    .screenshots-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .feature-card {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .screenshot-item {
        border-radius: 20px;
        padding: 20px;
    }

    .stat {
        border-radius: 16px;
        padding: 16px;
        flex: 1;
        min-width: 100px;
    }

    .hero-stats {
        gap: 12px;
    }
}

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

/* Button styles */
.btn-primary {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

/* iOS 26 Style Animations */
.feature-card,
.screenshot-item,
.faq-item {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.6s ease;
}

.feature-card.animate-in,
.screenshot-item.animate-in,
.faq-item.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* iOS 26 Style Liquid Glass Effects */
.liquid-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.liquid-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Privacy and Support Page Styles */
.privacy-content,
.support-content {
    padding: 120px 0 80px;
    background: #f8f9fa;
    min-height: 100vh;
}

.privacy-header,
.support-header {
    text-align: center;
    margin-bottom: 40px;
}

.privacy-header h1,
.support-header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.privacy-intro,
.support-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 16px;
}

.last-updated {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

.privacy-body,
.support-body {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section,
.troubleshooting-section,
.contact-section,
.system-requirements {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.privacy-section h2,
.troubleshooting-section h2,
.contact-section h2,
.system-requirements h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 8px;
}

.privacy-section p,
.troubleshooting-section p,
.contact-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
}

.privacy-section ul,
.troubleshooting-section ul,
.contact-section ul {
    list-style: none;
    padding-left: 0;
}

.privacy-section ul li,
.troubleshooting-section ul li,
.contact-section ul li {
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
}

.privacy-section ul li::before,
.troubleshooting-section ul li::before,
.contact-section ul li::before {
    content: "•";
    color: #007aff;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.troubleshooting-item,
.requirement-item {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
}

.troubleshooting-item h3,
.requirement-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.troubleshooting-item p,
.requirement-item p {
    color: #666;
    line-height: 1.6;
}

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

.contact-method {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.contact-method h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.contact-method p {
    color: #666;
    margin-bottom: 16px;
}

/* Support CTA Section */
.support-cta {
    margin: 4rem 0;
    padding: 0;
}

.support-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.support-hero h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.support-hero p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.support-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.primary-action {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 2.5rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.primary-action::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
}

.primary-action .action-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.primary-action .action-content {
    position: relative;
    z-index: 1;
}

.primary-action h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.primary-action p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-discord {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-discord:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.secondary-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.action-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.action-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.card-icon {
    font-size: 2rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    border-radius: 12px;
    flex-shrink: 0;
}

.card-content {
    flex: 1;
}

.card-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.card-content p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.card-arrow {
    font-size: 1.2rem;
    color: #667eea;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.action-card:hover .card-arrow {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .support-actions {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .support-hero h2 {
        font-size: 2rem;
    }

    .primary-action {
        padding: 2rem;
    }
}

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

.requirement-item ul {
    list-style: none;
    padding-left: 0;
}

.requirement-item ul li {
    margin-bottom: 6px;
    padding-left: 16px;
    position: relative;
}

.requirement-item ul li::before {
    content: "✓";
    color: #007aff;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Responsive Design for Privacy/Support Pages */
@media (max-width: 768px) {
    .privacy-header h1,
    .support-header h1 {
        font-size: 2rem;
    }

    .privacy-section,
    .troubleshooting-section,
    .contact-section,
    .system-requirements {
        padding: 20px;
    }

    .contact-methods,
    .requirements-grid {
        grid-template-columns: 1fr;
    }
}
