/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #f5f5f5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  background-color: white;
  min-height: 100vh;
}

/* Header Styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background-color: #87ceeb; /* Sky blue background */
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  width: 30px;
}

.site-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  color: #000;
  margin: 0;
  text-align: center;
}

.site-title a {
  text-decoration: none;
  color: inherit;
}

/* Target Icon */
.target-icon {
  width: 30px;
  height: 30px;
  position: relative;
}

.target-outer {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #000;
}

.target-middle {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 5px;
  left: 5px;
  border-radius: 50%;
  border: 2px solid #000;
}

.target-inner {
  position: absolute;
  width: 10px;
  height: 10px;
  top: 10px;
  left: 10px;
  border-radius: 50%;
  border: 2px solid #000;
}

.target-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  top: 13px;
  left: 13px;
  border-radius: 50%;
  background-color: #000;
}

.admin-button {
  background-color: #4a6ee0;
  color: white;
  padding: 8px 15px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
}

/* Results Table Styles */
.results-table {
  border: 1px solid #ccc;
  margin: 15px;
}

.date-header {
  background-color: #f0f0f0;
  text-align: center;
  padding: 8px;
  border-bottom: 1px solid #ccc;
}

.results-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.result-header {
  background-color: #40cbb5;
  text-align: center;
  padding: 8px;
  border-right: 1px solid #ccc;
}

.result-header:last-child {
  border-right: none;
}

.result-value {
  text-align: center;
  padding: 10px;
  border-right: 1px solid #ccc;
  font-weight: bold;
}

.result-value:last-child {
  border-right: none;
}

/* Icons Grid Styles */
.icons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 15px;
}

.icon-box {
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  border-radius: 4px;
  overflow: hidden;
}

.icon-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 15px;
  text-align: center;
}

.icon-symbol {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 10px;
}

.icon-text {
  font-size: 18px;
  font-weight: bold;
}

/* Specific Icon Box Styles */
.common-number {
  background-color: #ff5252;
}

.blog {
  background-color: #f5e6c9;
}

.dream-number {
  background-color: #ff5252;
}

.statistics {
  background-color: #2c3e50;
}

.direct-number {
  background-color: #1e272e;
}

.previous-results {
  background-color: #0097e6;
}

/* Dream Number Icon */
.dream-cloud {
  width: 60px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  position: relative;
  margin-bottom: 10px;
}

.unicorn-horn {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 30px solid #9933ff;
  border-radius: 50%;
}

.unicorn-horn:before {
  content: "";
  position: absolute;
  top: 10px;
  left: -4px;
  width: 16px;
  height: 5px;
  background-color: #ff9900;
  border-radius: 5px;
}

.unicorn-horn:after {
  content: "";
  position: absolute;
  top: 18px;
  left: -4px;
  width: 16px;
  height: 5px;
  background-color: #00cc66;
  border-radius: 5px;
}

/* Statistics Icon */
.stats-graph {
  width: 60px;
  height: 60px;
  position: relative;
}

.stats-person {
  position: absolute;
  width: 10px;
  height: 20px;
  border-radius: 5px 5px 0 0;
}

.stats-person:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: -10px;
  left: 1px;
}

.stats-person-orange {
  background-color: #ff9933;
  bottom: 10px;
  left: 15px;
}

.stats-person-orange:after {
  background-color: #ff9933;
}

.stats-person-purple {
  background-color: #9966ff;
  bottom: 10px;
  right: 15px;
}

.stats-person-purple:after {
  background-color: #9966ff;
}

.stats-arrow {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 5px;
  left: 10px;
  border-left: 3px solid #ff66cc;
  border-top: 3px solid #ff66cc;
  transform: rotate(45deg);
}

/* Direct Number Icon */
.direct-arrows {
  width: 60px;
  height: 60px;
  position: relative;
}

.direct-arrow-white {
  position: absolute;
  top: 15px;
  left: 5px;
  width: 50px;
  height: 8px;
  background-color: white;
  clip-path: polygon(0 0, 85% 0, 85% 40%, 100% 50%, 85% 60%, 85% 100%, 0 100%);
}

.direct-arrow-yellow {
  position: absolute;
  top: 30px;
  left: 5px;
  width: 50px;
  height: 8px;
  background-color: #ffcc00;
  clip-path: polygon(0 0, 85% 0, 85% 40%, 100% 50%, 85% 60%, 85% 100%, 0 100%);
}

.direct-label {
  position: absolute;
  top: 45px;
  width: 100%;
  text-align: center;
  font-size: 10px;
  color: white;
}

/* Previous Results Icon */
.results-paper {
  width: 40px;
  height: 50px;
  background-color: white;
  border-radius: 3px;
  position: relative;
  margin-bottom: 10px;
}

.results-line {
  position: absolute;
  left: 5px;
  width: 30px;
  height: 2px;
  background-color: #333;
}

.results-line:nth-child(1) {
  top: 10px;
}

.results-line:nth-child(2) {
  top: 20px;
}

.results-line:nth-child(3) {
  top: 30px;
  width: 15px;
}

.results-check {
  position: absolute;
  top: 28px;
  right: 8px;
  width: 8px;
  height: 8px;
  border: 2px solid #333;
}

/* Blog Text Styles */
.blog-text {
  display: flex;
  justify-content: center;
}

.blog-letter {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 2px;
  font-weight: bold;
}

.yellow {
  background-color: #f1c40f;
  color: black;
}

.blue {
  background-color: #3498db;
  color: white;
}

.green {
  background-color: #2ecc71;
  color: white;
}

.red {
  background-color: #e74c3c;
  color: white;
}

/* Common Numbers Table Styles */
.common-numbers-container {
  margin: 15px;
  border: 1px solid #ccc;
}

.common-table-container {
  margin-bottom: 0;
}

.common-table-header {
  background-color: #f0f0f0;
  text-align: center;
  padding: 10px;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
}

.common-table {
  width: 100%;
  border-collapse: collapse;
}

.common-table-row-header th {
  background-color: #40cbb5;
  padding: 10px;
  text-align: center;
  border-right: 1px solid #ccc;
  font-weight: bold;
}

.common-table-row-header th:last-child {
  border-right: none;
}

.common-table-row td {
  padding: 10px;
  text-align: center;
  border-right: 1px solid #ccc;
  font-weight: bold;
}

.common-table-row td:last-child {
  border-right: none;
}

.common-table-separator {
  height: 20px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  margin: 0;
  background-color: #f0f0f0;
}

/* Data Table Styles */
.data-table {
  border: 1px solid #ccc;
  margin: 15px;
}

.table-header {
  background-color: #f0f0f0;
  text-align: center;
  padding: 10px;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th {
  background-color: #40cbb5;
  padding: 10px;
  text-align: center;
  border-right: 1px solid #ccc;
}

th:last-child {
  border-right: none;
}

td {
  padding: 10px;
  text-align: center;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
}

td:last-child {
  border-right: none;
}

/* Disclaimer Styles */
.disclaimer {
  background-color: #f0f0f0;
  padding: 15px;
  margin: 15px;
  text-align: center;
  font-size: 14px;
}

/* Footer Styles */
footer {
  text-align: center;
  padding: 15px;
  color: #666;
  font-size: 14px;
}

/* Admin Styles */
.admin-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.admin-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 20px;
}

.admin-card h2 {
  margin-bottom: 20px;
  color: #333;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.btn {
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.btn-primary {
  background-color: #4a6ee0;
  color: white;
}

.btn-primary:hover {
  background-color: #3a5bbf;
}

.alert {
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 15px;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.admin-tabs {
  display: flex;
  margin-bottom: 20px;
}

.admin-tab {
  padding: 10px 20px;
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  cursor: pointer;
}

.admin-tab.active {
  background-color: white;
  border-bottom: none;
}

.admin-tab-content {
  display: none;
}

.admin-tab-content.active {
  display: block;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .icons-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .icon-text {
    font-size: 14px;
  }

  .icon-symbol {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .icons-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
  }

  .icon-text {
    font-size: 12px;
  }

  .icon-symbol {
    font-size: 30px;
    margin-bottom: 5px;
  }

  .icon-content {
    padding: 5px;
  }
}

/* Add these styles at the end of the file */

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px 0;
  border-top: 1px solid #ddd;
  margin-top: 20px;
}

.footer-nav a {
  color: #333;
  text-decoration: none;
  padding: 0 10px;
  border-right: 1px solid #999;
  font-size: 14px;
  line-height: 1;
}

.footer-nav a:last-child {
  border-right: none;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.copyright {
  text-align: center;
  padding: 10px 0;
  color: #666;
  font-size: 14px;
}

footer {
  background-color: #f5f5f5;
  padding: 10px 0;
  margin-top: 20px;
}

/* Add these styles for the content pages */
.content-container {
  padding: 20px;
  margin: 15px;
}

.content-section {
  background-color: white;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.content-section h1 {
  margin-bottom: 20px;
  color: #333;
}

.content-section h2 {
  margin: 20px 0 10px;
  color: #444;
}

.content-section p {
  margin-bottom: 15px;
  line-height: 1.6;
}

/* Contact form styles */
.contact-form {
  margin: 20px 0;
}

.contact-info {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}

/* Blog styles */
.blog-posts {
  margin-top: 20px;
}

.blog-post {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.blog-post:last-child {
  border-bottom: none;
}

.post-meta {
  color: #777;
  font-size: 14px;
  margin-bottom: 10px;
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  color: #4a6ee0;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

/* Add these styles at the end of your existing CSS file */

.seo-content {
  padding: 15px;
  margin: 15px;
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 4px;
}

.seo-content h2 {
  color: #333;
  margin-bottom: 15px;
  font-size: 22px;
}

.seo-content h3 {
  color: #444;
  margin: 20px 0 10px;
  font-size: 18px;
}

.seo-content p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #555;
}

.seo-content ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.seo-content li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.seo-content strong {
  font-weight: bold;
  color: #333;
}

.teer-title {
  font-weight: bold;
  font-size: 18px;
}

/* Favicon styles */
.favicon-link {
  display: inline-block;
  margin-right: 10px;
}

/* Social sharing image */
.social-image {
  display: none;
}

/* Responsive improvements */
@media (max-width: 768px) {
  .seo-content h2 {
    font-size: 20px;
  }

  .seo-content h3 {
    font-size: 16px;
  }

  .seo-content p,
  .seo-content li {
    font-size: 14px;
  }
}

/* Schema markup styles */
.schema-data {
  display: none;
}

/* Search box styles */
.search-box {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.search-input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.search-button {
  padding: 10px 15px;
  background-color: #40cbb5;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.search-button:hover {
  background-color: #35a999;
}
