:root {
    --color-gold: #FFD700;
    --color-dark-purple: #1A0033;
    --color-dark-blue: #003366;
    --color-light-text: #E0E0E0;
    --color-dark-bg: #121212;
    --font-epic: 'Cinzel Decorative', serif;
    --font-elegant: 'Playfair Display', serif;
}

body {
    font-family: var(--font-elegant);
    margin: 0;
    background: var(--color-dark-bg);
    color: var(--color-light-text);
    text-align: center;
}

.hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--color-dark-purple) 0%, var(--color-dark-blue) 100%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    border-bottom: 3px solid var(--color-gold);
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.app-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    border: 2px solid var(--color-gold);
}

h1 {
    font-family: var(--font-epic);
    font-size: 3em;
    color: var(--color-gold);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    margin: 0;
}

h2 {
    font-size: 1.8em;
    color: var(--color-light-text);
    margin: 10px 0 20px;
    font-weight: normal;
}

.hero p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.8);
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.button {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

.button span {
    font-size: 0.8em;
    font-weight: normal;
    opacity: 0.9;
}

.google-play { background-color: #4CAF50; }
.app-store { background-color: #007AFF; }
.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

main {
    padding: 40px 20px;
}

h3 {
    font-family: var(--font-epic);
    font-size: 2.2em;
    color: var(--color-gold);
    margin-bottom: 30px;
}

.screenshot-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.screenshot-gallery img {
    height: 400px; /* Taille fixe pour l'harmonie */
    width: auto;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border: 2px solid #444;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

footer {
    padding: 30px;
    background-color: #000;
    margin-top: 60px;
    font-size: 0.9em;
    color: #888;
    border-top: 1px solid #333;
}

footer a {
    color: #aaa;
    text-decoration: none;
}

footer a:hover {
    color: var(--color-gold);
}