* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: url('../images/PictoFeatureGraphicConceptNoKiddNoCrate.png') center center / cover no-repeat fixed;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: #4a486c;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

header {
    background: linear-gradient(135deg, #ffefb9 0%, #ddb27a 100%);
    color: white;
    padding: 10px 20px;
    text-align: center;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #e9e3fd;
}

.tagline {
    font-size: 1.3em;
    opacity: 0.9;
    color: rgb(22, 0, 37);
}

.screenshots {
    padding: 20px 20px;
    text-align: center;
}

.screenshots h2 {
    margin-bottom: 20px;
    color: #e9e3fd;
    text-align: center;
    text-shadow: hsla(0, 0%, 0%, 0.75) 2px 2px 1px;
}

.carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    display: flex;
    justify-content: space-around;
    gap: 15px;
    padding: 0 20px;
}

.screenshot {
    width: 30%;
    height: 400px;
    object-fit: contain;
    border-radius: 10px;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(24, 0, 54, 0.5);
    color: white;
    border: none;
    padding: 10px;
    width: 2em;
    height: 2em;
    cursor: pointer;
    font-size: 20px;
    border-radius: 50%;
    z-index: 10;
    text-align: center;
    line-height: 1;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

@media (max-width: 768px) {
    .slide {
        justify-content: center;
        gap: 10px;
    }

    .screenshot {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .screenshot {
        width: 80%;
    }
}

.description {
    padding: 0 20px;
    color: #e9e3fd;
    line-height: 1.8;
    margin-bottom: 30px;
}

h2 {
    color: #e9e3fd;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: hsla(0, 0%, 0%, 0.75) 2px 2px 1px;
}

.content {
    padding: 40px 20px;
}

.content h2 {
    color: #e9e3fd;
    margin-bottom: 20px;
    text-shadow: hsla(0, 0%, 0%, 0.75) 2px 2px 1px;
}

.contact-section {
    background: #5a5a7a;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    margin-top: 30px;
}

.contact-section h3 {
    color: #e9e3fd;
    margin-bottom: 15px;
    text-shadow: hsla(0, 0%, 0%, 0.75) 2px 2px 1px;
}

.contact-section p {
    color: #e9e3fd;
    margin-bottom: 20px;
}

.email-link {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #ffefb9 0%, #ddb27a 100%);
    color: rgb(22, 0, 37);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    transition: transform 0.2s, box-shadow 0.2s;
}

.email-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

h3 {
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.2em;
    color: #e9e3fd;
    text-shadow: hsla(0, 0%, 0%, 0.75) 1px 1px 1px;
}

p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #e9e3fd;
}

ul {
    padding-left: 30px;
    margin-bottom: 15px;
    color: #e9e3fd;
}

li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #e9e3fd;
}

.store-links {
    padding: 0 20px 40px;
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact {
    padding: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact a {
    text-decoration: none;
}

.button {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.app-store {
    background: #000;
    color: #ffffff;
}

.play-store {
    background: #3ddc84;
    color: white;
}

.general-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #e9e3fd;
}

.email-link {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    transition: transform 0.2s, box-shadow 0.2s;
}

.email-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

hr {
    color: #403353;
}