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

body {
    font-family: 'Courier New', monospace;
    line-height: 1.6;
    color: #000;
    background: #fff;
    overflow-x: hidden;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

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

/* Pixelated Border Utility */
.pixel-border {
    border: 4px solid #000;
    border-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="8"><rect width="4" height="4" fill="%23000"/><rect x="4" y="4" width="4" height="4" fill="%23000"/><rect x="4" y="0" width="4" height="4" fill="%23fff"/><rect x="0" y="4" width="4" height="4" fill="%23fff"/></svg>') 4;
    background: #fff;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 4px solid #000;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    font-family: 'Courier New', monospace;
}

.nav-logo i {
    margin-right: 8px;
    font-size: 1.8rem;
    color: #000;
}

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

.nav-link {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Courier New', monospace;
    padding: 8px 16px;
    border: 2px solid #000;
    background: #fff;
}

.nav-link:hover {
    background: #000;
    color: #fff;
}

.nav-link::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    border: 4px solid #000;
    margin: 20px;
}

.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" width="8" height="8"><rect width="4" height="4" fill="%23000"/><rect x="4" y="4" width="4" height="4" fill="%23000"/><rect x="4" y="0" width="4" height="4" fill="%23fff"/><rect x="0" y="4" width="4" height="4" fill="%23fff"/></svg>');
    opacity: 0.1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: #000;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-family: 'Courier New', monospace;
    color: #000;
}

.highlight {
    background: #000;
    color: #fff;
    padding: 4px 8px;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 4px solid #000;
    cursor: pointer;
    font-family: 'Courier New', monospace;
}

.btn i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.btn-primary {
    background: #000;
    color: #fff;
}

.btn-primary:hover {
    background: #fff;
    color: #000;
}

.btn-secondary {
    background: #fff;
    color: #000;
}

.btn-secondary:hover {
    background: #000;
    color: #fff;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #fbbf24;
}

.stat-label {
    font-size: 0.9rem;
    color: #000;
    font-weight: 600;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pet-preview {
    position: relative;
    animation: float 3s ease-in-out infinite;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pet-character {
    text-align: center;
    margin-bottom: 1rem;
}

.pixel-cat {
    width: 300px;
    height: 300px;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
    animation: pixel-float 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

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

.pixel-bubble {
    background: #fff;
    color: #000;
    padding: 1rem 1.5rem;
    border: 4px solid #000;
    position: relative;
    max-width: 200px;
    margin: 0 auto;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.pet-bubble::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

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

/* Features Section */
.features {
    padding: 6rem 0;
    background: #fff;
    border: 4px solid #000;
    margin: 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #000;
    font-family: 'Courier New', monospace;
}

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

.feature-card {
    background: #fff;
    padding: 2.5rem;
    border: 4px solid #000;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover {
    background: #000;
    color: #fff;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #000;
    border: 4px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: #fff;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
    font-family: 'Courier New', monospace;
}

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

.feature-card:hover h3,
.feature-card:hover p {
    color: #fff;
}

.coming-soon {
    background: #fbbf24;
    color: #000;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    margin-left: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coming-soon-small {
    color: #000;
    font-size: 0.8rem;
    font-weight: 700;
    margin-left: 0.5rem;
    font-style: normal;
    background: rgba(0, 0, 0, 0.1);
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.3);
}

/* Legal Pages */
.legal-page {
    min-height: 100vh;
    background: #fff;
    padding: 2rem 0;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
}

.back-link {
    display: inline-block;
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #1e293b;
}

.legal-header h1 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

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

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    color: #374151;
}

.legal-content section {
    margin-bottom: 2.5rem;
}

.legal-content h2 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.legal-content h3 {
    color: #374151;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}

.legal-content p {
    margin-bottom: 1rem;
    text-align: justify;
}

.legal-content ul, .legal-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #3b82f6;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content strong {
    color: #1e293b;
    font-weight: 600;
}

/* Instructions Section */
.instructions {
    padding: 6rem 0;
    background: #f8fafc;
}

.instructions-description {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.instruction-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.instruction-card:hover {
    border-color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.instruction-icon {
    width: 60px;
    height: 60px;
    background: #000;
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.instruction-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.instruction-steps {
    margin-bottom: 1rem;
}

.instruction-steps ol,
.instruction-steps ul {
    margin: 0;
    padding-left: 1.5rem;
}

.instruction-steps li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #475569;
}

.instruction-steps a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 500;
}

.instruction-steps a:hover {
    text-decoration: underline;
}

.instruction-note {
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
    margin: 0;
    padding: 0.75rem;
    background: #f1f5f9;
    border-radius: 6px;
    border-left: 3px solid #6366f1;
}

/* Screenshots Section */
.screenshots {
    padding: 6rem 0;
    background: white;
}

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

.screenshot-item {
    text-align: center;
}

.screenshot-placeholder {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.screenshot-placeholder:hover {
    border-color: #6366f1;
    background: linear-gradient(135deg, #f0f4ff, #e0e7ff);
}

.screenshot-placeholder i {
    font-size: 3rem;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.screenshot-placeholder p {
    color: #64748b;
    font-weight: 500;
}

.screenshot-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.screenshot-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Download Section */
.download {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.download .section-title {
    color: white;
}

.download-description {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

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

.download-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.download-card:hover {
    transform: translateY(-5px);
}

.platform-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #fbbf24;
}

.download-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.download-card p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.download-info {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.file-size, .file-format {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-download {
    background: #fbbf24;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 2rem;
    width: 100%;
    justify-content: center;
}

.btn-download:hover {
    background: #f59e0b;
    transform: translateY(-2px);
}

/* Make button look like link */
button.btn-download {
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}


.download-requirements h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.download-requirements ul {
    list-style: none;
    text-align: left;
}

.download-requirements li {
    padding: 0.25rem 0;
    opacity: 0.8;
    position: relative;
    padding-left: 1.5rem;
}

.download-requirements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #fbbf24;
    font-weight: bold;
}

.installation-instructions {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.installation-instructions h4 {
    color: #fbbf24;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.installation-instructions h4::before {
    content: "⚠️";
    font-size: 1.2rem;
}

.installation-instructions ol {
    margin: 0;
    padding-left: 1.5rem;
}

.installation-instructions li {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.installation-instructions li strong {
    color: #fbbf24;
    font-weight: 600;
}

.download-notes {
    text-align: center;
}

.note {
    display: inline-flex;
    align-items: center;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: #93c5fd;
}

.note i {
    margin-right: 0.5rem;
    color: #3b82f6;
}

/* Support Section */
.support {
    padding: 6rem 0;
    background: #f8fafc;
}

/* Feedback Section */
.feedback {
    padding: 6rem 0;
    background: #fff;
    border: 4px solid #000;
    margin: 20px;
}

.feedback-description {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.feedback-option {
    background: #fff;
    padding: 2.5rem;
    border: 4px solid #000;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.feedback-option:hover {
    background: #000;
    color: #fff;
    transform: translateY(-5px);
}

.feedback-icon {
    width: 80px;
    height: 80px;
    background: #000;
    border: 4px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feedback-option:hover .feedback-icon {
    background: #fff;
    border-color: #fff;
}

.feedback-icon i {
    font-size: 2rem;
    color: #fff;
    transition: color 0.3s ease;
}

.feedback-option:hover .feedback-icon i {
    color: #000;
}

.feedback-option h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
    font-family: 'Courier New', monospace;
    transition: color 0.3s ease;
}

.feedback-option:hover h3 {
    color: #fff;
}

.feedback-option p {
    color: #000;
    line-height: 1.6;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.feedback-option:hover p {
    color: #fff;
}

.feedback-note {
    background: #f1f5f9;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.feedback-note i {
    color: #6366f1;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feedback-note p {
    margin: 0;
    color: #475569;
    line-height: 1.6;
}

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

.support-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
}

.support-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.support-icon i {
    font-size: 1.5rem;
    color: white;
}

.support-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.support-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.support-link {
    color: #6366f1;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.support-link:hover {
    color: #4f46e5;
}

.support-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.support-link:hover i {
    transform: translateX(3px);
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #6366f1;
}

.footer-logo i {
    margin-right: 8px;
    font-size: 1.8rem;
}

.footer-section p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #6366f1;
    transform: translateY(-2px);
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fbbf24;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.8;
}

.footer-bottom i {
    color: #ef4444;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .download-cards {
        grid-template-columns: 1fr;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .feedback-options {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card, .download-card, .support-card, .feedback-option {
        padding: 1.5rem;
    }
}
