/ Сброс стилей /
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
background: #f5f7fa;
color: #333;
line-height: 1.5;
min-height: 100vh;
display: flex;
flex-direction: column;
}
header {
height: 100%;
color: white;
padding: 1rem 1.5rem;
text-align: center;
font-size: 1.25rem;
font-weight: 600;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
position: sticky;
top: 0;
z-index: 100;
}
main {
flex: 1;
padding: 1.5rem 1rem;
max-width: 480px;
margin: 0 auto;
width: 100%;
}
h1 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: #222;
}
p {
margin-bottom: 1rem;
font-size: 1rem;
color: #555;
}
.card {
background: white;
border-radius: 12px;
padding: 1rem 1.25rem;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
margin-bottom: 1.5rem;
transition: box-shadow 0.3s ease;
}
.card:hover {
box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}
button {
background: #4a90e2;
border: none;
border-radius: 8px;
color: white;
padding: 0.75rem 1.25rem;
font-size: 1rem;
cursor: pointer;
transition: background-color 0.3s ease;
width: 100%;
max-width: 300px;
display: block;
margin: 1rem auto 0;
box-shadow: 0 3px 8px rgba(74,144,226,0.5);
}
button:hover {
background: #357ABD;
box-shadow: 0 5px 12px rgba(53,122,189,0.7);
}
nav {
background: white;
box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
padding: 0.5rem 0;
position: fixed;
bottom: 0;
width: 100%;
max-width: 480px;
margin: 0 auto;
display: flex;
justify-content: space-around;
z-index: 100;
border-top-left-radius: 16px;
border-top-right-radius: 16px;
}
nav a {
color: #4a90e2;
text-decoration: none;
font-size: 1.1rem;
display: flex;
flex-direction: column;
align-items: center;
font-weight: 600;
transition: color 0.3s ease;
}
nav a:hover,
nav a.active {
color: #357ABD;
}
nav a svg {
width: 24px;
height: 24px;
margin-bottom: 4px;
fill: currentColor;
}
.concert-list {
list-style: none;
padding: 0;
}
.concert-item {
background: white;
margin-bottom: 15px;
padding: 15px 20px;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
}
.concert-info {
max-width: 70%;
}
.concert-date {
font-weight: bold;
color: #333;
margin-bottom: 5px;
}
.concert-location {
color: #666;
font-size: 0.9em;
}
.ticket-link {
background-color: #007bff;
color: white;
padding: 8px 15px;
border-radius: 5px;
text-decoration: none;
font-weight: 600;
transition: background-color 0.3s;
}
.ticket-link:hover {
background-color: #0056b3;
}
.no-concerts {
text-align: center;
color: #777;
font-style: italic;
margin-top: 50px;
}

.icon-vk:before {
  content: "\f189";
}
.icon-odnoklassniki:before {
  content: "\f263";
}
.icon-youtube_searched_for:before {
  content: "\e8fa";
}