@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Jersey 25", sans-serif;
  background-color: #1a1a1a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  background-image: url(./assets/bg.png);
  background-position: top 0 center;
  background-size: cover;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:hover {
  background: linear-gradient(135deg, #9c27b0, #2196f3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.header {
  padding: 1.5rem 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.header .logo-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: linear-gradient(135deg, #5a0469, #9a00b5);
  padding: 10px;
  border-radius: 20px;
}

.header .logo {
  color: #ffffff;
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: bold;
  background: linear-gradient(135deg, #9c27b0, #2196f3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.header .main-nav {
  margin-top: 1rem;
}

.header .main-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.header .main-nav ul li {
  margin: 0 1rem;
}

.header .main-nav ul li a {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.9rem;
  position: relative;
}

.header .main-nav ul li a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: linear-gradient(135deg, #9c27b0, #2196f3);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header .main-nav ul li a:hover:after {
  width: 100%;
}

.header .mobile-menu-toggle {
  display: none;
  cursor: pointer;
}

.header .mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  margin-bottom: 5px;
  position: relative;
  background: linear-gradient(135deg, #9c27b0, #2196f3);
  border-radius: 3px;
  z-index: 101;
  -webkit-transform-origin: 4px 0px;
          transform-origin: 4px 0px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header .mobile-menu-toggle span:last-child {
  margin-bottom: 0;
}

.hero {
  padding: 3rem 0;
  min-height: 70vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero .hero-content {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero .hero-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: center;
}

.hero .hero-image {
  max-width: 300px;
  margin: 0 auto;
  -webkit-animation: float 6s ease-in-out infinite;
          animation: float 6s ease-in-out infinite;
}

.hero .hero-image img {
  width: 100%;
}

.welcome {
  padding: 3rem 0;
  text-align: center;
}

.welcome .section-title {
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  background: linear-gradient(135deg, #9c27b0, #2196f3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
}

.welcome .welcome-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.info-cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.info-cards .card {
  background-color: #333333;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  padding: 2rem;
  margin: 1rem 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.info-cards .card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.info-cards .card .card-image {
  width: 150px;
  height: 150px;
  margin: 0 auto 1.5rem;
  -webkit-animation: float 5s ease-in-out infinite;
          animation: float 5s ease-in-out infinite;
}

.info-cards .card .card-image img {
  width: 100%;
}

.info-cards .card .card-title {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  text-transform: uppercase;
  background: linear-gradient(135deg, #9c27b0, #2196f3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.best-practices {
  padding: 4rem 0;
  text-align: center;
}

.best-practices .practices-image {
  width: 120px;
  margin: 0 auto 2rem;
  -webkit-animation: float 7s ease-in-out infinite;
          animation: float 7s ease-in-out infinite;
}

.best-practices .section-title {
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  background: linear-gradient(135deg, #9c27b0, #2196f3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
}

.best-practices .practices-text {
  max-width: 800px;
  margin: 0 auto;
}

.why-follow {
  padding: 3rem 0;
}

.why-follow .section-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  background: linear-gradient(135deg, #9c27b0, #2196f3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
}

.why-follow .follow-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.why-follow .follow-list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 300px;
}

.why-follow .follow-list li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.why-follow .follow-list li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: #9c27b0;
}

.why-follow .follow-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-animation: float 8s ease-in-out infinite;
          animation: float 8s ease-in-out infinite;
}

.expert-advice {
  padding: 4rem 0;
}

.expert-advice .section-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  background: linear-gradient(135deg, #9c27b0, #2196f3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
}

.expert-advice .advice-cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 1.5rem;
}

.expert-advice .advice-card {
  background-color: #333333;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  padding: 2rem;
  margin: 1rem 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, rgba(156, 39, 176, 0.1), rgba(33, 150, 243, 0.1));
}

.expert-advice .advice-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.expert-advice .advice-card .advice-title {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  text-transform: uppercase;
  background: linear-gradient(135deg, #9c27b0, #2196f3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.summary {
  padding: 3rem 0;
  text-align: center;
}

.summary .summary-title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #9c27b0, #2196f3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.summary .summary-text {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.footer {
  padding: 2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}

.footer .copyright {
  margin-bottom: 1rem;
}

.footer .footer-links a {
  margin-left: 1.5rem;
  font-size: 0.9rem;
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(51, 51, 51, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 1.5rem;
  z-index: 1000;
  -webkit-box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
          box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}

.cookie-popup.show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.cookie-popup .cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cookie-popup .cookie-content p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 2rem;
  min-width: 300px;
  margin-bottom: 1rem;
}

.cookie-popup .cookie-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.cookie-popup .cookie-buttons .btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-family: "Jersey 25", sans-serif;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cookie-popup .cookie-buttons .btn.accept-btn {
  background: linear-gradient(135deg, #9c27b0, #2196f3);
  color: #ffffff;
}

.cookie-popup .cookie-buttons .btn.accept-btn:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 5px 15px rgba(156, 39, 176, 0.3);
          box-shadow: 0 5px 15px rgba(156, 39, 176, 0.3);
}

.cookie-popup .cookie-buttons .btn.reject-btn {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.cookie-popup .cookie-buttons .btn.reject-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

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

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

.privacy {
  padding-top: 100px;
  padding-bottom: 100px;
}

.privacy h1 {
  font-size: 40px;
  margin-bottom: 24px;
}

@media (max-width: 992px) {
  .hero {
    min-height: 60vh;
  }
  .hero .hero-title {
    font-size: 2.2rem;
  }
  .info-cards {
    -ms-grid-columns: (minmax(280px, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .header .mobile-menu-toggle {
    display: block;
  }
  .header .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: rgba(26, 26, 26, 0.95);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    padding: 6rem 2rem 2rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 99;
  }
  .header .main-nav.active {
    right: 0;
  }
  .header .main-nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .header .main-nav ul li {
    margin: 1rem 0;
    width: 100%;
  }
  .header .main-nav ul li a {
    display: block;
    font-size: 1.2rem;
    padding: 0.5rem 0;
  }
  .hero .hero-title {
    font-size: 1.8rem;
  }
  .hero .hero-image {
    max-width: 250px;
  }
  .section-title, .summary-title {
    font-size: 1.6rem;
  }
  .follow-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .follow-content .follow-list {
    margin-bottom: 2rem;
  }
  .footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .footer .footer-links {
    margin-top: 1rem;
  }
  .footer .footer-links a {
    margin: 0 0.75rem;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1.5rem;
  }
  .hero {
    min-height: 50vh;
  }
  .hero .hero-title {
    font-size: 1.5rem;
  }
  .section-title, .summary-title {
    font-size: 1.4rem;
  }
  .card-title, .advice-title {
    font-size: 1.2rem;
  }
  .welcome-text, .practices-text, .summary-text {
    font-size: 1rem;
  }
}
/*# sourceMappingURL=style.css.map */