/* Font */
@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

/* Reset & Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: black;
    color: white;
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

/* Logo section */
.logo-container {
    text-align: center;
    padding: 40px 0;
}

.logo img {
    max-width: 200px;
    height: auto;
}

.easiest-way {
    font-family: 'Outfit', sans-serif;
    font-weight: 200;
    font-size: 24px;
    margin-top: 20px;
}

/* Product intro */
.product-intro {
    text-align: center;
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    font-size: 18px;
    line-height: 1.8;
}

/* Features section */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    text-align: center;
    padding: 20px;
}

.feature h2 {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 200;
}

.feature img {
    max-width: 100px;
    height: auto;
    margin: 20px 0;
}

.feature p {
    font-size: 16px;
    line-height: 1.6;
}

/* Note text */
.note {
    text-align: center;
    font-size: 14px;
    margin: 20px 0;
    font-style: italic;
}

/* Download section */
.download-section {
    text-align: center;
    padding: 60px 20px;
}

.download-section h2 {
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 200;
}

/* Store buttons */
.store-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.store-button {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid white;
    border-radius: 4px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.store-button:hover {
    background-color: white;
    color: black;
}

/* Email section */
.email-section {
    text-align: center;
    padding: 60px 20px;
}

.email-section h2 {
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 200;
}

.email-button {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid white;
    border-radius: 4px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.email-button:hover {
    background-color: white;
    color: black;
}

/* Footer */
.footer-content {
    position: relative;
    padding: 40px 20px;
    width: 100%;
}

.terms-link {
    position: absolute;
    left: 20px;
    bottom: 20px;
}

.simple-link {
    color: white;
    text-decoration: none;
}

.simple-link:visited,
.simple-link:hover,
.simple-link:active {
    color: white;
    text-decoration: none;
}

.footer-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.eu-logo img {
    max-height: 100px;
    width: auto;
}

.project-poster a {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid white;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.project-poster a:hover {
    background-color: white;
    color: black;
}

/* Decorative elements */
.half-circle-right {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px 0 0 100px;
}

.half-circle-left {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0 100px 100px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .features {
        grid-template-columns: 1fr;
    }
    
    .half-circle-left,
    .half-circle-right {
        display: none;
    }
    
    .store-buttons {
        flex-direction: column;
        align-items: center;
    }

    .terms-link {
        position: static;
        margin-bottom: 20px;
        text-align: center;
    }

    .footer-content {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
    }
}