/* styles.css */

/* Global Reset & Base Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a1a; /* Fond sombre */
    color: #f0f0f0; /* Texte clair */
    line-height: 1.6;
}

h1, h2, h3 {
    text-align: center;
    color: white;
}

a {
    text-decoration: none;
    color: inherit;
}

.section-title {
    font-size: 2.2em;
    margin-bottom: 0.5em;
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 2em;
    color: #cccccc;
}

/* Header/Hero Section */
.hero-section {
    background-color: #000000;
    padding: 100px 20px;
    background-image: url('../media/ouioui.jpg'); /* Remplacez par une image de fond ARK */
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom: 5px solid #ff4500; /* Accent orange */
}

.hero-section h1 {
    font-size: 4em;
    margin-bottom: 0.1em;
    text-shadow: 2px 2px 4px #000000;
}

.hero-section h2 {
    font-size: 1.8em;
    margin-top: 0;
    font-weight: normal;
    color: white;
    text-shadow: 2px 2px 4px #000000;
}

.engine-tag {
    text-align: center;
    font-size: 1.6em;
    color: lightblue; /* Vert pour Unreal Engine */
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px #000000;
}

.release-date {
    text-align: center;
    font-size: 1.3em;
    color: white;
    margin-top: 30px;
    font-weight: bold;
    text-shadow: 2px 2px 4px #000000;
}

/* Platform Section (Download) */
.platform-section {
    padding: 60px 20px;
    text-align: center;
}

.platform-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.platform-card {
    background-color: #2b2b2b;
    border: 1px solid #444444;
    padding: 20px;
    width: 250px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 69, 0, 0.3);
}

.platform-logo {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 2px solid #ff4500;
    padding-bottom: 5px;
}

.version-info {
    font-size: 0.9em;
    color: #cccccc;
    min-height: 30px;
    margin-bottom: 15px;
}

.special-note {
    color: #00ccff; /* Bleu pour Game Pass/Optimisation */
    font-weight: bold;
}

.price {
    font-size: 1.8em;
    color: #ff4500; /* Orange vif pour le prix */
    margin: 10px 0;
    font-weight: bold;
}

.platform-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 15px 0;
}

.platform-card ul li {
    padding: 5px 0;
    border-bottom: 1px dashed #3a3a3a;
    font-size: 0.9em;
}

.download-btn {
    display: block;
    background-color: #ff4500;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 20px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    transition: background-color 0.3s;
}

.download-btn:hover {
    background-color: #e63e00;
}

/* Features Section */
.features-section {
    padding: 60px 20px;
    background-color: #121212;
}

.feature-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-list ul {
    list-style: disc;
    text-align: left;
    font-size: 1.1em;
    color: #cccccc;
    padding-left: 20px;
    margin-bottom: 30px;
}

.feature-list ul li {
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: #000000;
    text-align: center;
    padding: 20px;
    font-size: 0.8em;
    color: #666666;
    border-top: 1px solid #222222;
}

/* Placeholder for the image tag in features section */
.feature-list >  {
    /* Styles pour simuler un conteneur d'image */
    display: block;
    width: 100%;
    max-width: 600px;
    height: 300px;
    background-color: #333333;
    color: #999999;
    line-height: 300px;
    text-align: center;
    border-radius: 5px;
    font-style: italic;
    margin-top: 20px;
}

.btn-retour {
    display: inline-block;
    margin-left: 15px;
    padding: 8px 16px;
    background-color: #007BFF; /* bleu par défaut */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-retour:hover {
    background-color: #0056b3; /* bleu plus foncé au survol */
}
