﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

:root {
  --primary: #4fc3f7;
  --primary-dark: #039be5;
  --secondary: #81c784;
  --bg-light: #f9fbfd;
  --bg-dark: #1e1e2f;
  --text-main: #2c3e50;
  --accent: #ffd54f;
  --danger: #e57373;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(145deg, var(--bg-light), #dfe9f3);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container, .game-box {
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
  max-width: 1000px;
  width: 100%;
  margin-bottom: 40px;
  transition: transform 0.3s ease;
}

h1, h2, h3 {
  color: var(--primary-dark);
  margin-bottom: 15px;
  text-align: center;
}
.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

button, .btn {
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 12px 25px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

input, textarea, select {
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 12px;
  background-color: #f0f4f8;
  transition: border 0.3s ease;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  outline: none;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.table th, .table td {
  padding: 14px;
  border: 1px solid #ddd;
  text-align: center;
}
.table th {
  background-color: var(--primary-dark);
  color: white;
  font-weight: 600;
}

.card {
  background-color: white;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.navbar-dark .navbar-brand {
  color: #000000;
}
a {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 500;
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  background-color: var(--secondary);
  color: white;
}

.alert {
  padding: 15px 20px;
  background-color: var(--danger);
  color: white;
  border-radius: 12px;
  font-weight: 600;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .container {
    padding: 20px;
  }

  button, .btn {
    width: 100%;
  }
}

.carousel-control-prev, .carousel-control-next {
  border: 0;
  opacity: 0;
}

body {
  cursor: url(/IMG/cursor.png), auto;
}
.navbar-brand {
  color: black !important;
}

.navbar-brand:hover {
  color: var(--primary-dark) !important;
}
.nav-link{
  color: black !important;
}

.navbar {
  color: #202020;
  width: 100%;
}



.separator {
  border-left: 1px solid black;
  height: 24px;
  margin: auto 10px;
}
