/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #1f1f2f;
    color: white;
    margin: 0;
    padding: 0;
    text-align: center;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Header */
header h1 {
    font-size: 2.5rem;
    color: #ffcc00;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
    color: #dddddd;
}

/* Intro section */
.intro p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #dddddd;
}

/* Links section */
.links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap; /* Permette di farli rimanere sulla stessa riga */
}

.link-box {
    background-color: #2c2c3b;
    padding: 20px;
    width: 23%; /* Ridotto per adattarli in 4 colonne */
    box-sizing: border-box;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    text-align: center;
}

.link-box:hover {
    transform: scale(1.05);
}

.link {
    text-decoration: none;
    color: white;
    display: block;
}

.icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
}

h2 {
    font-size: 1.5rem;
    color: #ffcc00;
    margin-bottom: 10px;
}

p {
    font-size: 1rem;
    color: #dddddd;
}

/* Styling for the "Coming Soon" boxes */
.coming-soon {
    background-color: #444;
}

/* Footer */
footer {
    margin-top: 50px;
    padding: 10px;
    background-color: #1a1a1a;
    color: #dddddd;
}

footer p {
    font-size: 1rem;
}
