body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-image: url('/api/placeholder/1920/1080');
    background-size: cover;
    background-attachment: fixed;
    color: #333;
}

.content {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
}

.info-card {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.main-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

h1 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.info-table th, .info-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.info-table th {
    background-color: #2c3e50;
    color: white;
}

.info-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.description {
    line-height: 1.6;
    margin: 20px 0;
}

.back-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.back-button:hover {
    background-color: #34495e;
}

.fun-facts {
    margin-top: 20px;
    padding: 15px;
    background-color: #f0f7ff;
    border-radius: 10px;
}