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

body {
    font-family: 'Jost', sans-serif;
    background-color: #2a2a2a;
    color: #ffffff;
    line-height: 1.7;
    padding: 40px 20px;
    min-height: 100dvh;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.app-title {
    font-family: 'Jost', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 15px; 
}


.app-screenshot {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 30px 0;
    display: block;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: #444444;
    margin: 40px 0 20px 0;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.footer-name {
    font-family: 'Jost', sans-serif;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem; 
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.footer-name:hover {
    opacity: 0.6;
}

.privacy-link {
    font-family: 'Jost', sans-serif;
    color: #888888;
    text-decoration: none;
    font-size: 1.1rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.privacy-link:hover {
    opacity: 0.6;
}

.back-link {
    font-family: 'Jost', sans-serif;
    color: #8ab4d3;
    text-decoration: none;
    font-size: 1.1rem;
    margin-bottom: 40px;
    display: inline-block;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.back-link:hover {
    opacity: 0.6;
}

.content {
    text-align: left;
    margin: 30px 0;
}

.content h2 {
    font-family: 'Jost', sans-serif;
    font-size: 1.6rem; 
    font-weight: 400;
    color: #e8e8e8;
    margin-bottom: 0;
    line-height: 1.5;
    text-align: left;
}

.content h3 {
    font-family: 'Jost', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 16px;
    margin-top: 36px;
    color: #ffffff;
    font-weight: 500;
}

.content p {
    margin-bottom: 18px;
    font-size: 1.2rem;
    color: #d0d0d0;
    font-weight: 300;
    line-height: 1.6;
}

@media (max-width: 768px) {
    body {
        padding: 30px 25px;
    }
    
    .app-title {
        font-size: 1.7rem;
    }
    
    .content h2 {
        font-size: 1.5rem;
    }
    
    .content h3 {
        font-size: 1.4rem; 
    }
    
    .content p {
        font-size: 1.3rem;
    }
    
    .footer-name, .privacy-link, .back-link {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 25px 20px;
    }
    
    .content p {
        font-size: 1.25rem; 
    }
    
    .content h2 {
        font-size: 1.4rem;
    }
    
    .footer-name, .privacy-link, .back-link {
        font-size: 1.15rem;
    }
}