* {
    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;
}

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

.main-image {
    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;
}

.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 p {
    margin-bottom: 18px;
    font-size: 1.2rem;
    color: #d0d0d0;
    font-weight: 300;
    line-height: 1.6;
}

.app-links {
    display: flex;
    flex-direction: column;
    gap: 20px; 
}

.app-item {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.app-item a {
    color: #ffffff; 
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.app-item a:hover {
    opacity: 0.6;
}

.app-description {
    font-size: 1rem;
    color: #a6a6a6;
    font-weight: 300;
    line-height: 1.4;
}

@media (max-width: 768px) {
    body {
        padding: 30px 25px;
    }
    
    .main-title {
        font-size: 1.7rem;
        margin-bottom: 12px;
    }
    
    .content h2 {
        font-size: 1.5rem;
    }
    
    .content p {
        font-size: 1.3rem;
    }
    
    .app-item a {
        font-size: 1.3rem;
    }
    
    .app-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 25px 20px;
    }
    
    .content p {
        font-size: 1.25rem;
    }
    
    .app-item a {
        font-size: 1.25rem;
    }
    
    .app-description {
        font-size: 1.05rem;
    }
}