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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

header {
    background-color: #6F1BA0;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #6F1BA0 0%, #F17400 100%);
    color: white;
}

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

.hero h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.store-button img {
    height: 40px;
    transition: transform 0.3s ease;
}

.store-button:hover img {
    transform: scale(1.05);
}

.web-button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 135px;
    height: 40px;
    padding: 0 24px;
    background-color: #6F1BA0;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.web-button:hover {
    transform: scale(1.05);
    background-color: #5a1680;
}

.features {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.features h2 {
    text-align: center;
    color: #6F1BA0;
    margin-bottom: 3rem;
}

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

.feature {
    text-align: left;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.feature h3 {
    color: #F17400;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.app-preview {
    padding: 4rem 0;
}

.app-preview h2 {
    text-align: center;
    color: #6F1BA0;
    margin-bottom: 3rem;
}

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

.screenshot {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

footer {
    background-color: #6F1BA0;
    color: white;
    padding: 1.5rem 0;
    text-align: center;
}

footer p {
    margin: 0.5rem 0;
}

footer a {
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: border-color 0.3s ease;
}

footer a:hover {
    border-color: white;
}

/* Support page */
.header-link {
    color: inherit;
    text-decoration: none;
}

.support {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.support-content {
    max-width: 560px;
    margin: 0 auto;
    animation: fadeIn 0.6s ease-out forwards;
}

.support h2 {
    color: #6F1BA0;
    text-align: center;
    margin-bottom: 1rem;
}

.support-intro {
    text-align: center;
    color: #666;
    margin-bottom: 1.5rem;
}

.support-contact {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.support-contact a {
    color: #6F1BA0;
    text-decoration: none;
    border-bottom: 1px solid rgba(111, 27, 160, 0.4);
}

.support-contact a:hover {
    border-color: #6F1BA0;
}

.support-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-field {
    margin-bottom: 1.25rem;
}

.form-field label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.4rem;
    color: #333;
}

.form-field input,
.form-field textarea {
    width: 100%;
    font: inherit;
    color: #333;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
    resize: vertical;
    min-height: 140px;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #6F1BA0;
    box-shadow: 0 0 0 3px rgba(111, 27, 160, 0.15);
}

.cf-turnstile {
    margin-bottom: 1.25rem;
}

.submit-button {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background-color: #F17400;
    color: white;
    border: none;
    border-radius: 8px;
    font: inherit;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.submit-button:hover:not(:disabled) {
    background-color: #e66a00;
    transform: scale(1.02);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-status {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.form-status--ok {
    background: #e6f6ea;
    color: #1e6b32;
    border: 1px solid #bfe5c8;
}

.form-status--error {
    background: #fdecea;
    color: #9b1c1c;
    border: 1px solid #f5c2c0;
}

.support-note {
    margin-top: 1.5rem;
    text-align: center;
    color: #777;
    font-size: 0.9rem;
}

.support-note a {
    color: #6F1BA0;
}

.hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.not-found-link {
    display: inline-flex;
    margin: 1rem auto 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

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

    .screenshots {
        grid-template-columns: 1fr;
        padding: 0 2rem;
    }

    .support {
        padding: 2rem 0;
    }

    .support-form {
        padding: 1.5rem;
    }
}

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

.hero-content, .feature, .screenshot {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Cookie Consent Banner */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(111, 27, 160, 0.95);
    color: white;
    padding: 1rem 0;
    z-index: 1000;
}

.cookie-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-banner a {
    color: white;
    text-decoration: underline;
}

.cookie-banner button {
    background: #F17400;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cookie-banner button:hover {
    background: #e66a00;
}

@media (max-width: 768px) {
    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner button {
        width: 100%;
    }
} 