   @import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap');

   /* Reset and Base Styles */
   * {
       margin: 0;
       padding: 0;
       box-sizing: border-box;
   }

   html,
   body {
       font-family: 'Luckiest Guy', cursive;
       height: 100%;
       width: 100%;
       overflow: hidden;
       position: relative;
       background-color: rgb(54, 54, 88)
   }

   button {
       background: none;
       border: none;
       cursor: pointer;
       font-family: inherit;
   }

   /* Background */
   #background {
       display: block;
       position: absolute;
       top: 0;
       left: 0;
       width: 100vw;
       height: 100vh;
       background-image: url('images/bg2.png');
       background-size: cover;
       background-repeat: no-repeat;
       background-position: center;
       aspect-ratio: 16/9;
   }

   /* Navigation Bar */
   nav {
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       padding: 1rem;
       display: flex;
       justify-content: space-between;
       align-items: center;
       color: white;
       font-size: 1.5rem;
       z-index: 20;
   }

   .logo {
       font-size: 1.75rem;
       font-weight: bold;
   }

   /* Desktop Menu Links */
   #nav-links {
       display: none;
   }

   @media (min-width: 640px) {
       #nav-links {
           display: flex;
           gap: 1rem;
       }

       #nav-links button {
           color: white;
           font-size: 1.75rem;
       }

       #nav-links button:hover {
           text-decoration: underline;
       }
   }

   /* Right Section (Audio & Hamburger) */
   .nav-controls {
       display: flex;
       align-items: center;
   }

   /* Audio Toggle Icon */
   #audio-toggle {
       color: white;
       font-size: 1.875rem;
       cursor: pointer;
       user-select: none;
   }

   @media (max-width: 639px) {
       #audio-toggle {
           font-size: 2.25rem;
       }
   }

   /* Hamburger Menu Button */
   .hamburger {
       margin-left: 1rem;
   }

   @media (min-width: 640px) {
       .hamburger {
           display: none;
       }
   }

   .hamburger button {
       color: white;
       font-size: 3rem;
   }

   /* Mobile Dropdown Menu */
   #nav-dropdown {
       position: fixed;
       top: 0;
       left: 0;
       width: 100%;
       #height: 100%;
       background-color: rgba(14, 24, 73, 0.95);
       color: white;
       z-index: 30;
       display: flex;
       flex-direction: column;
       align-items: center;
       justify-content: flex-start;
       transition: opacity 0.3s ease;
   }

   #nav-dropdown.hidden {
       display: none;
       opacity: 0;
   }

   #nav-dropdown:not(.hidden) {
       display: flex;
       opacity: 0.95;

       padding: 60px 0 60px 0;
   }

   #nav-dropdown button {
       width: 100%;
       text-align: center;
       #padding: 0.75rem 0;
       color: white;
       font-size: 1.75rem;
       letter-spacing: 1px;
       text-transform: uppercase;
   }

   #nav-dropdown button:hover {
       text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
   }

   /* Space between menu items */
   #nav-dropdown .menu-items {
       display: flex;
       flex-direction: column;
       align-items: center;
       gap: 1.5rem;
       margin-top: 2rem;
   }

   /* Close button for dropdown */
   .xit {
       margin-right: 30px;
       position: absolute;
       top: 1rem;
       right: 1.5rem;
       font-size: 2rem;
       color: white;
       font-weight: bold;
       text-align: right !important;
   }

   @media (min-width: 640px) {
       #nav-dropdown {
           display: none !important;
       }
   }

   /* Modal Styles */
   .modal {
       position: absolute;
       top: 25%;
       left: 50%;
       transform: translateX(-50%);
       background-color: rgba(255, 255, 255, 0.9);
       color: black;
       padding: 1.5rem;
       border-radius: 0.75rem;
       box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
       width: 66.666667%;
       max-width: 36rem;
       z-index: 30;
       backdrop-filter: blur(6px);
   }

   .modal-header {
       display: flex;
       justify-content: space-between;
       align-items: center;
       margin-bottom: 1rem;
   }

   .modal-title {
       font-size: 1.875rem;
   }

   .modal-close {
       font-size: 1.25rem;
       color: rgb(239, 68, 68);
   }

   .modal-content {
       font-size: 1.125rem;
   }

   .hidden {
       display: none;
   }

   /* Pyro Character */
   #pyro {
       position: absolute;
       z-index: 10;
       pointer-events: none;
   }

   #pyro img {
       width: 300px;
       height: auto;
   }

   /* Pyro Logo */
   #pyro-logo {
       position: absolute;
       background-image: url(images/pyrologo.png);
       background-size: cover;
       background-repeat: no-repeat;
       background-position: center center;
       width: 60vw;
       max-width: 500px;
       aspect-ratio: 222 / 79;
       top: 50%;
       left: 50%;
       transform: translate(-50%, -50%);
   }

   /* Pyro Spray */
   #pyro-spray {
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       pointer-events: none;
       z-index: 0;
   }

   /* Animation for floating effects */
   @keyframes floaty {

       0%,
       100% {
           transform: translateY(0);
       }

       50% {
           transform: translateY(-10px);
       }
   }

   .animate-float {
       animation: floaty 3s ease-in-out infinite;
   }

   /* Spray Ball Animation */
   .spray-ball {
       position: absolute;
       width: 10px;
       height: 10px;
       margin-right: 50px;
       border-radius: 9999px;
       opacity: 0.9;
       animation: swirlExpandFade 1.2s ease-out forwards;
       box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
       pointer-events: none;
   }

   @keyframes swirlExpandFade {
       0% {
           transform: scale(0.5) translate(0, 0);
           opacity: 0.9;
       }

       100% {
           transform: scale(2.5) translate(var(--tx, 0px), var(--ty, 0px));
           opacity: 0;
       }
   }





































   /* Partnership Form Specific Styles - Prefixed to avoid conflicts */
   .pyro-partnership-form {
       font-family: 'Nunito', sans-serif;
       background: white;
       border-radius: 8px;
       height: 480px;
       display: flex;
       flex-direction: column;
       box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
       position: relative;
   }

   .pyro-form-header {
       padding: 10px 15px;
       border-bottom: 1px solid #eee;
       flex-shrink: 0;
   }

   .pyro-form-content {
       padding: 10px 15px;
       overflow-y: auto;
       flex: 1;
       scrollbar-width: none;
       -ms-overflow-style: none;
   }

   .pyro-form-content::-webkit-scrollbar {
       display: none;
   }

   .pyro-form-footer {
       padding: 10px 15px;
       border-top: 1px solid #eee;
       flex-shrink: 0;
   }

   .pyro-form-group {
       margin-bottom: 20px;
   }

   .pyro-form-label {
       display: block;
       margin-bottom: 5px;
       font-weight: 600;
       color: #333;
       font-family: 'Nunito', sans-serif;
   }

   .pyro-form-input,
   .pyro-form-select,
   .pyro-form-textarea {
       width: 100%;
       padding: 12px;
       border: 2px solid #ddd;
       border-radius: 8px;
       box-sizing: border-box;
       font-family: 'Nunito', sans-serif;
       font-size: 14px;
       transition: border-color 0.3s ease;
   }

   .pyro-form-input:focus,
   .pyro-form-select:focus,
   .pyro-form-textarea:focus {
       outline: none;
       border-color: #ff6b35;
   }

   .pyro-form-select {
       height: 46px;
       background-color: white;
       cursor: pointer;
   }

   .pyro-form-textarea {
       height: 100px;
       resize: vertical;
       font-family: 'Nunito', sans-serif;
   }

   .pyro-other-input {
       margin-top: 10px;
       width: 100%;
   }

   .pyro-submit-btn {
       background: linear-gradient(135deg, #ff6b35, #f7931e);
       color: white;
       padding: 15px 30px;
       border: none;
       border-radius: 25px;
       font-size: 16px;
       font-weight: 700;
       cursor: pointer;
       transition: transform 0.2s, box-shadow 0.2s;
       width: 100%;
       font-family: 'Nunito', sans-serif;
   }

   .pyro-submit-btn:hover {
       transform: translateY(-2px);
       box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
   }

   .pyro-submit-btn:disabled {
       opacity: 0.6;
       cursor: not-allowed;
       transform: none;
   }

   .pyro-required {
       color: #e74c3c;
   }

   .pyro-form-description {
       margin: 0;
       color: #666;
       line-height: 1.5;
       font-family: 'Nunito', sans-serif;
   }

   .pyro-overlay-message {
       position: absolute;
       top: 20px;
       right: 20px;
       background: #ff4757;
       color: white;
       padding: 12px 20px;
       border-radius: 8px;
       font-size: 14px;
       font-weight: 600;
       box-shadow: 0 4px 12px rgba(255, 71, 87, 0.3);
       z-index: 1000;
       opacity: 0;
       transform: translateX(100%);
       transition: all 0.3s ease;
   }

   .pyro-overlay-message.success {
       background: #2ed573;
       box-shadow: 0 4px 12px rgba(46, 213, 115, 0.3);
   }

   .pyro-overlay-message.show {
       opacity: 1;
       transform: translateX(0);
   }



   .buttont {
       display: inline-block;
       text-align: center;
       vertical-align: middle;
       font: normal normal bold 21px arial;
       text-decoration: none;
       transition: transform .7s ease-in-out;
   }

   .buttont:hover {
       transform: rotate(360deg);
   }

   .tg {
       padding: 15px 26px;
       background: url(https://go.pyro.io/static/images/tg.svg) center/70% no-repeat;

   }

   .x {
       background: url(https://go.pyro.io/static/images/x.svg) center/70% no-repeat;
       padding: 20px 32px;
       margin-left: -15px;
   }


   /* Social media buttons in mobile menu */
   .mobile-social-section {
       display: flex;
       gap: 2rem;
       margin-top: 1rem;
       align-items: center;
   }

   .mobile-social-btn {
       font-size: 2rem;
       padding: 1rem;
       border-radius: 50%;
       color: white;
       text-decoration: none;
       transition: transform 0.2s, background-color 0.2s;
   }

   .mobile-social-btn:hover {
       transform: scale(1.1);
       background-color: rgba(255, 255, 255, 0.1);
   }

   .mobile-telegram-btn:hover {
       background-color: rgba(0, 136, 204, 0.2);
   }

   .mobile-x-btn:hover {
       background-color: rgba(0, 0, 0, 0.2);
   }






   

   @media (max-width: 480px) and (orientation: portrait) {
       .modal {
           width: 80% !important;
       }

       .play-button {
           margin-left: 5%;
       }
   }





















































   /* Navigation Bar */
   nav {
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       padding: 1rem;
       display: flex;
       justify-content: space-between;
       align-items: center;
       color: white;
       font-size: 1.5rem;
       z-index: 20;
   }

   .logo {
       font-size: 1.75rem;
       font-weight: bold;
   }

   /* Desktop Menu Links */
   #nav-links {
       display: none;
   }

   @media (min-width: 640px) {
       #nav-links {
           display: flex;
           gap: 1rem;
           align-items: center;
       }

       #nav-links button {
           color: white;
           font-size: 1.75rem;
       }

       #nav-links button:hover {
           text-decoration: underline;
       }

       /* Social media buttons styling */
       #nav-links .social-btn {
           font-size: 1.5rem;
           padding: 0.5rem;
           border-radius: 50%;
           transition: transform 0.2s, background-color 0.2s;
           text-decoration: none !important;
       }

       #nav-links .social-btn:hover {
           transform: scale(1.1);
           background-color: rgba(255, 255, 255, 0.1);
           text-decoration: none !important;
       }

       #nav-links .telegram-btn:hover {
           background-color: rgba(0, 136, 204, 0.2);
       }

       #nav-links .x-btn:hover {
           background-color: rgba(0, 0, 0, 0.2);
       }
   }

   /* Right Section (Audio & Hamburger) */
   .nav-controls {
       display: flex;
       align-items: center;
   }

   /* Audio Toggle Icon */
   #audio-toggle {
       color: white;
       font-size: 1.875rem;
       cursor: pointer;
       user-select: none;
   }

   @media (max-width: 639px) {
       #audio-toggle {
           font-size: 2.25rem;
       }
   }

   /* Hamburger Menu Button */
   .hamburger {
       margin-left: 1rem;
   }

   @media (min-width: 640px) {
       .hamburger {
           display: none;
       }
   }

   .hamburger button {
       color: white;
       font-size: 3rem;
   }

   /* Mobile Dropdown Menu */
   #nav-dropdown {
       position: fixed;
       top: 0;
       left: 0;
       width: 100%;
       background-color: rgba(14, 24, 73, 0.95);
       color: white;
       z-index: 30;
       display: flex;
       flex-direction: column;
       align-items: center;
       justify-content: flex-start;
       transition: opacity 0.3s ease;
   }

   #nav-dropdown.hidden {
       display: none;
       opacity: 0;
   }

   #nav-dropdown:not(.hidden) {
       display: flex;
       opacity: 0.95;
       padding: 60px 0 60px 0;
   }

   #nav-dropdown button,
   #nav-dropdown a {
       width: 100%;
       text-align: center;
       color: white;
       font-size: 1.75rem;
       letter-spacing: 1px;
       text-transform: uppercase;
       text-decoration: none;
       display: block;
       padding: 0.75rem 0;
   }

   #nav-dropdown button:hover,
   #nav-dropdown a:hover {
       text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
   }

   /* Space between menu items */
   #nav-dropdown .menu-items {
       display: flex;
       flex-direction: column;
       align-items: center;
       gap: 1.5rem;
       margin-top: 2rem;
   }

   /* Social media buttons in mobile menu */
   .mobile-social-section {
       display: flex;
       gap: 2rem;
       margin-top: 1rem;
       align-items: center;
   }

   .mobile-social-btn {
       font-size: 2rem;
       padding: 1rem;
       border-radius: 50%;
       color: white;
       text-decoration: none;
       transition: transform 0.2s, background-color 0.2s;
   }

   .mobile-social-btn:hover {
       transform: scale(1.1);
       background-color: rgba(255, 255, 255, 0.1);
   }

   .mobile-telegram-btn:hover {
       background-color: rgba(0, 136, 204, 0.2);
   }

   .mobile-x-btn:hover {
       background-color: rgba(0, 0, 0, 0.2);
   }

   /* Close button for dropdown */
   .xit {
       margin-right: 30px;
       position: absolute;
       top: 1rem;
       right: 1.5rem;
       font-size: 2rem;
       color: white;
       font-weight: bold;
       text-align: right !important;
   }

   @media (min-width: 640px) {
       #nav-dropdown {
           display: none !important;
       }
   }

   /* Modal Styles */
   .modal {
       position: absolute;
       top: 25%;
       left: 50%;
       transform: translateX(-50%);
       background-color: rgba(255, 255, 255, 0.9);
       color: black;
       padding: 1.5rem;
       border-radius: 0.75rem;
       box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
       width: 66.666667%;
       max-width: 36rem;
       z-index: 30;
       backdrop-filter: blur(6px);
   }

   .modal-header {
       display: flex;
       justify-content: space-between;
       align-items: center;
       margin-bottom: 1rem;
   }

   .modal-title {
       font-size: 1.875rem;
   }

   .modal-close {
       font-size: 1.4rem;
       color: rgb(239, 68, 68);
   }

   .modal-content {
       font-size: 1.4rem;
   }

   .modal_sub {
       font-size: 1.6rem;


   }

   .hidden {
       display: none;
   }

   /* Pyro Character */
   #pyro {
       position: absolute;
       z-index: 10;
       pointer-events: none;
   }

   #pyro img {
       width: 300px;
       height: auto;
   }

   /* Pyro Logo */
   #pyro-logo {
       position: absolute;
       background-image: url(images/pyrologo.png);
       background-size: cover;
       background-repeat: no-repeat;
       background-position: center center;
       width: 60vw;
       max-width: 500px;
       aspect-ratio: 222 / 79;
       top: 50%;
       left: 50%;
       transform: translate(-50%, -50%);
   }

   /* Pyro Spray */
   #pyro-spray {
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       pointer-events: none;
       z-index: 0;
   }

   /* Animation for floating effects */
   @keyframes floaty {

       0%,
       100% {
           transform: translateY(0);
       }

       50% {
           transform: translateY(-10px);
       }
   }

   .animate-float {
       animation: floaty 3s ease-in-out infinite;
   }

   /* Spray Ball Animation */
   .spray-ball {
       position: absolute;
       width: 10px;
       height: 10px;
       margin-right: 50px;
       border-radius: 9999px;
       opacity: 0.9;
       animation: swirlExpandFade 1.2s ease-out forwards;
       box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
       pointer-events: none;
   }

   @keyframes swirlExpandFade {
       0% {
           transform: scale(0.5) translate(0, 0);
           opacity: 0.9;
       }

       100% {
           transform: scale(2.5) translate(var(--tx, 0px), var(--ty, 0px));
           opacity: 0;
       }
   }







































   .buttont {
       display: inline-block;
       text-align: center;
       vertical-align: middle;
       font: normal normal bold 21px arial;
       text-decoration: none;
       transition: transform .7s ease-in-out;
   }

   .buttont:hover {
       transform: rotate(360deg);
   }

   .tg {
       padding: 15px 26px;
       background: url(https://go.pyro.io/static/images/tg.svg) center/70% no-repeat;

   }

   .x {
       background: url(https://go.pyro.io/static/images/x.svg) center/70% no-repeat;
       padding: 20px 32px;
       margin-left: -15px;
   }

   .play-button {
       text-shadow: 1px 1px 2px black;
       margin: auto;
       grid-auto-columns: 1px solid black;
       margin-top: 20px;
       padding: 14px 24px;
       display: inline-block;
       background: #63ce63;
       border-radius: 15px;
       border: 1px solid black;
       margin-left: 30%;
       font-size: 22px;
       color: white !important;
   }

   a:link {
       text-decoration: none;
       color: unset;
   }

   /* Partnership Form Specific Styles - Prefixed to avoid conflicts */
   .pyro-partnership-form {
       font-family: 'Nunito', sans-serif;
       background: white;
       border-radius: 8px;
       height: 480px;
       display: flex;
       flex-direction: column;
       box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
       position: relative;
       font-size: 19px;
   }

   .pyro-form-header {
       padding: 10px 15px;
       border-bottom: 1px solid #eee;
       flex-shrink: 0;
   }

   .pyro-form-content {
       padding: 10px 15px;
       overflow-y: auto;
       flex: 1;
       scrollbar-width: none;
       -ms-overflow-style: none;
   }

   .pyro-form-content::-webkit-scrollbar {
       display: none;
   }

   .pyro-form-footer {
       padding: 10px 15px;
       border-top: 1px solid #eee;
       flex-shrink: 0;
   }

   .pyro-form-group {
       margin-bottom: 20px;
   }

   .pyro-form-label {
       display: block;
       margin-bottom: 5px;
       font-weight: 600;
       color: #333;
       font-family: 'Nunito', sans-serif;
   }

   .pyro-form-input,
   .pyro-form-select,
   .pyro-form-textarea {
       width: 100%;
       padding: 12px;
       border: 2px solid #ddd;
       border-radius: 8px;
       box-sizing: border-box;
       font-family: 'Nunito', sans-serif;
       font-size: 14px;
       transition: border-color 0.3s ease;
   }

   .pyro-form-input:focus,
   .pyro-form-select:focus,
   .pyro-form-textarea:focus {
       outline: none;
       border-color: #ff6b35;
   }

   .pyro-form-select {
       height: 46px;
       background-color: white;
       cursor: pointer;
   }

   .pyro-form-textarea {
       height: 100px;
       resize: vertical;
       font-family: 'Nunito', sans-serif;
   }

   .pyro-other-input {
       margin-top: 10px;
       width: 100%;
   }

   .pyro-submit-btn {
       background: linear-gradient(135deg, #ff6b35, #f7931e);
       color: white;
       padding: 15px 30px;
       border: none;
       border-radius: 25px;
       font-size: 16px;
       font-weight: 700;
       cursor: pointer;
       transition: transform 0.2s, box-shadow 0.2s;
       width: 100%;
       font-family: 'Nunito', sans-serif;
   }

   .pyro-submit-btn:hover {
       transform: translateY(-2px);
       box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
   }

   .pyro-submit-btn:disabled {
       opacity: 0.6;
       cursor: not-allowed;
       transform: none;
   }

   .pyro-required {
       color: #e74c3c;
   }

   .pyro-form-description {
       margin: 0;
       color: #666;
       line-height: 1.5;
       font-family: 'Nunito', sans-serif;
   }

   .pyro-overlay-message {
       position: absolute;
       top: 20px;
       right: 20px;
       background: #ff4757;
       color: white;
       padding: 12px 20px;
       border-radius: 8px;
       font-size: 14px;
       font-weight: 600;
       box-shadow: 0 4px 12px rgba(255, 71, 87, 0.3);
       z-index: 1000;
       opacity: 0;
       transform: translateX(100%);
       transition: all 0.3s ease;
   }

   .pyro-overlay-message.success {
       background: #2ed573;
       box-shadow: 0 4px 12px rgba(46, 213, 115, 0.3);
   }

   .pyro-overlay-message.show {
       opacity: 1;
       transform: translateX(0);
   }