@import url('font/Inter');
 
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
 
:root {
  --cyan:   #00B4D8;
  --yellow: #F5F500;
  --black:  #111111;
  --white:  #FFFFFF;
  --gray:   #888888;
  --nav-h:  130px;
}
 
html, body {
  width: 100%;
  min-height: 100vh;
  font-family: 'Inter';
  background-color: var(--yellow);
  color: var(--white);
}

nav {
  background-color: var(--cyan);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.nav-inner {
  display: flex;
  align-items: center;
  gap: 50px;
}

.logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  overflow: hidden;
}
 
.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  gap: 50px;
  list-style: none;
}
 
.nav-links a {
  display: block;
  padding: 14px 40px;
  border-radius: 10px;
  background-color: var(--black);
  color: var(--white);
  text-decoration: none;
  font-family: 'Inter';
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.2s;
}
 
.nav-links a:hover {
  background-color: #2a2a2a;
}
 
.nav-links a.active {
  background-color: var(--gray);
}

.page-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 30px 0 60px;
}

.main-story {
  background-color: var(--black);
  border-radius: 14px;
  padding: 55px 40px;
  text-align: center;
  margin-bottom: 26px;
}
 
.main-story h1 {
  font-family: 'Inter';
  font-size: 4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
}
 
.cards-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr;
  gap: 18px;
}
 
.card {
  background-color: var(--black);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 16px;
  min-height: 140px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
 
.card:hover {
  background-color: #2a2a2a;
  transform: translateY(-2px);
}
 
.card-text {
  font-family: 'Inter';
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
 
.card-tall {
  min-height: 185px;
}

.matches-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 26px;
  font-family: 'Inter';
  font-size: 0.95rem;
}
 
.matches-table thead td {
  background-color: #1a1a1a;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--yellow);
  padding: 14px 22px;
  border: 2px solid var(--yellow);
  text-align: center;
}
 
.matches-table tbody td {
  background-color: var(--black);
  color: var(--white);
  padding: 16px 22px;
  border: 2px solid var(--yellow);
  text-align: center;
  line-height: 1.4;
}
 
.matches-table tbody tr:hover td {
  background-color: #1e1e1e;
}

.gallery-header {
  background-color: var(--black);
  border-radius: 10px;
  padding: 22px;
  text-align: center;
  margin-bottom: 20px;
}
 
.gallery-header h2 {
  font-family: 'Inter';
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
}
 
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
 
.gallery-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
 
.gallery-sport-label {
  background-color: var(--black);
  border-radius: 8px;
  padding: 12px 8px;
  text-align: center;
  font-family: 'Inter';
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
}
 
.gallery-card {
  background-color: var(--black);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  font-size: 0.72rem;
  font-family: 'Inter';
  color: var(--white);
  line-height: 1.45;
  cursor: pointer;
  transition: background 0.2s;
}
 
.gallery-card:hover {
  background-color: #2a2a2a;
}
 
.gallery-card img {
  width: 100%;
  height: 70px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 7px;
  display: block;
  background-color: #333;
}

.gallery-col .gallery-card:nth-child(odd) {
  margin-right: 10px;
}
.gallery-col .gallery-card:nth-child(even) {
  margin-left: 10px;
}

.contact-title-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
 
.contact-title {
  background-color: var(--black);
  border-radius: 12px;
  padding: 18px 70px;
  font-family: 'Inter';
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}
 
.contact-form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
  margin-bottom: 28px;
}
 
.form-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
 
.form-input {
  background-color: var(--black);
  border: none;
  border-radius: 8px;
  padding: 18px 20px;
  color: var(--white);
  font-family: 'Inter';
  font-size: 0.95rem;
  width: 100%;
  outline: none;
  transition: background 0.2s;
}
 
.form-input::placeholder {
  color: #aaaaaa;
}
 
.form-input:focus {
  background-color: #2a2a2a;
}
 
.form-textarea {
  background-color: var(--black);
  border: none;
  border-radius: 8px;
  padding: 20px;
  color: var(--white);
  font-family: 'Inter';
  font-size: 0.95rem;
  width: 100%;
  height: 100%;
  min-height: 240px;
  resize: none;
  outline: none;
  transition: background 0.2s;
  display: block;
}
 
.form-textarea::placeholder {
  color: #aaaaaa;
}
 
.form-textarea:focus {
  background-color: #2a2a2a;
}
 
.submit-wrap {
  text-align: center;
}
 
.btn-submit {
  background-color: var(--black);
  color: var(--white);
  border: none;
  border-radius: 12px;
  padding: 18px 80px;
  font-family: 'Inter';
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
 
.btn-submit:hover {
  background-color: #2a2a2a;
  transform: translateY(-2px);
}

.success-msg {
  display: none;
  margin-top: 24px;
  background-color: var(--black);
  border: 2px solid #22c55e;
  border-radius: 10px;
  padding: 18px 30px;
  text-align: center;
  font-family: 'Inter';
  font-size: 1.05rem;
  font-weight: 600;
  color: #22c55e;
}
 
.success-msg.visible {
  display: block;
}