
:root {
  --primary-green: #1b4332;
  --secondary-green: #2d6a4f;
  --accent-green: #40916c;
  --light-green: #95d5b2;
  --bamboo-gold: #d4af37;
  --panda-black: #1a1a1a;
  --panda-white: #f8f9fa;
  --background-gradient: linear-gradient(135deg, #e3f2e8 0%, #c8e6c9 100%);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 15px 40px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: var(--background-gradient);
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


header {
  background: linear-gradient(
    135deg,
    var(--primary-green) 0%,
    var(--secondary-green) 100%
  );
  color: white;
  padding: 20px 0;
  box-shadow: var(--shadow-medium);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.logo a {
  color: white;
  text-decoration: none;
}

.logo span {
  color: var(--bamboo-gold);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 8px 15px;
  border-radius: 5px;
  transition: var(--transition);
}

nav ul li a:hover,
nav ul li a.active {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
}


main {
  flex: 1;
  padding: 40px 0;
}

.page-title {
  color: var(--primary-green);
  font-size: 2.5rem;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--accent-green);
}

.page-title i {
  margin-right: 15px;
  color: var(--bamboo-gold);
}


.clan-logo-section {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow-soft);
}

.clan-logo-container {
  position: relative;
  flex-shrink: 0;
}

.clan-logo {
  width: 180px;
  height: 180px;
  object-fit: contain;
  border-radius: 50%;
  padding: 15px;
  background: white;
  box-shadow: 0 0 0 8px #e9f5eb, 0 10px 30px rgba(27, 67, 50, 0.2);
  border: 3px solid var(--accent-green);
  transition: var(--transition);
}

.clan-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 0 0 8px #e9f5eb, 0 15px 40px rgba(27, 67, 50, 0.3);
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(64, 145, 108, 0.2) 0%,
    rgba(64, 145, 108, 0) 70%
  );
  border-radius: 50%;
  z-index: -1;
}

.logo-text {
  flex: 1;
}

.clan-slogan {
  font-size: 2.2rem;
  color: var(--primary-green);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(
    135deg,
    var(--primary-green) 0%,
    var(--accent-green) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-badges {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.badge {
  background: linear-gradient(
    135deg,
    var(--light-green) 0%,
    var(--accent-green) 100%
  );
  color: var(--primary-green);
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(27, 67, 50, 0.15);
}

.badge i {
  font-size: 1rem;
}


.card,
.gallery-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 30px;
  transition: var(--transition);
}

.card:hover,
.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.card-title {
  color: var(--primary-green);
  font-size: 1.5rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(45, 106, 79, 0.1);
}

.card-title i {
  margin-right: 10px;
  color: var(--accent-green);
}


.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.feature-item {
  text-align: center;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: var(--transition);
}

.feature-item:hover {
  background: #e9ecef;
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--accent-green);
  margin-bottom: 15px;
}

.feature-item h3 {
  color: var(--primary-green);
  margin-bottom: 10px;
}

.feature-item p {
  color: #666;
  font-size: 0.95rem;
}


.games-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.game-tag {
  background: linear-gradient(135deg, #e9f5eb 0%, #d4edda 100%);
  color: var(--primary-green);
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  border: 1px solid rgba(45, 106, 79, 0.2);
  transition: var(--transition);
}

.game-tag:hover {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  transform: translateY(-2px);
}


.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.testimonial {
  background: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--accent-green);
  transition: var(--transition);
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  margin-bottom: 20px;
  font-style: italic;
  color: #495057;
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
}

.testimonial-content::before {
  content: '"';
  font-size: 3rem;
  color: var(--light-green);
  position: absolute;
  left: 0;
  top: -10px;
  opacity: 0.5;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-green);
}

.testimonial-author h4 {
  margin: 0;
  color: var(--primary-green);
  font-weight: 600;
}

.testimonial-author span {
  color: #6c757d;
  font-size: 0.9rem;
}


.ranking-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 20px;
}

.ranking-section {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.ranking-table-wrapper {
  overflow-x: auto;
}

.ranking-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.ranking-table thead {
  background-color: #f8f9fa;
}

.ranking-table th {
  padding: 12px 15px;
  text-align: left;
  font-weight: 600;
  color: #1b4332;
  border-bottom: 2px solid #2d6a4f;
}

.ranking-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
}

.ranking-table tbody tr:hover {
  background-color: #f8f9fa;
}

.ranking-table tbody tr:last-child td {
  border-bottom: none;
}

.rank-number {
  display: inline-block;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  border-radius: 50%;
  background: #e9ecef;
  color: #495057;
  font-weight: bold;
}

.rank-1 {
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  color: white;
  box-shadow: 0 2px 5px rgba(255, 215, 0, 0.3);
}

.rank-2 {
  background: linear-gradient(135deg, #c0c0c0 0%, #a9a9a9 100%);
  color: white;
  box-shadow: 0 2px 5px rgba(192, 192, 192, 0.3);
}

.rank-3 {
  background: linear-gradient(135deg, #cd7f32 0%, #a0522d 100%);
  color: white;
  box-shadow: 0 2px 5px rgba(205, 127, 50, 0.3);
}

.points {
  font-weight: bold;
  color: #2d6a4f;
  background: #e8f5e9;
  padding: 4px 10px;
  border-radius: 15px;
  display: inline-block;
  min-width: 70px;
  text-align: center;
}


.gallery-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.gallery-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--primary-green),
    var(--accent-green),
    var(--bamboo-gold)
  );
  z-index: 2;
}

.section-subtitle {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 30px auto;
}

.text-center {
  text-align: center;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  background: linear-gradient(
    135deg,
    var(--primary-green) 0%,
    var(--secondary-green) 100%
  );
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(27, 67, 50, 0.2);
}

.btn i {
  margin-right: 10px;
}

.btn-large {
  padding: 15px 35px;
  font-size: 1.1rem;
}

.btn-secondary {
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
}

.btn-outline:hover {
  background: var(--primary-green);
  color: white;
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.panda-decorative {
  text-align: center;
  margin: 30px 0;
  font-size: 3rem;
  animation: bounce 2s infinite;
}


footer {
  background: linear-gradient(135deg, var(--primary-green) 0%, #153922 100%);
  color: white;
  padding: 50px 0 30px;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-title {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: var(--light-green);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-green);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-links i {
  margin-right: 10px;
  color: var(--accent-green);
  width: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  transition: var(--transition);
  text-decoration: none;
}

.social-links a:hover {
  background-color: var(--accent-green);
  transform: translateY(-5px);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}


.text-center {
  text-align: center;
}


.gallery-section {
  all: unset;
}


main .container > *:not(:last-child) {
  margin-bottom: 40px;
}


.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  color: var(--primary-green);
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(64, 145, 108, 0.1);
}


.alert {
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  border-left: 5px solid;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border-color: #28a745;
}

.alert-warning {
  background-color: #fff3cd;
  color: #856404;
  border-color: #ffc107;
}

.alert-info {
  background-color: #d1ecf1;
  color: #0c5460;
  border-color: #17a2b8;
}


.faq-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-size: 1.2rem;
  color: var(--primary-green);
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-question i {
  color: var(--accent-green);
  margin-right: 10px;
}

.faq-answer {
  padding-left: 30px;
  margin-top: 10px;
  color: #555;
}

.faq-arrow {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}


table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

table th {
  background: var(--light-green);
  padding: 12px;
  text-align: left;
  font-weight: 600;
  color: var(--primary-green);
}

table td {
  padding: 12px;
  border-bottom: 1px solid #eee;
}


ul,
ol {
  margin-left: 20px;
  margin-bottom: 15px;
}

li {
  margin-bottom: 8px;
}


@media (max-width: 768px) {
  .ranking-container {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .ranking-section {
    padding: 15px;
    overflow-x: auto;
  }

  .ranking-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .ranking-table {
    min-width: 600px; 
  }

  .ranking-table th,
  .ranking-table td {
    padding: 10px 8px;
    font-size: 14px;
  }

  .ranking-section h3 {
    font-size: 1.2rem;
    padding-bottom: 8px;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .ranking-table {
    min-width: 500px;
    font-size: 13px;
  }

  .rank-number {
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-size: 13px;
  }

  .points {
    padding: 3px 8px;
    min-width: 60px;
    font-size: 13px;
  }
}


@media (max-width: 768px) {
  .testimonials-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial {
    padding: 20px;
  }

  .testimonial-content {
    font-size: 15px;
    padding-left: 15px;
  }

  .testimonial-content::before {
    font-size: 2.5rem;
    top: -5px;
  }

  .testimonial-author img {
    width: 45px;
    height: 45px;
  }

  .testimonial-author h4 {
    font-size: 1rem;
  }

  .testimonial-author span {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .testimonial {
    padding: 15px;
  }

  .testimonial-content {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .testimonial-author {
    gap: 10px;
  }

  .testimonial-author img {
    width: 40px;
    height: 40px;
    border-width: 2px;
  }
}



.games-filter-system {
  margin-top: 25px;
}


.games-search-container {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 25px;
  border: 1px solid #e9ecef;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.search-box i {
  position: absolute;
  left: 15px;
  color: #6c757d;
  font-size: 1.1rem;
  z-index: 2;
}

#games-search-input {
  width: 100%;
  padding: 12px 45px 12px 45px;
  border: 2px solid #dee2e6;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

#games-search-input:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(64, 145, 108, 0.1);
}

.clear-search-btn {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: #6c757d;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.clear-search-btn:hover {
  background: #e9ecef;
  color: #495057;
  opacity: 1;
}

.search-info {
  font-size: 0.9rem;
  color: #6c757d;
  text-align: right;
}


.games-categories {
  background: white;
  border-radius: 10px;
  padding: 0;
  margin-bottom: 25px;
  border: 1px solid #e9ecef;
  overflow: hidden;
}

.categories-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}

.categories-header h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--primary-green);
}

.categories-header h3 i {
  margin-right: 10px;
  color: var(--accent-green);
}

.toggle-btn {
  background: none;
  border: 1px solid #dee2e6;
  color: var(--primary-green);
  width: 36px;
  height: 36px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-btn:hover {
  background: #e9ecef;
  border-color: var(--accent-green);
}

.categories-grid {
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  max-height: 400px;
  overflow-y: auto;
  transition: all 0.3s ease;
}

.categories-grid.collapsed {
  max-height: 0;
  padding: 0 20px;
  overflow: hidden;
}

.category-filter {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  font-weight: 500;
}

.category-filter:hover {
  background: #e9ecef;
  transform: translateY(-2px);
}

.category-filter.active {
  background: linear-gradient(
    135deg,
    var(--light-green) 0%,
    var(--accent-green) 100%
  );
  color: white;
  border-color: var(--accent-green);
  box-shadow: 0 4px 12px rgba(64, 145, 108, 0.2);
}

.category-filter .category-icon {
  margin-right: 10px;
  font-size: 1.2rem;
}

.category-filter .category-count {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}


.games-grid-container {
  min-height: 300px;
  position: relative;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.game-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-green);
}

.game-card-header {
  padding: 15px;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.game-emoji {
  font-size: 1.5rem;
  margin-right: 10px;
}

.game-title {
  font-weight: 600;
  color: var(--primary-green);
  font-size: 1rem;
  flex: 1;
}

.game-categories {
  padding: 12px 15px;
  background: white;
  border-top: 1px solid #f8f9fa;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: auto;
}

.game-category-tag {
  background: #e9f5eb;
  color: var(--primary-green);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
}

.games-empty-state {
  text-align: center;
  padding: 50px 20px;
  display: none;
}

.games-empty-state i {
  font-size: 3rem;
  color: #dee2e6;
  margin-bottom: 20px;
}

.games-empty-state h3 {
  color: #6c757d;
  margin-bottom: 10px;
}

.games-empty-state p {
  color: #adb5bd;
}


.games-footer {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #e9ecef;
}

.games-stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: white;
  border-radius: 8px;
  border: 1px solid #dee2e6;
  min-width: 180px;
}

.stat i {
  color: var(--accent-green);
  font-size: 1.2rem;
}

.stat span {
  color: #495057;
  font-size: 0.95rem;
}

.stat strong {
  color: var(--primary-green);
  font-size: 1.1rem;
}

.games-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.games-actions .btn {
  min-width: 180px;
}


.categories-grid::-webkit-scrollbar {
  width: 6px;
}

.categories-grid::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.categories-grid::-webkit-scrollbar-thumb {
  background: var(--light-green);
  border-radius: 3px;
}

.categories-grid::-webkit-scrollbar-thumb:hover {
  background: var(--accent-green);
}


.table-note {
  margin-top: 15px;
  padding: 12px 15px;
  background: #fff3e0;
  border-radius: 6px;
  border-left: 4px solid #ff9800;
  font-size: 0.9em;
  color: #333;
}

.table-note i {
  color: #ff9800;
  margin-right: 8px;
}

@media (max-width: 768px) {
  .table-note {
    margin-top: 10px;
    padding: 10px 12px;
    font-size: 0.85em;
    line-height: 1.4;
  }
}


.pc-notice {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-left: 4px solid #2196f3;
  padding: 15px 20px;
  margin: 20px 0 30px 0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 3px 10px rgba(33, 150, 243, 0.1);
  animation: fadeInUp 0.5s ease;
}

.pc-notice i {
  font-size: 1.8rem;
  color: #2196f3;
  background: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(33, 150, 243, 0.2);
  flex-shrink: 0;
}

.pc-notice strong {
  color: #1976d2;
  font-weight: 700;
}

.pc-notice p {
  margin: 0;
  color: #0d47a1;
  font-size: 1rem;
  line-height: 1.5;
  flex: 1;
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 768px) {
  .pc-notice {
    padding: 12px 15px;
    margin: 15px 0 25px 0;
    gap: 12px;
    flex-direction: column;
    text-align: center;
  }

  .pc-notice i {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    margin-bottom: 5px;
  }

  .pc-notice p {
    font-size: 0.95rem;
    line-height: 1.4;
  }
}


@media (min-width: 769px) and (max-width: 1024px) {
  .pc-notice {
    padding: 14px 18px;
    margin: 18px 0 28px 0;
  }

  .pc-notice i {
    width: 45px;
    height: 45px;
    font-size: 1.6rem;
  }
}
