body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
    background-image: url('https://www.transparenttextures.com/patterns/asfalt-dark.png');
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #d0d0d0;
    position: relative;
    min-height: 100vh;
}

header {
    margin-bottom: 15px;
    text-align: center;
}

header h1 {
    font-size: 36px;
    color: #ff5555;
    margin: 0;
}

.author {
    font-size: 16px;
    color: #999999;
    margin-top: 5px;
    font-style: italic;
}

.container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 80%;
    max-width: 1200px;
}

.icon-card {
    background-color: #333333;
    border-radius: 10px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    padding: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.icon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
}

.icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    margin-right: 10px;
}

.icon-container img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.text-container {
    display: flex;
    flex-direction: column;
}

.text-container .title {
    font-size: 20px;
    color: #ff5555;
    margin: 0;
}

.text-container .description {
    font-size: 14px;
    color: #e0e0e0;
    margin: 5px 0 0 0;
}

.version-label {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 12px;
    color: #999999;
    background-color: #2a2a2a;
    padding: 5px 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
}
