body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 12pt;
    font-weight: normal;
    line-height: 1.6;
    color: #d1d5db;
    background-color: #000;
    margin: 0;
    padding: 80px 0 0 0;
}

main {
    width: 40%;
    margin: 0 auto;
    padding: 40px 0;
}

h1 {
    font-size: 12pt;
    font-weight: normal;
    margin: 0 0 15px 0;
}

h2 {
    font-size: 12pt;
    font-weight: normal;
    margin: 45px 0 15px 0;
}

p {
    font-size: 12pt;
    font-weight: normal;
    margin: 0 0 15px 0;
}

p.tagline {
    margin: 68px 0 15px 0;
}

ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 15px 0;
}

li {
    font-size: 12pt;
    font-weight: normal;
    margin: 0 0 30px 0;
}

a {
    color: #60a5fa;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.screenshots {
    margin: 20px 0 0 0;
    display: flex;
    gap: 10px;
}

.screenshots img {
    width: 33.33%;
    height: auto;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.screenshots img:hover {
    opacity: 0.8;
}

.screenshot-placeholder {
    width: 33.33%;
    height: 150px;
    background-color: #1f2937;
    border: 2px dashed #4b5563;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 11pt;
    text-align: center;
}

.feedback-text {
    margin: 20px 0 0 0 !important;
}

.feedback-link {
    margin: 0 0 0 0 !important;
}

.get-it-on {
    margin: 20px 0 0 0;
}

.get-it-on p {
    margin: 0 0 10px 0;
    font-size: 12pt;
}

.store-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.store-badge {
    height: 40px;
    width: auto;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.store-badge:hover {
    opacity: 0.8;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 4px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #d1d5db;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.close:hover {
    color: #60a5fa;
}

/* Custom color for specific app/project names */
.app-name {
    color: #009E60;
}

/* Responsive design for different screen widths */
/* Mobile styles */
@media (max-width: 768px) {
    body {
        padding: 40px 20px 0 20px;
        overflow-x: hidden;
    }
    
    main {
        width: 100%;
        max-width: none;
        padding: 20px 0;
        margin: 0;
    }
    
    .screenshots {
        flex-direction: column;
        gap: 15px;
    }
    
    .screenshots img {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    body {
        padding: 30px 15px 0 15px;
        overflow-x: hidden;
    }
    
    main {
        width: 100%;
        max-width: none;
        padding: 15px 0;
        margin: 0;
    }
}

@media (min-width: 1400px) {
    main {
        width: 35%;
    }
}

@media (min-width: 1600px) {
    main {
        width: 30%;
    }
}

@media (min-width: 1920px) {
    main {
        width: 25%;
    }
}

@media (min-width: 2560px) {
    main {
        width: 20%;
    }
}
