
/*===================================== 
FOOTER AREA
======================================*/
    :root {
      --mpx-bg0: #06080c;
      --mpx-bg1: #090d14;
      --mpx-bg2: #0b1220;
      --mpx-card: #0b1018;
      --mpx-border: rgba(255,255,255,.08);
      --mpx-gold: #FFC92D;
      --mpx-gold2: #FFDD66;
      --mpx-blue: #1D6CFF;
      --mpx-blue2: #2CA8FF;
      --mpx-text: #EAF0FF;
      --mpx-muted: rgba(234,240,255,.72);
      --mpx-glowBlue: 0 0 0 1px rgba(29,108,255,.25), 0 0 26px rgba(29,108,255,.22);
      --mpx-glowGold: 0 0 0 1px rgba(255,201,45,.25), 0 0 18px rgba(255,201,45,.18);
      --mpx-font: "Poppins", system-ui, -apple-system, sans-serif;
      --mpx-ease: cubic-bezier(.2,.9,.2,1);
    }

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

    body {
      font-family: var(--mpx-font);
      background-color: #090d14;
      color: var(--mpx-text);
      margin: 0;
    }

    /* Newsletter CTA Section */
    .mpx-newsletter-section {
      background: linear-gradient(135deg, rgba(29,108,255,.12), rgba(255,201,45,.08));
      border: 1px solid rgba(255,255,255,.10);
      border-radius: 24px;
      padding: 30px 40px;
      margin: 0 auto 40px;
      max-width: 1200px; 
      position: relative;
      overflow: hidden;
      animation: fadeIn 0.8s var(--mpx-ease);
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .mpx-newsletter-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(29,108,255,.15), transparent 70%);
      animation: rotate 20s linear infinite;
      pointer-events: none;
    }

    @keyframes rotate {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    .mpx-newsletter-content {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 30px;
      align-items: center;
    }

    .mpx-newsletter-text h4 {
      font-size: clamp(20px, 2.5vw, 28px);
      font-weight: 900;
      text-transform: uppercase;
      color: rgba(255,255,255,.95);
      margin-bottom: 8px;
      letter-spacing: 0.02em;
    }

    .mpx-newsletter-text p {
      font-size: 13px;
      color: rgba(255,255,255,.7);
      line-height: 1.6;
    }

    .mpx-newsletter-form {
      display: flex;
      gap: 12px;
    }

    .mpx-newsletter-form input {
      flex: 1;
      padding: 14px 18px;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,.15);
      background: rgba(255,255,255,.05);
      color: rgba(255,255,255,.9);
      font-size: 13px;
      font-family: var(--mpx-font);
      transition: all 0.3s var(--mpx-ease);
      outline: none;
    }

    .mpx-newsletter-form input::placeholder {
      color: rgba(255,255,255,.5);
      text-transform: uppercase;
      font-size: 11px;
      letter-spacing: 0.08em;
    }

    .mpx-newsletter-form input:focus {
      border-color: rgba(29,108,255,.4);
      background: rgba(29,108,255,.08);
      box-shadow: var(--mpx-glowBlue);
    }

    .mpx-newsletter-btn {
      padding: 14px 24px;
      border-radius: 14px;
      border: 0;
      background: linear-gradient(135deg, var(--mpx-gold), var(--mpx-gold2));
      color: #0b1220;
      font-weight: 900;
      font-size: 12px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.3s var(--mpx-ease);
      box-shadow: var(--mpx-glowGold);
      display: flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
    }

    .mpx-newsletter-btn:hover {
      transform: translateY(-3px);
      box-shadow: var(--mpx-glowGold), 0 10px 30px rgba(255,201,45,.3);
    }

    .mpx-newsletter-btn:active {
      transform: translateY(-1px);
    }

    /* Main Footer */
    .mpx-footer {
      background: linear-gradient(180deg, var(--mpx-bg1), var(--mpx-bg0));
      padding: 80px 0 0;
      position: relative;
      border-top: 1px solid rgba(255,255,255,.06);
    }

    .mpx-footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--mpx-gold), transparent);
      box-shadow: var(--mpx-glowGold);
    }

    .mpx-footer-container {
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .mpx-footer-container-newletter {
	  max-width: 100%;
      margin: 0 auto;
      padding: 0px 20px;
	  background-color: #06090D;
    }

    .mpx-footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
      gap: 60px;
      margin-bottom: 60px;
    }

    /* Footer Column */
    .mpx-footer-col h4 {
      font-size: 16px;
      font-weight: 900;
      text-transform: uppercase;
      color: var(--mpx-gold);
      margin-bottom: 24px;
      letter-spacing: 0.08em;
      position: relative;
      padding-bottom: 12px;
    }

    .mpx-footer-col h4::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 2px;
      background: linear-gradient(90deg, var(--mpx-gold), transparent);
    }

    /* About Section */
    .mpx-footer-logo {
      margin-bottom: 20px;
    }

    .mpx-footer-logo img {
      max-width: 200px;
      height: auto;
    }

    .mpx-footer-about {
      font-size: 13px;
      line-height: 1.8;
      color: rgba(255,255,255,.65);
      margin-bottom: 24px;
    }

    .mpx-social-links {
      display: flex;
      gap: 12px;
      list-style: none;
    }

    .mpx-social-links a {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.03);
      color: rgba(255,255,255,.8);
      display: grid;
      place-items: center;
      text-decoration: none;
      font-size: 18px;
      transition: all 0.3s var(--mpx-ease);
    }

    .mpx-social-links a:hover {
      transform: translateY(-4px);
      border-color: rgba(29,108,255,.4);
      background: rgba(29,108,255,.1);
      box-shadow: var(--mpx-glowBlue);
      color: white;
    }

    /* Contact Info */
    .mpx-contact-list {
      list-style: none;
    }

    .mpx-contact-list li {
      display: flex;
      gap: 12px;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255,255,255,.05);
      font-size: 13px;
      color: rgba(255,255,255,.7);
      line-height: 1.6;
    }

    .mpx-contact-list li:last-child {
      border-bottom: 0;
    }

    .mpx-contact-list i {
      color: var(--mpx-gold);
      font-size: 16px;
      margin-top: 2px;
    }

    /* Links */
    .mpx-footer-links {
      list-style: none;
    }

    .mpx-footer-links li {
      margin-bottom: 14px;
      padding-bottom: 14px;
      border-bottom: 1px dashed rgba(255,255,255,.12);
    }

    .mpx-footer-links li:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }

    .mpx-footer-links a {
      color: rgba(255,255,255,.7);
      text-decoration: none;
      font-size: 13px;
      transition: all 0.3s var(--mpx-ease);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .mpx-footer-links a::before {
      content: '→';
      color: var(--mpx-gold);
      font-weight: 700;
      opacity: 0;
      transform: translateX(-10px);
      transition: all 0.3s var(--mpx-ease);
    }

    .mpx-footer-links a:hover {
      color: var(--mpx-gold);
      padding-left: 8px;
    }

    .mpx-footer-links a:hover::before {
      opacity: 1;
      transform: translateX(0);
    }

    /* Next Event Box */
    .mpx-event-box {
      background: linear-gradient(135deg, rgba(29,108,255,.08), rgba(255,201,45,.05));
      border: 1px solid rgba(255,255,255,.10);
      border-radius: 16px;
      padding: 20px;
      transition: all 0.3s var(--mpx-ease);
    }

    .mpx-event-box:hover {
      transform: translateY(-4px);
      border-color: rgba(255,201,45,.25);
      box-shadow: var(--mpx-glowGold);
    }

    .mpx-event-date {
      display: flex;
      gap: 16px;
      align-items: center;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(255,255,255,.08);
      margin-bottom: 16px;
    }

    .mpx-date-block {
      width: 70px;
      height: 70px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--mpx-gold), var(--mpx-gold2));
      box-shadow: var(--mpx-glowGold);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .mpx-date-day {
      font-size: 16px;
      font-weight: 900;
      line-height: 1;
      color: #0b1220;
    }

    .mpx-date-month {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      color: #0b1220;
      opacity: 0.8;
      margin-top: 2px;
    }

    .mpx-event-info h5 {
      font-size: 14px;
      font-weight: 900;
      text-transform: uppercase;
      color: rgba(255,255,255,.9);
      margin-bottom: 4px;
    }

    .mpx-event-info p {
      font-size: 12px;
      color: rgba(255,255,255,.6);
      line-height: 1.5;
    }

    .mpx-event-meta {
      display: flex;
      align-items: center;
      gap: 16px;
      font-size: 11px;
      color: rgba(255,255,255,.5);
    }

    .mpx-event-meta a { 
      color: #F0F0F0;
    }
    .mpx-event-meta:hover a { 
      color: #FFDD00;
    }


    .mpx-event-meta i {
      color: var(--mpx-gold);
    }

    /* Footer Bottom */
    .mpx-footer-bottom {
      border-top: 1px solid rgba(255,255,255,.06);
      padding: 30px 0;
      text-align: center;
    }

    .mpx-copyright {
      font-size: 12px;
      color: rgba(255,255,255,.5);
      line-height: 1.6;
    }

    .mpx-copyright a {
      color: var(--mpx-gold);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .mpx-copyright a:hover {
      color: var(--mpx-gold2);
      text-shadow: var(--mpx-glowGold);
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .mpx-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
      }

      .mpx-newsletter-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
      }
    }

    @media (max-width: 640px) {
      .mpx-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .mpx-newsletter-section {
        padding: 40px 24px;
      }

      .mpx-newsletter-form {
        flex-direction: column;
      }

      .mpx-newsletter-btn {
        justify-content: center;
      }

      .mpx-social-links {
        justify-content: center;
      }
    }
 
