/* FitSync Website Styles */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333333;
    background: linear-gradient(135deg, #13243b 0%, #084385 50%, #1a73e8 100%);
    min-height: 100vh;
}

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

/* Header Styles */
header {
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #4285F4;
    position: absolute;
    left: 20px;
}

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

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4285F4;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    color: white;
    padding-top: 80px;
}

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

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.hero-tagline {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 500;
    opacity: 0.95;
    font-style: italic;
    margin-bottom: 2rem;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button.primary {
    background: linear-gradient(45deg, #4285F4, #1a73e8);
    color: white;
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-button.primary:hover {
    background: linear-gradient(45deg, #1a73e8, #4285F4);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

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

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 2.5rem;
    border-radius: 20px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    background: #ffffff;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.3);
    color: white;
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin: 0 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.footer-links a:hover {
    color: #4285F4;
    text-decoration: underline;
}

.download-section {
    margin-bottom: 2rem;
}

.download-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: white;
}

.app-store-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.store-button {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.store-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.store-button.ios {
    background: linear-gradient(45deg, #007AFF, #005BCC);
}

.store-button.android {
    background: linear-gradient(45deg, #34A853, #0F9D58);
}

.store-button.ios:hover,
.store-button.android:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

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

    .hero-content h1 {
        font-size: 2.8rem;
        line-height: 1.15;
    }

    .hero-tagline {
        font-size: 1.6rem;
        letter-spacing: 0.03em;
    }

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

    .hero-content p {
        font-size: 1.1rem;
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .app-store-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-card {
        padding: 2rem;
    }
}

/* About Page Styles */
.about-hero {
    min-height: 60vh;
    padding-top: 120px;
}

.about-hero .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-hero .hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    padding: 80px 0;
    background: white;
    color: #333;
}

.about-section {
    margin-bottom: 4rem;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

.difference-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.difference-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.difference-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.difference-card p {
    color: #666;
    font-size: 1rem;
    text-align: left;
    line-height: 1.6;
    margin: 0;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #4285F4, #1a73e8);
    border-radius: 15px;
    color: white;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
}

.tech-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.tech-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #4285F4;
    text-align: left;
    color: #333;
}

.tech-item strong {
    color: #4285F4;
}

.cta-section {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #4285F4, #1a73e8);
    border-radius: 20px;
    color: white;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Navigation active state */
.nav-links a.active {
    color: #4285F4;
    font-weight: 600;
}

/* About page responsive design */
@media (max-width: 768px) {
    .about-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-section h2 {
        font-size: 2rem;
    }
    
    .difference-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-highlights {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 2rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    min-height: 60vh;
    padding-top: 120px;
}

.contact-hero .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-hero .hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-content {
    padding: 80px 0;
    background: white;
    color: #333;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-form-section h2,
.contact-info-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

/* Contact Form Styles */
.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4285F4;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Support Cards */
.support-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.support-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.support-card p {
    color: #666;
    margin-bottom: 0.5rem;
}

.support-card a {
    color: #4285F4;
    text-decoration: none;
    font-weight: 600;
}

.support-card a:hover {
    text-decoration: underline;
}

.store-links {
    display: flex;
    gap: 1rem;
}

.store-link {
    display: inline-block;
    padding: 8px 16px;
    background: #4285F4;
    color: white !important;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.store-link:hover {
    background: #5a6fd8;
    text-decoration: none !important;
}

/* FAQ Section */
.faq-section {
    margin-top: 2rem;
}

.faq-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.faq-item {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid #4285F4;
}

.faq-item strong {
    color: #333;
    display: block;
    margin-bottom: 0.5rem;
}

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

/* Response Time Section */
.response-time-info {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #4285F4, #1a73e8);
    border-radius: 20px;
    color: white;
}

.response-time-info h2 {
    color: white;
    margin-bottom: 2rem;
}

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

.response-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.response-type {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.response-time {
    display: block;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Contact page responsive design */
@media (max-width: 768px) {
    .contact-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .response-grid {
        grid-template-columns: 1fr;
    }
    
    .response-time-info {
        padding: 2rem;
    }
    
    .store-links {
        flex-direction: column;
    }
}

/* Email Confirmation Page Styles */
.confirm-hero {
    min-height: 70vh;
    padding-top: 120px;
    text-align: center;
}

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

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.confirm-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.confirm-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.confirmation-content {
    padding: 80px 0;
    background: white;
    color: #333;
}

.next-steps {
    margin-bottom: 4rem;
}

.next-steps h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.step-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e9ecef;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #4285F4, #1a73e8);
    color: white;
    border-radius: 50%;
    line-height: 40px;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.step-card p {
    color: #666;
    line-height: 1.6;
}

/* App Download Section */
.app-download-section {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
}

.app-download-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.app-download-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.download-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.download-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 200px;
}

.download-button.ios {
    background: linear-gradient(45deg, #007AFF, #005BCC);
}

.download-button.android {
    background: linear-gradient(45deg, #34A853, #0F9D58);
}

.download-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

.button-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.store-icon {
    font-size: 2rem;
}

.button-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.small-text {
    font-size: 0.8rem;
    opacity: 0.9;
}

.large-text {
    font-size: 1.1rem;
    font-weight: 700;
}

/* Deep Link Section */
.deep-link-section {
    padding: 2rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    margin-top: 2rem;
}

.deep-link-text {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

.deep-link-button {
    display: inline-block;
    padding: 12px 24px;
    background: #4285F4;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.deep-link-button:hover {
    background: #5a6fd8;
    color: white;
    text-decoration: none;
}

/* Features Preview */
.features-preview {
    margin-bottom: 4rem;
}

.features-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.preview-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease;
}

.preview-item:hover {
    transform: translateY(-3px);
}

.preview-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.preview-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.preview-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Success Actions */
.success-actions {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #4285F4, #1a73e8);
    border-radius: 20px;
    color: white;
}

.success-actions h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.success-actions p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Confirmation page responsive design */
@media (max-width: 768px) {
    .confirm-hero h1 {
        font-size: 2.5rem;
    }
    
    .success-icon {
        font-size: 3rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .preview-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .app-download-section {
        padding: 2rem;
    }
    
    .success-actions {
        padding: 2rem;
    }
}

/* Password Reset Page Styles */
.reset-hero {
    min-height: 80vh;
    padding-top: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reset-container {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

.reset-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.status-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.status-icon.success {
    color: #28a745;
}

.status-icon.error {
    color: #dc3545;
}

.reset-card h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 700;
}

.reset-card p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.error-text {
    color: #dc3545 !important;
}

.success-text {
    color: #28a745 !important;
}

.redirect-text {
    font-size: 1rem !important;
    color: #888 !important;
    margin-bottom: 1rem !important;
}

/* Password Form Styles */
.password-form {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: #4285F4;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-input:invalid {
    border-color: #dc3545;
}

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

.form-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e1e5e9;
}

.deep-link-button {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(102, 126, 234, 0.1);
    color: #4285F4;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.deep-link-button:hover {
    background: rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
    color: #5a6fd8;
    text-decoration: none;
    transform: translateY(-1px);
}

/* Message Styles */
.message {
    margin: 1rem 0;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.message.error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.message.success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.message.warning {
    background: rgba(255, 193, 7, 0.1);
    color: #856404;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.message:empty {
    display: none;
}

/* Reset Info Section */
.reset-info {
    padding: 80px 0;
    background: white;
}

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

.info-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.info-item p {
    color: #666;
    line-height: 1.6;
}

/* Button Loading States */
.cta-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.cta-button:disabled:hover {
    transform: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

/* Hidden State */
.hidden {
    display: none !important;
}

/* Reset page responsive design */
@media (max-width: 768px) {
    .reset-hero {
        padding-top: 100px;
        min-height: 70vh;
    }
    
    .reset-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .reset-card h1 {
        font-size: 2rem;
    }
    
    .status-icon {
        font-size: 3rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .info-item {
        padding: 1.5rem;
    }
}

/* 404 Error Page Styles */
.error-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    text-align: center;
    color: white;
    padding-top: 80px;
}

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

.error-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.error-hero h1 {
    font-size: 8rem;
    margin-bottom: 0.5rem;
    font-weight: 900;
    color: #DC2626;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.error-hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.error-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.helpful-links {
    padding: 80px 0;
    background: white;
    color: #333;
}

.helpful-links h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.link-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.link-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    background: #ffffff;
    text-decoration: none;
    color: inherit;
}

.link-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.link-card h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.link-card p {
    color: #666;
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

/* 404 page responsive design */
@media (max-width: 768px) {
    .error-hero {
        padding-top: 100px;
        min-height: 70vh;
    }
    
    .error-hero h1 {
        font-size: 5rem;
    }
    
    .error-hero h2 {
        font-size: 2rem;
    }
    
    .error-icon {
        font-size: 3rem;
    }
    
    .helpful-links h3 {
        font-size: 2rem;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .link-card {
        padding: 1.5rem;
    }
}

/* Privacy Policy Page Styles */
.privacy-hero {
    min-height: 60vh;
    padding-top: 120px;
}

.privacy-hero .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.privacy-hero .hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-content {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.1);
    color: white;
}

.privacy-document {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.last-updated {
    text-align: center;
    margin-bottom: 3rem;
    padding: 1rem;
    background: rgba(102, 126, 234, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 1.1rem;
}

.privacy-section {
    margin-bottom: 3rem;
    color: white;
}

.privacy-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #4285F4;
    font-weight: 600;
    border-bottom: 2px solid rgba(102, 126, 234, 0.3);
    padding-bottom: 0.5rem;
}

.privacy-section h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #DC2626;
    font-weight: 600;
}

.privacy-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.privacy-section ul,
.privacy-section ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.privacy-section li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.privacy-section strong {
    color: #4285F4;
    font-weight: 600;
}

.privacy-section a {
    color: #DC2626;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.privacy-section a:hover {
    color: #ee5a24;
    text-decoration: underline;
}

.third-party-service {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid #4285F4;
}

.document-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.document-info hr {
    border: none;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
}

/* Privacy page responsive design */
@media (max-width: 768px) {
    .privacy-hero .hero-content h1 {
        font-size: 2.5rem;
    }

    .privacy-document {
        padding: 2rem;
        margin: 0 1rem;
    }

    .privacy-section h2 {
        font-size: 1.8rem;
    }

    .privacy-section h3 {
        font-size: 1.4rem;
    }

    .privacy-section p {
        font-size: 1rem;
    }

    .privacy-section ul,
    .privacy-section ol {
        padding-left: 1.5rem;
    }
}

/* About The Creator Page Styles */
.creator-hero {
    min-height: 60vh;
    padding-top: 120px;
}

.creator-hero .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.creator-hero .hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.creator-content {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.1);
    color: white;
}

.creator-intro {
    margin-bottom: 4rem;
}

.creator-profile {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.profile-image {
    text-align: center;
}

.profile-placeholder {
    display: inline-block;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #4285F4, #1a73e8);
    border-radius: 50%;
    line-height: 120px;
    font-size: 3rem;
    color: white;
}

.profile-info h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #4285F4;
    font-weight: 700;
}

.title {
    font-size: 1.3rem;
    color: #DC2626;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.creator-story {
    margin-bottom: 4rem;
}

.creator-story h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #4285F4;
    font-weight: 600;
}

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

.story-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 4px solid #DC2626;
    backdrop-filter: blur(10px);
}

.story-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #DC2626;
    font-weight: 600;
}

.story-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.creator-philosophy {
    margin-bottom: 4rem;
}

.creator-philosophy h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #4285F4;
    font-weight: 600;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.philosophy-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.philosophy-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.philosophy-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #4285F4;
    font-weight: 600;
}

.philosophy-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.creator-background {
    margin-bottom: 4rem;
}

.creator-background h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #4285F4;
    font-weight: 600;
}

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

.background-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #4285F4;
    backdrop-filter: blur(10px);
}

.background-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #DC2626;
    font-weight: 600;
}

.background-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.creator-vision {
    margin-bottom: 4rem;
}

.creator-vision h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #4285F4;
    font-weight: 600;
}

.vision-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.vision-content > p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    text-align: center;
}

.future-features h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #DC2626;
    font-weight: 600;
}

.future-features ul {
    list-style: none;
    padding: 0;
}

.future-features li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.future-features li::before {
    content: "🚀";
    position: absolute;
    left: 0;
    top: 0;
}

.future-features strong {
    color: #4285F4;
    font-weight: 600;
}

.creator-contact {
    margin-bottom: 4rem;
}

.creator-contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #4285F4;
    font-weight: 600;
}

.creator-contact .contact-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: transparent;
}

.creator-contact .contact-content > p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

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

.creator-contact .contact-method {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 1rem 1.2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: transform 0.2s ease, background 0.2s ease;
    text-align: center;
}

.creator-contact .contact-method:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
}


.creator-contact .contact-method h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: #4285F4;
    font-weight: 600;
}

.creator-contact .contact-method a {
    color: #DC2626;
    text-decoration: none;
    font-weight: 600;
}

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

.creator-contact .contact-method p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

.creator-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #4285F4, #1a73e8);
    border-radius: 20px;
    color: white;
}

.creator-cta h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.creator-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Modern CTA Section */
.app-download-cta {
    background: linear-gradient(135deg, #4285F4 0%, #1a73e8 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.app-download-cta::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 200"><path d="M0,100 C150,50 350,150 500,100 C650,50 850,150 1000,100 L1000,200 L0,200 Z" fill="rgba(255,255,255,0.1)"/></svg>') no-repeat bottom center;
    pointer-events: none;
}

.app-download-cta h3 {
    margin: 0 0 15px 0;
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.app-download-cta p {
    margin: 0 0 30px 0;
    opacity: 0.95;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.95);
}

.store-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.app-store-badge {
    display: inline-block;
    transition: transform 0.2s ease;
}

.app-store-badge img {
    height: 50px;
    width: auto;
}

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

.google-play-badge {
    display: inline-block;
    transition: transform 0.2s ease;
}

.google-play-badge img {
    height: 50px;
    width: auto;
}

.google-play-badge:hover {
    transform: scale(1.05);
}

.store-button {
    display: inline-flex;
    align-items: center;
    margin: 10px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    color: white;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-width: 180px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.store-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: white;
}

.store-button.ios {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.4);
}

.store-button.android {
    background: rgba(61, 220, 132, 0.9);
    border-color: rgba(255, 255, 255, 0.4);
}

.store-icon {
    font-size: 1.5rem;
    margin-right: 8px;
}

/* Creator page responsive design */
@media (max-width: 768px) {
    .creator-hero .hero-content h1 {
        font-size: 2.5rem;
    }

    .creator-profile {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        text-align: center;
    }

    .profile-placeholder {
        width: 100px;
        height: 100px;
        line-height: 100px;
        font-size: 2.5rem;
    }

    .profile-info h2 {
        font-size: 2rem;
    }

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

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

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

    .creator-contact .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .story-section {
        padding: 1.5rem;
    }

    .vision-content {
        padding: 2rem;
    }

    .creator-cta {
        padding: 2rem;
    }

    .creator-cta h2 {
        font-size: 2rem;
    }

    .app-download-cta {
        padding: 40px 20px;
        margin: 40px 0;
    }

    .app-download-cta h3 {
        font-size: 1.8rem;
    }

    .store-buttons {
        flex-direction: column;
        align-items: center;
    }

    .store-button {
        min-width: 200px;
        margin: 8px 0;
    }
}