﻿.cms-hero {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  margin-top: 0;
}

.cms-hero h1 {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.cms-hero .tagline {
  font-size: 1.3em;
  margin-bottom: 30px;
  opacity: .95;
}

p.tagline {
  color: #fff;
}

.content-wrapper{
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.login-section {
  background: white;
  padding: 50px;
  border-top: 1px solid #eee;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,.1);
  max-width: 100%;
  margin: 40px auto;
  text-align: center;
}

.login-button {
  display: inline-block;
  background: #3498db;
  color: white;
  padding: 20px 50px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: all .3s;
  margin: 20px 0;
}

.login-button:hover {
  background: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,.2);
}

.cookie-notice {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 4px;
}

.cookie-notice h3 {
  color: #856404;
  margin-bottom: 10px;
}

.logout-notice {
  background: #e8f5e9;
  border-left: 4px solid #27ae60;
  padding: 20px;
  margin-top: 30px;
  border-radius: 4px;
}

.logout-notice h3 {
  color: #1b5e20;
  margin-bottom: 10px;
}

.important-box {
  background: #ffe6e6;
  border: 3px solid #e74c3c;
  padding: 25px;
  border-radius: 8px;
  margin: 40px 0;
}

.important-box h3 {
  color: #c0392b;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.info-card {
  background: white;
  padding: 30px;
  border-top: 1px solid #eee;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,.1);
  margin-bottom: 30px;
}

.info-card h2 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 1.8em;
  border-left: 4px solid #3498db;
  padding-left: 15px;
}

.info-card ul {
  margin: 20px 0;
}

.info-card li {
  padding: 10px 0;
  color: #555;
}

.warning-box {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 20px;
  margin: 20px 0;
  border-radius: 4px;
}

.warning-box p {
  color: #856404;
  margin: 0;
}

.security-box {
  background: #e8f5e9;
  border-left: 4px solid #27ae60;
  padding: 20px;
  margin: 20px 0;
  border-radius: 4px;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.tip-card {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #3498db;
}

.tip-card h4 {
  color: #3498db;
  margin-bottom: 10px;
  font-size: 1.1em;
}

.tip-card p {
  color: #555;
  font-size: .95em;
  margin: 0;
}

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

.specs-table th {
  background: #3498db;
  color: white;
  padding: 12px;
  text-align: left;
}

.specs-table td {
  padding: 12px;
  border-bottom: 1px solid #eee;
}

.specs-table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 968px) {
  .tips-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .cms-hero h1 {
    font-size: 2em;
  }

  .cms-hero .tagline {
    font-size: 1.1em;
  }

  .login-section {
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {

  .specs-table thead {
    display: none;
  }

  .specs-table table, .specs-table tbody, .specs-table tr, .specs-table td {
    display: block;
    max-width: 100%;   line-height: 1.6;
  }

  .specs-table tr {
    margin-bottom: 0;
    padding: 12px; border-bottom: 1px solid #e5e5e5;


  }

  .specs-table td {
    padding: 8px 0;
    border: none;
  }

  .specs-table td::before {
    content: attr(data-label);
    display: block;
    font-weight: 600;
    font-size: .85rem;
    color: #666;
    margin-bottom: 4px;
  }
}
