/* Genel Ayarlar */
html, body {
  height: 100%;
  margin: 0;
  overflow: hidden; /* Scroll kapalı */
  background: url('bg2.png') no-repeat center center fixed;
  background-size: cover;
  font-family: Arial, sans-serif;
}

/* Header */
.header {
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 15px;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* Footer */
.footer {
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 10px 20px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  z-index: 1000;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.5);
}

.footer .row {
  height: 100%;
  display: flex;
  align-items: center;
}

.footer .controls {
  text-align: left;
}

.footer .chips-container {
  display: inline-block;
  vertical-align: middle;
}

.footer .chips-container img {
  margin-left: 10px;
  cursor: pointer;
  max-height: 40px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer .chips-container img.selected {
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

/* Responsive Footer */
@media (max-width: 576px) {
  .footer {
    height: auto;
    padding: 10px;
  }
  .footer .row {
    flex-direction: column;
  }
  .footer .controls,
  .footer .chips-container {
    text-align: center;
    margin-bottom: 10px;
  }
}

/* Main Content */
.main-content {
  position: absolute;
  top: 60px;        /* Header yüksekliği */
  bottom: 70px;     /* Footer yüksekliği */
  left: 0;
  right: 0;
  display: flex;
  overflow: hidden;
}

/* Sol Panel (Left Panel) */
.left-panel-container {
  position: fixed;
  top: 60px;
  bottom: 70px;
  left: 0;
  width: 300px;
  padding: 15px;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  transition: opacity 0.3s ease;
  z-index: 1100;
}

.left-panel-container.hidden {
  opacity: 0;
  display: none;
}

/* Sağ Panel (Game Container) */
.right-panel {
  flex-grow: 1;
  position: relative;
  background-color: brown;
  margin-left: 300px;
  transition: margin-left 0.3s ease;
}

.right-panel.fullwidth {
  margin-left: 0;
}
.game-btn {
  transition: all 0.1s ease;
}

.button-pressed {
  transform: scale(0.95);
  background-color: #d3d3d3; /* Hafif gri ton */
}
/* assets/style.css */
.loading-hidden {
  display: none;
}

.loading-visible {
  display: block;
}
.landing-page { min-height:100%; overflow:auto; background:#f1f5f9; }
.landing-content { padding-bottom:2rem; }
.rules-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:1.25rem; }
.info-card { background:rgba(255,255,255,.96); border:1px solid #cbd5e1; border-radius:14px; box-shadow:0 8px 24px rgba(15,23,42,.12); padding:1.25rem; color:#1e293b; }
.info-card h2 { color:#0f172a; font-size:1.3rem; margin-bottom:.8rem; }
.info-card p,.info-card li { font-size:.94rem; line-height:1.55; }
.info-card ol { margin:0; padding-left:1.25rem; }
@media (max-width: 768px) { .rules-grid { grid-template-columns:1fr; } .landing-content { margin-top:1.5rem!important; } }
/* assets/style.css */
#gameContainer {
  margin-left: 0;
}
