/* Danorama / iOS App Theme */
:root {
    --bg-color: #000000;
    --card-bg: #1c1c1e;
    --text-primary: #ffffff;
    --text-secondary: #8e8e93;
    --accent-color: #0a84ff;
    /* iOS Blue */
    --separator-color: #38383a;
    --font-stack: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-stack);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    line-height: 1.4;
}

.container {
    max-width: 680px;
    /* Mobile/Tablet focus width */
    margin: 0 auto;
    padding: 20px;
}

/* Header - Large Title Style */
header {
    padding: 40px 0 20px;
    border-bottom: 1px solid var(--separator-color);
    margin-bottom: 30px;
}

h1 {
    font-size: 34px;
    font-weight: 700;
    margin: 0 0 5px 0;
    letter-spacing: 0.3px;
}

header p {
    font-size: 17px;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 400;
}

/* Section Cards */
section {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

h2 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--text-primary);
    border-bottom: 1px solid var(--separator-color);
    padding-bottom: 10px;
}

p {
    font-size: 17px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

/* List Items - Table View Style */
ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

li {
    padding: 12px 0;
    border-bottom: 1px solid var(--separator-color);
}

li:last-child {
    border-bottom: none;
}

li strong {
    display: block;
    font-size: 17px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

li span {
    font-size: 15px;
    color: var(--text-secondary);
    display: block;
}

/* Featured App Section */
.featured-app {
    background: linear-gradient(135deg, #1c1c1e 0%, #2c2c2e 100%);
    display: flex;
    align-items: center;
    gap: 20px;
}

.app-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(to bottom right, #34c759, #30b0c7);
    /* Placeholder gradient for app icon */
    border-radius: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.app-details {
    flex-grow: 1;
}

.app-name {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 2px 0;
}

.app-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0 0 8px 0;
}

.get-button {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
    font-weight: 700;
    font-size: 14px;
    padding: 6px 20px;
    border-radius: 16px;
    text-transform: uppercase;
    display: inline-block;
    cursor: pointer;
}

/* Product List */
.product-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-item {
    background: linear-gradient(135deg, #1c1c1e 0%, #2c2c2e 100%);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: #333;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    overflow: hidden;
    /* Ensure image stays within border-radius */
}

.product-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details {
    flex-grow: 1;
}

.product-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 2px 0;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.3;
}

/* Badges */
.badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-blue {
    background-color: rgba(10, 132, 255, 0.2);
    color: #0a84ff;
}

.badge-orange {
    background-color: rgba(255, 159, 10, 0.2);
    color: #ff9f0a;
}

.badge-purple {
    background-color: rgba(191, 90, 242, 0.2);
    color: #bf5af2;
}

/* Contact Section */
.contact-box {
    background-color: transparent;
    padding: 0;
}

.contact-link {
    display: block;
    background-color: var(--card-bg);
    padding: 16px;
    border-radius: 10px;
    text-align: center;
    color: var(--accent-color);
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
}

footer {
    text-align: center;
    padding: 40px 0;
    color: var(--text-secondary);
    font-size: 13px;
}