
.mobile-only {
    display: none;
}
.desktop-only {
    display: inline-block;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
  }
  
body {
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    background: linear-gradient(135deg, #23262b, #091a29, #216cc5); 
    color: #fff;
    font-family: "Orbitron", sans-serif;
    text-align: center;
    padding: 0;
    margin: 0;
    min-height: 100vh;
}

h1, h3 {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0px 0px 5px rgba(255, 152, 0, 0.8);
}

h2 {
    font-size: 16px;
    font-weight: bold;
    text-transform: none;
    text-align: center;
    color: white; 
    text-shadow: 
        0 0 5px #0ff, 
        0 0 10px #ff0, 
        0 0 15px #f0f, 
        0 0 20px #ff0;
    position: relative;
    margin-top: 20px;
    letter-spacing: 3px;
}

h2::before, h2::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    width: 100%;
    background: transparent;
    overflow: hidden;
    opacity: 0.8; 
}

h2::before {
    top: 0;
    color: rgba(32, 240, 168, 0.98); 
    z-index: -1;
    transform: translate(-2px, -2px); 
}

h2::after {
    bottom: 0;
    color: rgba(32, 240, 168, 0.98); 
    z-index: -2;
    transform: translate(2px, 2px); 
}

@keyframes glitchText1 {
    0% { transform: translate(-2px, -2px); }
    100% { transform: translate(2px, 2px); }
}

@keyframes glitchText2 {
    0% { transform: translate(2px, 2px); }
    100% { transform: translate(-2px, -2px); }
}
	
#soon {
    max-width: 600px;
    color: #0ff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    animation: fadeIn 1.8s ease;
  }
  
  .soon-glow {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
    animation: glitch 2s infinite;
    color: #f4cfcb;
  }
  
  .soon-subtext {
    font-size: 16px;
    color: #e58e1d;
    font-style: italic;
    opacity: 0.8;
    text-shadow: 0 0 8px;
  }
  
  /* Glitch-like animation */
  @keyframes glitch {
    0% { text-shadow: 0 0 8px #0ff; }
    50% { text-shadow: 1px 0 12px #0ff, -1px 0 6px #f0f; }
    100% { text-shadow: 0 0 8px #0ff; }
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

.container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    background: rgba(255, 152, 0, 0.1);
    box-shadow: 0px 0px 20px rgba(255, 152, 0, 0.5);
}

#siteHeader {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    position: relative;
}

#siteLogo {
    max-width: 100px;
    height: auto;
    transition: transform 0.3s ease-in-out;
    padding-right: 250px;
}

#siteLogo:hover {
    transform: scale(1.1);
}

#siteTitle {
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 3px;
    font-family: 'Orbitron', sans-serif;
    position: relative;
    top: -60px; 
    margin-bottom: 5px; 
}

.title-part1 {
    color: #0ff; 
	text-transform: none;
    text-shadow: 
        0 0 10px #0ff, 
        0 0 20px #0ff, 
        0 0 40px #ff0, 
        0 0 70px #f0f, 
        0 0 100px #0ff;
    animation: neonGlow 1.5s infinite alternate;
}

.title-part2 {
	position: relative;
    display: inline-block;
    color: #ffcc00;
    text-shadow: 
        0 0 10px #ffcc00, 
        0 0 20px #ff8800, 
        0 0 40px #ffcc00, 
        0 0 70px #ff8800;
    animation: jackpotGlow 3s infinite alternate;
	font-family: 'Audiowide', sans-serif;
    font-style: italic;
	text-transform: none;

}
.title-part2::after {
    content: "";
    display: block;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #ffcc00, #ff8800, #ffcc00);
    position: absolute;
    bottom: -5px;
    left: 0;
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.7);
    animation: jackpotLineFlow 3s linear infinite;
}

@keyframes jackpotLineFlow {
    0% { background-position: 0 0; }
    100% { background-position: 200% 0; }
}

@keyframes jackpotGlow {
    0% {
        text-shadow: 
            0 0 10px #ffcc00, 
            0 0 20px #ff8800;
    }
    100% {
        text-shadow: 
            0 0 15px #ffcc00, 
            0 0 25px #ff8800, 
            0 0 35px #ffcc00;
    }
}

@keyframes neonGlow {
    0% { text-shadow: 0 0 10px #0ff, 0 0 20px #0ff, 0 0 40px #ff0; }
    100% { text-shadow: 0 0 20px #ff0, 0 0 30px #f0f, 0 0 50px #0ff; }
}

@keyframes glitchEffect {
    0% { transform: translate(0); }
    20% { transform: translate(-1px, 1px); }
    40% { transform: translate(1px, -1px); }
    60% { transform: translate(-1px, 1px); }
    80% { transform: translate(1px, -1px); }
    100% { transform: translate(0); }
}


#walletConnectMobile {
    text-align: center;
    margin-top: 1rem;
}

#walletConnectMobile img {
    margin: 10px 0;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0,0,0,0.2);
    width: 160px;
    height: 160px;
}

.btn-wallet-mobile {
    display: inline-block;
    padding: 10px 16px;
    background: #f6851b;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

#info-wallet {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    text-transform: none;
}

.mobile-connect-step {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    text-transform: none;
}

.wallet-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    vertical-align: middle;
}

.wallet-separator {
    width: 2px;
    height: 30px;
    background: white;
    box-shadow: 0 0 12px white;
}


#mainContent {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 0px; 
    flex: 1;
}

#walletContainer {
    position: absolute;
    top: 15px;
    right: 20px;
    display: flex;
    align-items: center;
	gap: 10px;
}

#connectWallet {
    background: linear-gradient(87deg, rgba(0,255,162,1) 19%, rgba(0,255,116,1) 47%);
    animation: neonGlow 1.5s infinite alternate;
    color: white;
    overflow: hidden; 
    position: relative; 
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap; 
}

#connectWallet:disabled {
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.5;
}

@media (max-width: 768px) {
    #walletContainer {
        top: 10px;
        right: 10px;
    }

    #connectWallet {
        font-size: 14px;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    #walletContainer {
        top: 5px;
        right: 5px;
    }

    #connectWallet {
        font-size: 12px;
        padding: 6px 10px;
    }
}

#siteFooter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    font-family: 'orbitron', sans-serif;
    font-size: 14px;
    color: #fff;
}

.footer-left {
    text-transform: uppercase;
    font-weight: bold;
	text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
}

.footer-right {
    display: flex;
    gap: 10px;
}

.footer-right img {
    width: 36px;
    height: 36px;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.8));
}

.footer-right img:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px rgba(255, 204, 0, 0.9));
}

.glitch-effect {
    animation: glitchScreen 0.1s infinite;
    background: black;
}

@keyframes glitchScreen {
    0% { background-position: 0 0; }
    20% { background-position: 5px 0; }
    40% { background-position: -5px 0; }
    60% { background-position: 5px 5px; }
    80% { background-position: -5px -5px; }
    100% { background-position: 0 0; }
}

#backgroundClock {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100vw; 
    height: 100vh; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    font-size: 100px; 
    font-weight: bold;
    color: rgba(255, 140, 0, 0.15); 
    filter: blur(13px); 
    z-index: -1; 
    pointer-events: none; 
    text-align: center;
    white-space: nowrap;
}

#backgroundClock span {
    display: inline-block; 
    text-align: center;
    animation: glitchText 0.6s infinite alternate;
}

@media (max-width: 768px) {
    #backgroundClock {
        font-size: 60px;
    }
}

@media (max-width: 480px) {
    #backgroundClock {
        font-size: 40px;
    }
}

@keyframes glitchText {
    0% { opacity: 1; }
    20% { opacity: 0.8; text-shadow: -2px -2px 0 rgba(255, 0, 0, 0.8), 2px 2px 0 rgba(0, 255, 255, 0.8); }
    40% { opacity: 1; text-shadow: 2px -2px 0 rgba(255, 0, 0, 0.8), -2px 2px 0 rgba(0, 255, 255, 0.8); }
    60% { opacity: 0.8; text-shadow: -2px 2px 0 rgba(255, 0, 0, 0.8), 2px -2px 0 rgba(0, 255, 255, 0.8); }
    80% { opacity: 1; text-shadow: 2px 2px 0 rgba(255, 0, 0, 0.8), -2px -2px 0 rgba(0, 255, 255, 0.8); }
    100% { opacity: 1; }
}
