
/* ========== RESET ========== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ========== LAYOUT ========== */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #0f0000;
  color: #f0f0f0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}

/* ========== HEADER ========== */
.site-header {
  background-color: #180000;
  padding: 1rem 0;
  border-bottom: 1px solid #ffb900;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}

.header-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-logo img {
  height: 80px;
}

.nav-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  margin-left: auto;
}

.nav-links a {
  text-align: center;
}

.header-button {
  background: transparent;
  border: 1px solid #ffb900;
  color: #ffb900;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-button:hover {
  background-color: #ffb900;
  color: #0f0000;
}

.header-button i {
  font-size: 1rem;
}

/* ========== MOBILE MENU ICON (Hamburger) ========== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 30px;
  height: 22px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 4px;
  width: 100%;
  background-color: #ffb900;
  border-radius: 2px;
}

/* ========== MAIN ========== */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.logo {
  width: 90%;
  max-width: 1000px;
  aspect-ratio: 1000 / 667;
  height: auto;
  margin: 2rem auto;
  display: block;
}

@media (max-width: 768px) {
  .logo {
    max-width: 90%;
    height: auto;
    width: 100%;
  }
}

/* ========== HEADER BASE ========== */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-logo img {
    display: block;
    height: auto;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #ffb900;
    border-radius: 2px;
}

.nav-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Default (mobile-first) */
.hero-image-mobile-preview {
    width: 50%;        /* parent takes full width of container */
    text-align: center; /* centers inline-block children if needed */
}

.hero-app-image {
    width: 100%;
    max-width: 440px;
    height: auto;
    display: block;
    margin: 0 auto;

    /* smooth shadow */
    filter: drop-shadow(0 6px 16px rgba(253, 184, 0, 0.3));

    /* optional gentle float animation */
    animation: float 3s ease-in-out infinite;
}

@media (min-width: 769px) {
    .hero-app-image {
        width: 50%;
        max-width: 780px;
    }
}

@keyframes float {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}



/* ========== RESPONSIVE (Mobile < 768px) ========== */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .header-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .header-logo {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .header-logo img {
        max-width: 100%;
        height: auto;
    }

    .menu-toggle {
        display: flex;
        margin: 0.5rem auto 0 auto;
        position: static;
        transform: none;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        display: none;
        padding-top: 1rem;
    }

    .nav-links.open {
        display: flex !important;
    }

    .nav-links a {
        justify-content: center;
        width: 100%;
    }
}

/* ========== TYPOGRAPHY ========== */
h1,
.form-title {
  color: #ffb900;
  text-shadow: 0 0 6px #000000;
  margin-bottom: 1.2rem;
}

/* ========== MESSAGES ========== */
p#result,
p#message {
  margin-top: 1rem;
  font-size: 1rem;
  opacity: 0.9;
}

/* ========== FORMS ========== */
form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

input {
  width: 250px;
  max-width: 90%;
  background: #0f0000;
  color: #ffb900;
  border: 1px solid #48000084;
  padding: 0.6rem 1rem;
  font-size: 1rem;
  border-radius: 4px;
  outline: none;
}

.spacer {
  height: 1rem;
}

button {
  background-color: #ffb900;
  color: #0f0000;
  font-weight: bold;
  padding: 0.6rem 1rem;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  box-shadow: 0 0 10px #00000087;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background-color: #ffaa00;
}

/* ========== FOOTER ========== */
footer {
  background-color: #0f0000;
  border-top: 1px solid #48000084;
  padding: 1rem 0;
  font-size: 0.9rem;
  width: 100%;
  color: rgba(255, 185, 0, 0.5);
  text-align: center;
}

.site-footer .social-links {
  margin-top: 10px;
}

.site-footer .social-links a {
  margin: 0 10px;
  color: rgba(255, 185, 0, 0.5);
  text-decoration: none;
  font-size: 1.5em;
  transition: opacity 0.3s ease;
}

.site-footer .social-links a:hover {
  opacity: 0.7;
}

/* ========== SLOGAN ========== */
.slogan {
  width: 100%;
  max-width: 1400px;
  margin: 1rem auto 0 auto;
  padding: 1rem 2rem;
  color: #ffb900;
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: center;

  /* Fix for layout shift */
  min-height: 160px; /* Adjust this value based on your content height */
}

.slogan p {
  margin-bottom: 1rem;
}

.slogan-description {
  font-family: 'Georgia', 'Garamond', serif;
  font-style: italic;
  opacity: 0.9;
}

/* ========== ERROR ========== */
#error-message {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  height: 100vh;
  width: 100%;
  background-color: #0f0000;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffb900;
  padding: 2rem;
  text-align: center;
}

#error-message h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

#error-message p {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 600px;
}

/* ========== SVG ========== */

.page-hero-icon {
    display: block;
    margin: 0 auto 2rem auto;
    max-width: 200px;
    width: 40%;
    height: auto;
    fill: #ffb900;

    /* subtle shake animation */
    animation: float 3s ease-in-out infinite;
}

@keyframes shake {
    from {
        transform: translateX(-2px);
    }
    to {
        transform: translateX(2px);
    }
}

/* ========== PAGE IMAGE ========== */
.page-image {
    max-width: 60%;
    height: auto;
    border-radius: 20px;
    display: block;
    margin: 0 auto;

    /* subtle shake animation */
    animation: float 3s ease-in-out infinite;
}

@keyframes shake {
    from {
        transform: translateX(-2px);
    }
    to {
        transform: translateX(2px);
    }
}


/* ========== LEADERBOARD ========== */
.leaderboard-section {
  width: 100%;
  max-width: 1400px;
  padding: 2rem 1rem;
  margin: 1rem auto 0 auto;
  background-color: #0f0000;
}

.leaderboard-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  width: 100%;
  max-width: 100%;
  padding: 0;
  box-sizing: border-box;
}

.tab-button {
  flex: 1 1 120px;
  background-color: rgba(255, 185, 0, 0.25);
  border: 1px solid #ffb900;
  color: #ffb900;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.tab-button.active,
.tab-button:hover {
  background-color: #ffb900;
  color: #000;
}

.leaderboard-content ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.leaderboard-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 2rem;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  gap: 1rem;
}

.leaderboard-left {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.leaderboard-left .rank {
  display: inline-block;
  width: 2.5rem;
  text-align: left;
  font-weight: bold;
}

.leaderboard-left .fa-medal,
.leaderboard-left .fa-award {
  width: 1.5rem;
  text-align: center;
}

.leaderboard-left .fa-user {
  width: 1.5rem;
  text-align: center;
}

.leaderboard-left .username {
  min-width: 6rem;
  text-align: left;
}

.leaderboard-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: #ffb900;
  min-width: 220px;
  gap: 0.6rem;
  text-align: right;
}

.leaderboard-right .fa-coins {
  width: 1.5rem;
  text-align: center;
}

.coin-amount {
  display: inline-block;
  min-width: 10rem;
  text-align: right;
}

.leaderboard-gold {
  color: #ffb900;
  font-size: 1.1rem;
}

.leaderboard-content li:nth-child(even) {
  background-color: #0f0000;
}

.leaderboard-content li:nth-child(odd) {
  background-color: #180000;
}

.gold {
  color: gold;
}

.silver {
  color: silver;
}

.bronze {
  color: #cd7f32;
}

.hidden {
  display: none;
}

/* ========== MOBILE OPTIMIZATION ========== */
@media (max-width: 768px) {
  .leaderboard-list li {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    gap: 0.5rem;
    text-align: center;
  }

  .leaderboard-left,
  .leaderboard-right {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }

  .leaderboard-left .rank,
  .leaderboard-left .fa-medal,
  .leaderboard-left .fa-award,
  .leaderboard-left .fa-user,
  .leaderboard-left .username {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: auto;
    line-height: 1;
  }

  .leaderboard-left .rank {
    width: auto;
    font-weight: bold;
  }

  .leaderboard-left .fa-medal,
  .leaderboard-left .fa-award,
  .leaderboard-left .fa-user {
    font-size: 1rem;
  }

  .leaderboard-left .username {
    font-weight: 500;
  }

  .coin-amount {
    font-weight: bold;
    text-align: center;
    min-width: auto;
  }

  .leaderboard-right .fa-coins {
    font-size: 1rem;
    margin-left: 0.3rem;
  }

  .tab-button {
    font-size: 0.9rem;
    padding: 0.5rem 0.7rem;
    gap: 0.4rem;
  }

  .leaderboard-content ul {
    padding: 0;
    max-width: 100%;
  }
}


/* ========== INFO PAGE STYLES ========== */
.info-section {
  width: 100%;
  max-width: 1600px;
  margin: 2rem auto;
  padding: 1rem;
  background-color: #0f0000;
  box-sizing: border-box;
}

/* Filter Tabs - full width, like leaderboard-tabs
.info-filters {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  width: 100%;
  max-width: 100%;
  padding: 0;
  box-sizing: border-box;
}

.info-tab {
  flex: 1 1 150px;
  background-color: #ffb900;
  color: #0f0000;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  padding: 0.6rem 1.4rem;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 1rem;
  text-align: center;
}

.info-tab:hover,
.info-tab.active {
  background-color: #ffaa00;
}*/

/* Cards Grid Layout - 3 items per row */
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  box-sizing: border-box;
}

/* Each Info Card */
.info-card {
  background-color: #180000;
  border: 1px solid #ffb90044;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 0 0 transparent;
  transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px #ffb90033;
}

.info-card h2 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #ffb900;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #f0f0f0;
  margin-bottom: 1rem;
}

/* Read More Button (inside each card) */
.info-link-button {
  background-color: #ffb900;
  color: #0f0000;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: none;
  cursor: pointer;
  width: fit-content;
  align-self: flex-start;
}

.info-link-button:hover {
  background-color: #ffaa00;
}

/* Responsive: Stack cards on small screens */
@media (max-width: 1024px) {
  .info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .info-cards {
    grid-template-columns: 1fr;
  }
}

.rank-section {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

.rank-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* Desktop default */
  gap: 1.5rem;
  margin-top: 2rem;
  width: 100%;
  box-sizing: border-box;
}

/* Large tablets */
@media (max-width: 1024px) {
  .rank-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Small tablets and large phones */
@media (max-width: 768px) {
  .rank-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Phones */
@media (max-width: 480px) {
  .rank-cards {
    grid-template-columns: 1fr;
  }
}

.rank-card {
  background-color: rgba(255, 185, 0, 0.25);
  border: 1px solid #ffb900;
  border-radius: 12px;
  padding: 2rem 1rem;
  text-align: center;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.rank-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 10px rgba(255, 185, 0, 0.4);
}

.rank-card .rank-icon {
  font-size: 2rem;
  color: #ffb900;
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.rank-card .rank-icon span {
  font-size: 1rem;
  font-weight: 600;
  color: #ffb900;
}

.rank-card h2 {
  font-size: 1.2rem;
  color: #ffb900;
  margin: 0;
  word-break: break-word;
}

.achievement-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.achievement-tab {
  background-color: rgba(255, 185, 0, 0.25);
  border: 1px solid #ffb900;
  color: #ffb900;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.achievement-tab.active,
.achievement-tab:hover {
  background-color: #ffb900;
  color: #000;
}

.achievement-section {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  box-sizing: border-box;
}

.achievement-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.achievement-card {
  background-color: rgba(255, 185, 0, 0.25);
  border: 1px solid #ffb900;
  border-radius: 10px;
  padding: 1.5rem 1rem;
  text-align: center;
  color: #ffb900;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  min-height: 180px;
}

.achievement-card:hover {
  transform: translateY(-5px);
}

.achievement-card i {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.achievement-card .card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.achievement-card .card-value {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ========== INDEX PAGE ========== */
/* ========== GLOBAL ========== */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========== HERO SECTION ========== */
.hero-section {
    width: 100%;
    color: #fff;
    padding: 60px 20px;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1.5;
    min-width: 280px;
    padding-right: 20px;
    text-align: left;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffb900;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    text-align: left;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-buttons a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #ffb900;
    color: #0f0000;
    text-decoration: none;
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 700;
    transition: background-color 0.3s, color 0.3s;
}

.hero-buttons a:hover {
    background-color: #b80;
    color: #0f0000;
}

.hero-image {
    flex: 1;
    min-width: 280px;
    text-align: center;
    margin-top: 30px;
}

.hero-image img {
    max-width: 60%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 0 20px 5px rgba(255, 215, 0, 0.3);
}

/* ========== FEATURES SECTION ========== */
.features-section {
    width: 80%;
    background-color: #180000;
    padding: 60px 20px;
    border-radius: 40px;
    margin: 0 auto;
}

.features-inner {
    background-color: #180000;
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 30px;
    align-items: center;
    justify-items: center;
    position: relative;
}

.feature-card {
    background-color: #180000;
    text-align: center;
    max-width: 300px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-card .icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.feature-card h3 {
    color: #ffb900;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.feature-card p {
    color: #f0f0f0;
}

/* Vertical separators only on desktop */
@media (min-width: 1025px) {
    .features-inner::before,
    .features-inner::after {
        content: "";
        position: absolute;
        top: 20%;
        bottom: 20%;
        width: 4px; /* slightly thicker so rounding is visible */
        background-color: #ffb900;
        border-radius: 10px; /* makes the separator rounded */
    }

    /* First separator (between card 1 and 2) */
    .features-inner::before {
        left: 33.33%;
        transform: translateX(-50%);
    }

    /* Second separator (between card 2 and 3) */
    .features-inner::after {
        left: 66.66%;
        transform: translateX(-50%);
    }
}

/* Responsive: tablet */
@media (max-width: 1024px) {
    .features-section {
        width: 95%;
        padding: 2rem 1rem;
        border-radius: 20px;
    }

    .features-inner {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        padding: 20px;
        border-radius: 10px;
        gap: 40px;
    }

    .features-inner::before,
    .features-inner::after {
        display: none; /* no separators on tablet */
    }
}

/* Responsive: mobile */
@media (max-width: 600px) {
    .features-inner {
        grid-template-columns: 1fr;
    }

    .features-inner::before,
    .features-inner::after {
        display: none; /* no separators on mobile */
    }
}

/* ========== TESTIMONIAL SECTION ========== */
.testimonial-block {
    width: 100%;
    padding: 60px 0;
    background-color: transparent;
}

.testimonial-block.dark {
    background-color: #180000;
    width: 100vw;
    position: relative;
}

.testimonial-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.testimonial-image {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.testimonial-image img {
    max-width: 50%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;

    /* optional subtle float animation */
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}


.testimonial-text {
    flex: 1.5;
    min-width: 280px;
    text-align: center;

}

.testimonial-block h2 {
    color: #ffb900;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.testimonial-block p {
    color: #f0f0f0;
    font-size: 1rem;
    line-height: 1.6;
}

.testimonial-block.dark h2 {
    color: #ffb900;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.testimonial-block.dark p {
    color: #f0f0f0;
    font-size: 1rem;
    line-height: 1.6;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .testimonial-text {
        order: 1;
    }

    .testimonial-image {
        order: 2;
    }
}

@media (max-width: 768px) {
    .hero-inner,
    .testimonial-inner {
        flex-direction: column;
    }

    .hero-text {
        text-align: center;
        padding-right: 0;
    }

    .hero-text p {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        order: -1;
        margin-bottom: 20px;
    }

    .hero-image img,
    .testimonial-image img {
        max-width: 280px;
        width: 50%;
        height: auto;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image-mobile-preview {
        max-width: 280px;
        width: 70%;
        height: auto;
        display: block;
        margin: 0 auto;
    }

}


/* ========== INDEX ENDS HERE ========== */

.about-image {
    max-width: 40%;
    height: auto;
    border-radius: 20px;
    display: block;
    margin: 0 auto;
    animation: float 3s ease-in-out infinite;
}

.about-slogan {
    width: 100%;
    max-width: 1400px;
    margin: 1rem auto 0 auto;
    padding: 1rem 2rem;
    color: #ffb900;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: center;
    min-height: 80px;
}