/* Modern Dark Theme with Neon Purple Accents - Inspired by Template */
:root {
    --neon-purple: #8B5CF6;
    --neon-purple-light: #A855F7;
    --neon-purple-dark: #7c3aed;
    --background: #0a0a0a;
    --foreground: #ffffff;
    --card: #111111;
    --card-foreground: #ffffff;
    --muted: #262626;
    --muted-foreground: #a3a3a3;
    --border: #262626;
    --border-purple: rgba(139, 92, 246, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    background-image: 
        radial-gradient(ellipse 80% 80% at 50% -20%, rgba(139, 92, 246, 0.15), transparent),
        radial-gradient(ellipse 80% 80% at 80% 60%, rgba(139, 92, 246, 0.1), transparent);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
}

/* Floating Background Effects */
body::before {
    content: '';
    position: fixed;
    top: 25%;
    left: 25%;
    width: 400px;
    height: 400px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse-slow 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    bottom: 25%;
    right: 25%;
    width: 320px;
    height: 320px;
    background: rgba(139, 92, 246, 0.15);
    border-radius: 50%;
    filter: blur(80px);
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse-slow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    background: transparent;
    min-height: 100vh;
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0;
}

/* Header Styles */
header {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-purple);
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.logo {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.6), 0 0 60px rgba(139, 92, 246, 0.4);
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.5));
    max-width: 100%;
    object-fit: contain;
}

.logo:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.8), 0 0 80px rgba(139, 92, 246, 0.6);
}

header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-purple-light) 50%, var(--neon-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.8), 0 0 60px rgba(139, 92, 246, 0.6);
    animation: pulse-slow 4s ease-in-out infinite;
}

.tagline {
    font-size: 1.1rem;
    color: var(--muted-foreground);
    font-weight: 400;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}

/* Navigation */
nav {
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-purple);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    flex-direction: column;
    justify-content: space-around;
    width: 44px;
    height: 44px;
    margin: 0.5rem auto;
    position: relative;
    z-index: 101;
    align-items: center;
    gap: 5px;
}

.nav-toggle:hover {
    background: rgba(139, 92, 246, 0.1);
    border-radius: 8px;
}

.nav-toggle:focus {
    outline: 2px solid var(--neon-purple);
    outline-offset: 2px;
    border-radius: 8px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--neon-purple);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
    display: block;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
}

nav a {
    color: var(--muted-foreground);
    text-decoration: none;
    padding: 1.2rem 2rem;
    display: inline-block;
    font-weight: 500;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--neon-purple);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

nav a:hover {
    color: var(--foreground);
    background: rgba(139, 92, 246, 0.05);
}

nav a:hover::before {
    width: 100%;
}

nav a.active {
    color: var(--neon-purple);
    background: rgba(139, 92, 246, 0.1);
}

nav a.active::before {
    width: 100%;
}

/* Main Content */
main {
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0 6rem 0;
    margin-bottom: 4rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
}

.hero h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: -0.03em;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero h2 .gradient-text {
    background: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-purple-light) 50%, var(--neon-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.8);
    animation: pulse-slow 4s ease-in-out infinite;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--muted-foreground);
    font-weight: 400;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

.badge-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.store-badge {
    display: inline-block;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.3));
}

.store-badge:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.6));
}

.store-badge img {
    height: 52px;
    display: block;
    max-width: 100%;
    width: auto;
}

.store-badge {
    max-width: 100%;
}

/* Info Sections */
.info-section {
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border-purple);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-purple), transparent);
    opacity: 0.5;
}

.info-section:hover {
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.2);
    transform: translateY(-2px);
}

.section-heading {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--foreground);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 3rem;
}

.section-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--neon-purple), transparent);
    margin: 1rem auto 0;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid var(--border-purple);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature:hover {
    border-color: rgba(139, 92, 246, 0.6);
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.3);
}

.feature:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
    transition: transform 0.3s ease;
}

.feature:hover .feature-icon {
    transform: scale(1.1);
}

.feature h4 {
    color: var(--foreground);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.feature p {
    color: var(--muted-foreground);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.card {
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border-purple);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 15px 50px rgba(139, 92, 246, 0.3);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
}

.card h3 {
    color: var(--foreground);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.card p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-purple-light) 100%);
    color: var(--foreground);
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.6), 0 0 60px rgba(139, 92, 246, 0.4);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.8), 0 0 80px rgba(139, 92, 246, 0.6);
}

.btn:active {
    transform: translateY(0) scale(1);
}

/* Contact Section */
.contact-section {
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border-purple);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
}

.contact-section h3 {
    color: var(--foreground);
    font-size: 2rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.email-link {
    display: inline-block;
    color: var(--neon-purple);
    font-size: 1.3rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-decoration: none;
    padding: 1rem 2rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--border-purple);
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.email-link:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: var(--neon-purple);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
    transform: translateY(-2px);
}

/* Content Sections for Legal Pages */
.content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border-purple);
    border-radius: 24px;
}

.content h1 {
    color: var(--foreground);
    font-size: 2.5rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content h2 {
    color: var(--foreground);
    font-size: 2rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 2.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-purple);
    position: relative;
}

.content h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100px;
    height: 2px;
    background: var(--neon-purple);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.content h3 {
    color: var(--foreground);
    font-size: 1.5rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 2rem 0 1rem 0;
}

.content h4 {
    color: var(--neon-purple);
    font-size: 1.2rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 1.5rem 0 0.8rem 0;
}

.content p {
    margin-bottom: 1rem;
    line-height: 1.75;
    color: var(--muted-foreground);
    font-weight: 400;
    letter-spacing: -0.01em;
}

.content ul, .content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
    color: var(--muted-foreground);
}

.content a {
    color: var(--neon-purple);
    text-decoration: underline;
    transition: color 0.3s ease;
    word-break: break-word;
    overflow-wrap: break-word;
}

.content img {
    max-width: 100%;
    height: auto;
}

.content a:hover {
    color: var(--neon-purple-light);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: rgba(17, 17, 17, 0.8);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-purple);
}

.content th {
    background: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-purple-light) 100%);
    color: var(--foreground);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.content td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-purple);
    color: var(--muted-foreground);
}

.content tr:last-child td {
    border-bottom: none;
}

.content tr:hover {
    background: rgba(139, 92, 246, 0.05);
}

/* Warning/Alert Boxes */
.warning-box {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
    border-left: 4px solid #F59E0B;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}

.info-box {
    background: rgba(139, 92, 246, 0.1);
    border-left: 4px solid var(--neon-purple);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.info-box p {
    margin-bottom: 0;
    color: var(--muted-foreground);
}

/* Footer */
footer {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(24px);
    border-top: 1px solid var(--border-purple);
    color: var(--foreground);
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 4rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-purple), transparent);
    opacity: 0.5;
}

footer a {
    color: var(--neon-purple);
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--neon-purple-light);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.footer-links {
    margin-top: 1rem;
    opacity: 0.9;
}

/* Form Styles for Reset Password */
#reset-wrapper {
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border-purple);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 2rem;
}

#reset-wrapper h2 {
    color: var(--foreground);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

#reset-form label {
    display: block;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    letter-spacing: -0.01em;
}

#reset-form input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid var(--border-purple);
    border-radius: 10px;
    color: var(--foreground);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
}

#reset-form input:focus {
    outline: none;
    border-color: var(--neon-purple);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

#reset-status {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

#reset-success {
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border-purple);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    margin-top: 2rem;
}

#reset-success h3 {
    color: var(--foreground);
    margin-bottom: 1rem;
    font-size: 1.75rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

#reset-success p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1rem;
    }
    
    header {
        padding: 1.5rem 1rem;
    }
    
    .hero::before {
        width: 400px;
        height: 400px;
    }
    
    .contact-section::before {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1.5rem 1rem;
    }
    
    header h1 {
        font-size: clamp(1.5rem, 5vw, 1.8rem);
    }
    
    .tagline {
        font-size: clamp(0.9rem, 2vw, 1rem);
    }
    
    .logo {
        width: 60px;
        height: 60px;
    }
    
    .logo-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        background: rgba(17, 17, 17, 0.95);
    }
    
    .nav-links.open {
        display: flex;
        max-height: 1000px;
        transition: max-height 0.5s ease-in;
    }
    
    nav {
        flex-direction: column;
        padding: 0;
    }
    
    nav a {
        padding: 1rem;
        text-align: center;
        border-bottom: 1px solid var(--border-purple);
        border-left: 3px solid transparent;
        width: 100%;
        display: block;
    }
    
    nav a::before {
        display: none;
    }
    
    nav a:hover, nav a.active {
        border-left-color: var(--neon-purple);
        background: rgba(139, 92, 246, 0.1);
    }
    
    .hero {
        padding: 3rem 0 4rem 0;
    }
    
    .hero h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: clamp(1rem, 3vw, 1.2rem);
        margin-bottom: 1.5rem;
    }
    
    .cards, .features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    main {
        padding: 2rem 1rem;
    }
    
    .content {
        padding: 1.5rem;
        overflow-x: auto;
    }
    
    .content h1 {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
    }
    
    .content h2 {
        font-size: clamp(1.5rem, 4vw, 1.8rem);
    }
    
    .content h3 {
        font-size: clamp(1.2rem, 3vw, 1.4rem);
    }
    
    .content h4 {
        font-size: clamp(1.1rem, 2.5vw, 1.2rem);
    }
    
    .info-section {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .section-heading {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
        margin-bottom: 2rem;
    }
    
    .contact-section {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .contact-section h3 {
        font-size: clamp(1.5rem, 4vw, 1.8rem);
    }
    
    .feature, .card {
        padding: 1.5rem;
    }
    
    .feature-icon, .card-icon {
        font-size: 2.5rem;
    }
    
    .feature h4, .card h3 {
        font-size: clamp(1.1rem, 3vw, 1.25rem);
    }
    
    .store-badge img {
        height: 44px;
        max-width: 100%;
    }
    
    .badge-row {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .email-link {
        font-size: clamp(1rem, 3vw, 1.2rem);
        padding: 0.875rem 1.5rem;
        word-break: break-word;
    }
    
    .btn {
        padding: 0.875rem 2rem;
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        width: 100%;
        max-width: 300px;
    }
    
    footer {
        padding: 2rem 1rem;
    }
    
    footer p {
        font-size: clamp(0.85rem, 2vw, 0.95rem);
    }
    
    .footer-links {
        font-size: clamp(0.8rem, 2vw, 0.9rem);
    }
    
    /* Table responsiveness */
    .content table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }
    
    .content th,
    .content td {
        padding: 0.75rem 0.5rem;
        font-size: clamp(0.85rem, 2vw, 0.95rem);
    }
    
    /* Form responsiveness */
    #reset-wrapper {
        padding: 2rem 1.5rem;
    }
    
    #reset-form input {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Content list spacing */
    .content ul, .content ol {
        margin-left: 1.5rem;
        padding-right: 0.5rem;
    }
    
    .content li {
        margin-bottom: 0.75rem;
    }
    
    /* Ensure proper spacing for paragraphs */
    .content p {
        margin-bottom: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

@media (max-width: 480px) {
    header {
        padding: 1rem 0.75rem;
    }
    
    header h1 {
        font-size: 1.5rem;
    }
    
    .logo {
        width: 50px;
        height: 50px;
    }
    
    .hero {
        padding: 2rem 0 3rem 0;
    }
    
    .hero h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    main {
        padding: 1.5rem 0.75rem;
    }
    
    .content {
        padding: 1.25rem;
    }
    
    .info-section,
    .contact-section {
        padding: 1.5rem 1rem;
    }
    
    .feature, .card {
        padding: 1.25rem;
    }
    
    .store-badge img {
        height: 40px;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    #reset-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .content table {
        font-size: 0.85rem;
    }
    
    .content th,
    .content td {
        padding: 0.5rem 0.375rem;
    }
    
    .content ul, .content ol {
        margin-left: 1.25rem;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    nav a {
        min-height: 44px; /* Minimum touch target size */
    }
    
    .btn, .email-link {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Remove hover effects on touch devices */
    .logo:hover {
        transform: none;
    }
    
    .store-badge:hover {
        transform: none;
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 2rem 0 3rem 0;
    }
    
    header {
        padding: 1rem;
    }
}

/* Print Styles */
@media print {
    nav, footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .container {
        box-shadow: none;
    }
}
