/* F!shbowl Game Website Styles */
/* Matching the Flutter app design with indigo theme */

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

:root {
    --primary-color: #3f51b5; /* Indigo */
    --primary-dark: #303f9f;
    --primary-light: #7986cb;
    --secondary-color: #ff9800; /* Orange */
    --success-color: #4caf50;
    --background-color: #fafafa;
    --card-background: #ffffff;
    --text-primary: #212121;
    --text-secondary: #757575;
    --text-light: #ffffff;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.15);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-color);
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 25%, #5b21b6 75%, #7c3aed 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    padding-top: 80px; /* Account for fixed navigation */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a"><stop offset="0" stop-color="white" stop-opacity="0.15"/><stop offset="1" stop-color="white" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="150" fill="url(%23a)"/><circle cx="800" cy="300" r="200" fill="url(%23a)"/><circle cx="300" cy="800" r="180" fill="url(%23a)"/><circle cx="600" cy="100" r="100" fill="url(%23a)"/></svg>') no-repeat;
    opacity: 1;
}

.hero::after {
    content: '🌟';
    position: absolute;
    top: 20%;
    right: 10%;
    font-size: 2rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

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

.hero-content {
    flex: 1;
    padding: 60px 20px;
    position: relative;
    z-index: 2;
}

.app-icon {
    width: 140px;
    height: 140px;
    background: var(--card-background);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: var(--transition);
    border: 4px solid rgba(255,255,255,0.2);
}

.app-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.app-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
}

.app-title {
    font-size: 3.8rem;
    font-weight: 900;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background: linear-gradient(45deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 24px;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 500px;
    opacity: 0.95;
}

.download-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--card-background);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    font-weight: 500;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.download-btn i {
    font-size: 24px;
}

.download-btn.ios-btn i {
    color: #000;
}

.download-btn.android-btn i {
    color: #34a853;
}

.download-btn div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.download-btn small {
    font-size: 0.8rem;
    opacity: 0.7;
}

.download-btn strong {
    font-size: 1rem;
    font-weight: 600;
}

.download-btn.large {
    padding: 20px 32px;
    font-size: 1.1rem;
}

/* Hero Image */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    position: relative;
    transform: rotate(-5deg);
    transition: var(--transition);
}

.phone-mockup:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.hero-phone-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* Features Section */
.features {
    padding: 120px 0;
    background: var(--card-background);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.game-phases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.phase {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(63, 81, 181, 0.1);
    transition: var(--transition);
    border: 2px solid rgba(63, 81, 181, 0.1);
    position: relative;
    overflow: hidden;
}

.phase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0;
    transition: var(--transition);
}

.phase:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(63, 81, 181, 0.2);
    border-color: var(--primary-color);
}

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

.phase-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.phase h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

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

.feature {
    text-align: center;
    padding: 30px 20px;
    background: var(--card-background);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

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

.feature h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

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

/* Perfect For Section */
.perfect-for {
    padding: 100px 0;
    background: var(--background-color);
}

.perfect-for h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.use-case {
    background: var(--card-background);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.use-case:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.use-case-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.use-case h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

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

/* Statistics Section */
.stats {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #8b5cf6 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="white" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="white" opacity="0.1"/><circle cx="70" cy="10" r="1" fill="white" opacity="0.1"/><circle cx="10" cy="70" r="1.5" fill="white" opacity="0.1"/></svg>') repeat;
    animation: sparkle 20s linear infinite;
}

@keyframes sparkle {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

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

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-light);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Screenshots Section */
.screenshots {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0fe 100%);
}

.screenshots h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.screenshot-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    justify-items: center;
}

.screenshot-item {
    text-align: center;
    transition: var(--transition);
}

.screenshot-item:hover {
    transform: translateY(-10px);
}

.screenshot-img {
    width: 250px;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(63, 81, 181, 0.2);
    transition: var(--transition);
    margin-bottom: 20px;
}

.screenshot-img:hover {
    box-shadow: 0 25px 60px rgba(63, 81, 181, 0.3);
    transform: scale(1.05);
}

.screenshot-item p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-top: 16px;
}


/* CTA Section */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '🎮🎲🎯';
    position: absolute;
    top: 10%;
    left: 5%;
    font-size: 1.5rem;
    opacity: 0.2;
    letter-spacing: 2rem;
    animation: bounce 4s ease-in-out infinite;
}

.cta::after {
    content: '🏆🎊✨';
    position: absolute;
    bottom: 10%;
    right: 5%;
    font-size: 1.5rem;
    opacity: 0.2;
    letter-spacing: 2rem;
    animation: bounce 4s ease-in-out infinite reverse;
}

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

/* Quick Help Section */
.quick-help {
    padding: 80px 0;
    background: var(--background-color);
}

.quick-help h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.help-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.1);
    transition: var(--transition);
    border: 2px solid transparent;
}

.help-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
    border-color: var(--primary-light);
}

.help-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.help-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.help-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.help-link {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: var(--transition);
}

.help-link:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.faq-category {
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0fe 100%);
    border-radius: 20px;
    padding: 2rem;
    border-left: 5px solid var(--primary-color);
}

.faq-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-category h3 i {
    font-size: 1.3rem;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid #f0f0f0;
}

.faq-question:hover {
    background: rgba(99, 102, 241, 0.05);
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

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

.faq-answer {
    padding: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-answer ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.phase-explanation {
    display: grid;
    gap: 1.5rem;
    margin-top: 1rem;
}

.phase-detail {
    background: rgba(99, 102, 241, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.phase-detail h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* Contact Support */
.contact-support {
    padding: 80px 0;
    background: var(--background-color);
}

.contact-card {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-card > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

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

.contact-method {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0fe 100%);
    border-radius: 16px;
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.contact-method h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-method p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.contact-btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
}

.contact-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.response-time {
    background: rgba(76, 175, 80, 0.1);
    padding: 1rem 2rem;
    border-radius: 25px;
    color: #2e7d32;
    font-weight: 500;
    display: inline-block;
}

.response-time i {
    margin-right: 0.5rem;
}

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

.cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.cta-feature i {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: var(--text-light);
    padding: 60px 0 30px;
}

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

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-light);
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-light);
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
}

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

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

.footer-download {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-link:hover {
    opacity: 1;
    color: var(--primary-light);
}

/* Privacy Content */
.privacy-content {
    padding: 80px 0;
    background: white;
}

.privacy-document {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border-radius: 20px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.privacy-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.privacy-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: var(--text-primary);
}

.privacy-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.key-principle {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f9ff 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #4caf50;
    margin: 2rem 0;
}

.key-principle h3 {
    color: #2e7d32;
    margin-top: 0;
}

.privacy-list {
    list-style: none;
    padding: 0;
}

.privacy-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(99, 102, 241, 0.03);
    border-radius: 10px;
}

.privacy-list.no-collect li {
    background: rgba(244, 67, 54, 0.03);
}

.privacy-list.collect li {
    background: rgba(76, 175, 80, 0.03);
}

.privacy-list.no-collect i {
    color: #f44336;
}

.privacy-list.collect i {
    color: #4caf50;
}

.privacy-list i {
    margin-top: 2px;
    font-size: 1.1rem;
}

.analytics-info {
    background: rgba(33, 150, 243, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(33, 150, 243, 0.2);
    margin: 2rem 0;
}

.storage-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.storage-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.storage-item h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.data-control {
    background: linear-gradient(135deg, #fff3e0 0%, #f3e5f5 100%);
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    border: 1px solid #ff9800;
}

.data-control h3 {
    color: #ef6c00;
    margin-top: 0;
}

.third-party-list {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.third-party-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-left: 4px solid var(--secondary-color);
}

.third-party-item h3 {
    color: var(--secondary-color);
    margin-top: 0;
}

.children-privacy {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f9ff 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #4caf50;
    margin: 2rem 0;
}

.gdpr-compliance {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #2196f3;
    margin: 2rem 0;
}

.gdpr-compliance h3 {
    color: #1976d2;
    margin-top: 0;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.privacy-section .contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.privacy-section .contact-method i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.privacy-section .contact-method h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.privacy-section .contact-method a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.privacy-section .contact-method a:hover {
    text-decoration: underline;
}

.summary {
    background: linear-gradient(135deg, #e8f5e8 0%, #e3f2fd 100%) !important;
    border: 2px solid var(--primary-color) !important;
}

.summary-card {
    text-align: center;
}

.summary-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.summary-card ul {
    text-align: left;
    max-width: 600px;
    margin: 2rem auto;
}

.summary-card li {
    background: rgba(76, 175, 80, 0.1) !important;
    color: #2e7d32;
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 0;
    }
    
    .hero-content,
    .hero-image {
        flex: none;
    }
    
    .app-title {
        font-size: 2.5rem;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .phone-mockup {
        width: 220px;
        height: 440px;
        transform: rotate(0deg);
    }
    
    .phone-mockup:hover {
        transform: scale(1.02);
    }
    
    .game-phases,
    .features-grid,
    .use-cases {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .screenshot-gallery {
        grid-template-columns: 1fr;
    }
    
    .help-cards,
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .privacy-summary {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .support-nav {
        padding: 1.5rem 0;
    }
    
    .hero {
        padding-top: 140px; /* More space for mobile navigation */
    }
    
    .support-hero-content h1,
    .privacy-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .support-hero,
    .privacy-hero {
        padding: 200px 0 60px; /* Extra padding for mobile navigation */
    }
    
    .cta-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .app-title {
        font-size: 2rem;
    }
    
    .features,
    .perfect-for,
    .screenshots,
    .cta {
        padding: 60px 0;
    }
    
    .features h2,
    .perfect-for h2,
    .screenshots h2,
    .cta h2 {
        font-size: 2rem;
    }
    
    .phone-mockup {
        width: 180px;
        height: 360px;
        transform: rotate(0deg);
    }
    
    .phone-mockup:hover {
        transform: scale(1.02);
    }
    
    .screenshot-img {
        width: 180px;
    }
    
    .app-title {
        background: none;
        -webkit-text-fill-color: white;
        color: white;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out backwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }

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

/* Support and Privacy Pages Styles */

/* Navigation - Unified across all pages */
.support-nav {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(99, 102, 241, 0.3);
    transition: var(--transition);
}

.support-nav.scrolled {
    background: linear-gradient(135deg, #4f46e5 0%, #3730a3 100%);
    box-shadow: 0 4px 30px rgba(99, 102, 241, 0.5);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(255,255,255,0.1);
    color: white;
    transform: translateY(-2px);
}

/* Support Hero */
.support-hero {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 25%, #5b21b6 75%, #7c3aed 100%);
    padding: 160px 0 60px; /* Increased top padding for fixed navigation */
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.support-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a"><stop offset="0" stop-color="white" stop-opacity="0.15"/><stop offset="1" stop-color="white" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="150" fill="url(%23a)"/><circle cx="800" cy="300" r="200" fill="url(%23a)"/><circle cx="300" cy="800" r="180" fill="url(%23a)"/><circle cx="600" cy="100" r="100" fill="url(%23a)"/></svg>') no-repeat;
    opacity: 1;
}

.support-hero::after {
    content: '🎮🎯🏆';
    position: absolute;
    top: 20%;
    left: 5%;
    font-size: 2rem;
    opacity: 0.3;
    letter-spacing: 3rem;
    animation: float 8s ease-in-out infinite;
}

.support-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.support-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.support-search {
    max-width: 500px;
    margin: 0 auto;
}

.search-box {
    position: relative;
    background: white;
    border-radius: 50px;
    padding: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
}

.search-box i {
    color: var(--text-secondary);
    padding: 0 20px;
    font-size: 1.1rem;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    padding: 16px 20px 16px 0;
    font-size: 1rem;
    color: var(--text-primary);
    background: transparent;
}

.search-box input::placeholder {
    color: var(--text-secondary);
}

/* Privacy Hero */
.privacy-hero {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 25%, #5b21b6 75%, #7c3aed 100%);
    padding: 160px 0 60px; /* Increased top padding for fixed navigation */
    color: white;
    position: relative;
    overflow: hidden;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a"><stop offset="0" stop-color="white" stop-opacity="0.15"/><stop offset="1" stop-color="white" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="150" fill="url(%23a)"/><circle cx="800" cy="300" r="200" fill="url(%23a)"/><circle cx="300" cy="800" r="180" fill="url(%23a)"/><circle cx="600" cy="100" r="100" fill="url(%23a)"/></svg>') no-repeat;
    opacity: 1;
}

.privacy-hero::after {
    content: '🔒🛡️✨';
    position: absolute;
    top: 20%;
    right: 5%;
    font-size: 2rem;
    opacity: 0.3;
    letter-spacing: 3rem;
    animation: float 8s ease-in-out infinite reverse;
}

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

.privacy-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.last-updated {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 3rem;
}

.privacy-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.privacy-highlight {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.privacy-highlight i {
    font-size: 1.5rem;
    margin-top: 4px;
    color: #fbbf24;
}

.privacy-highlight h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.privacy-highlight p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.5;
}