@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css');

@font-face {
    font-family: 'Pixeloid Sans';
    src: url('PixeloidSans.woff2') format('woff2'),
        url('PixeloidSans.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Pixeloid Sans';
    src: url('PixeloidSans-Bold.woff2') format('woff2'),
        url('PixeloidSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background:black;
    font-family: 'Pixeloid Sans', sans-serif;
    color: white;
    overflow: hidden;
}

.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
}

.logo {
    position: fixed;
    width: 128px;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.container {
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1.5s ease-in-out;
    max-width: 540px;
    width: 90%;
}

.title {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px #000;
}

.subtitle {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #ccc;
}

.input-container {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.input-container input {
    padding: 10px;
    font-size: 1em;
    font-family: 'Pixeloid Sans', sans-serif;
    border: none;
    border-radius: 5px 0 0 5px;
    margin-right: -5px;
    background-color: #f1f1f1;
    color: #333;
    width: 150px;
    text-align: center;
    outline: none;
    transition: background-color 0.3s;
}

.input-container input:focus {
    background-color: #e0e0e0;
}

.input-container button {
    padding: 10px 20px;
    font-size: 1em;
    font-family: 'Pixeloid Sans', sans-serif;
    border: none;
    border-radius: 0 5px 5px 0;
    background-color: #34c759;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
    outline: none;
}

.input-container button:hover {
    background-color: #28a745;
}

.tier-container {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.tier-bar {
    width: 18%;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    transition: background-color 0.3s;
}

.tier-bar.active {
    background-color: #34c759;
}

.social-container {
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin: 30px 0;
    display: flex;
    justify-content: center;
}

.social-links {
    display: flex;
    justify-content: center;
    z-index: 99;
}

.social-links a {
    margin: 0 10px;
    font-size: 1.5em;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
    z-index: 88;
}

.social-links a:hover {
    color: #dd17ff;
}

.silly {
    width: 200px;
    transition: transform 1s ease-in-out;
    transform :1s ease-in-out;
}

.animate {
    animation: float 3s ease-in-out infinite;
}

.counter {
    font-size: 1.5em;
    margin: 20px 0;
    font-weight: bold;
    text-shadow: 1px 1px 2px #000;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2%;
    flex-wrap: nowrap; /* Ensure items do not wrap */
}

.countdown-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    min-width: 80px;
    flex: 1 1 80px;
    margin: 5px;
}

.countdown-box span {
    display: block;
}

.countdown-box label {
    display: block;
    font-size: 0.8em;
    color: #ccc;
    margin-top: 5px;
}

/* Add responsive design for smaller screens */
@media (max-width: 480px) {
    .title {
        font-size: 1.5em;
    }

    .countdown {
        flex-wrap: wrap; /* Allow items to wrap */
        display: grid; /* Use grid layout */
        grid-template-columns: 1fr 1fr; /* Two columns */
        grid-gap: 10px; /* Gap between items */
    }

    .countdown-box {
        flex: 1 1 45%; /* Adjust width to fit two columns */
        padding: 10px;
    }

    .countdown-box span {
        font-size: 0.7em;
    }

    .countdown-box label {
        font-size: 0.6em;
    }

    .silly {
        width: 100px;
    }

    .container {
        padding: 15px 5px;
    }
}
.countdown {
  display: flex;
  gap: 20px;
  text-align: center;
}

.countdown .label {
  font-size: 0.3em;
  font-weight: normal;
  color: #fff;
}
.floating-div {
    position: fixed; /* Fixed position */
    top: 10px; /* Align to the top with a little space */
    left: 10px; /* Align to the left with a little space */
    background: transparent; /* Background color */
    z-index: 1000; /* Ensure it's above other elements */
  }

.flat-button {
  background-color: #000000; /* Green background */
  border: none; /* No borders */
  color: rgb(255, 255, 255); /* White text */
  border-radius: 15px;
  padding: 15px 32px; /* Some padding */
  text-align: center; /* Centered text */
  text-decoration: none; /* No underlines */
  display: inline-block; /* To enable the use of margin and padding */
  font-size: 16px; /* Set a font size */
  margin: 4px 2px; /* Add a slight margin around the button */
  cursor: pointer; /* Changes the cursor to a pointer on hover */
  transition: background-color 0.3s; /* Smooth transition for hover effect */
}

.flat-button:hover {
  background-color: #0b1859; /* Darker shade of green */
}
/* cyrillic-ext */
@font-face {
  font-family: 'Ubuntu Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/ubuntumono/v15/KFOjCneDtsqEr0keqCMhbCc3CsTKlA.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Ubuntu Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/ubuntumono/v15/KFOjCneDtsqEr0keqCMhbCc-CsTKlA.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Ubuntu Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/ubuntumono/v15/KFOjCneDtsqEr0keqCMhbCc2CsTKlA.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Ubuntu Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/ubuntumono/v15/KFOjCneDtsqEr0keqCMhbCc5CsTKlA.woff2) format('woff2');
  unicode-range: U+0370-03FF;
}
/* latin-ext */
@font-face {
  font-family: 'Ubuntu Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/ubuntumono/v15/KFOjCneDtsqEr0keqCMhbCc0CsTKlA.woff2) format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Ubuntu Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/ubuntumono/v15/KFOjCneDtsqEr0keqCMhbCc6CsQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Ubuntu Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/ubuntumono/v15/KFO-CneDtsqEr0keqCMhbC-BL9H4tY12eg.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Ubuntu Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/ubuntumono/v15/KFO-CneDtsqEr0keqCMhbC-BL9HxtY12eg.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Ubuntu Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/ubuntumono/v15/KFO-CneDtsqEr0keqCMhbC-BL9H5tY12eg.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Ubuntu Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/ubuntumono/v15/KFO-CneDtsqEr0keqCMhbC-BL9H2tY12eg.woff2) format('woff2');
  unicode-range: U+0370-03FF;
}
/* latin-ext */
@font-face {
  font-family: 'Ubuntu Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/ubuntumono/v15/KFO-CneDtsqEr0keqCMhbC-BL9H7tY12eg.woff2) format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Ubuntu Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/ubuntumono/v15/KFO-CneDtsqEr0keqCMhbC-BL9H1tY0.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
#connect_3_cover{
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background: #222d07;
  background: #000;
  top: 0;
  left: 0;
  opacity: .4; 
}
#connect_3_message{
  display: block;
  position: absolute;
  float: left;
  top: 25%;
  font-family: 'Oxygen', sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: #f7f7f7;
  text-shadow: 2px 2px #111;
  width: 100%;
  height: 100px;
  z-index: 11;
  text-align: center;
  animation: connect_3_blinker 1.5s linear infinite;
}
@keyframes connect_3_blinker {
  50% {
      opacity: 0.25;
 }
}
#connect_3_chooser {
  border-radius: 12px;
  width: 300px;
  position: fixed;
  display: none;
  top: calc(50% - 135px);
  left: calc(50% - 150px);
  z-index: 1001;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 1.0);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 1.0);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 1.0);
  background: #fff;
  padding-bottom: 11px;
}
#connect_3_chooser button {
  background: #f1f1f1;
  display: block;
  margin: 11px 10px 0 10px;
  border-radius: 11px;
  border: none;
  outline: none;
  padding: 10px;
  width: calc(100% - 20px);
  text-align: left;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-tap-highlight-color: transparent;
}
.connect_3_choice img{
  display: block;
  position: absolute;
  width: 35px;
  height: 35px;
  margin: -5px 0 0 -5px;
}
button#connect_3_cancel img{
  -webkit-filter: invert(100%);
  filter: invert(100%);
  width: 27px;
  height: 27px;
  margin: -1px 0 0 -3px;
}
button.connect_3_choice span{
  display: inline-block;
  vertical-align: top;
  margin: 2px 0 0 98px;
  font-family: 'Oxygen', sans-serif;
  font-weight: bold;
  font-size: 17px;
  text-shadow: 1px 1px 1px #fff;
  line-height: 23px;
  height: 23px;
}
button#connect_3_backpack span {
  color: #a72113;
}
button#connect_3_backpack:hover span{color: #ccc;}
button#connect_3_solflare span {
  color: #fea210;
}
button#connect_3_solflare:hover span{color: #ccc;}
button#connect_3_phantom span {
  color: #ab9ff2;
}
button#connect_3_phantom:hover span{color: #ccc;}
button#connect_3_cancel span {
  color: #000;
}
button#connect_3_cancel:hover span{color: #ccc;}
.disconnect_3_button{
  display: none;
}
@media only screen and (max-width: 800px) {
  button#connect_3_backpack{
    display: none;
  }
}

#copy-button {
  width: 50px;
  height: 50px;
  border-radius: 15%;
  border: 2px solid rgba(0, 0, 0, 0.9);
  background-color: rgba(255, 255, 255, 0.8);
  color: #000;
  font-size: 16px;
  text-align: center;
  line-height: 46px;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
}

#copy-button:hover {
  background-color: rgba(255, 255, 255, 0.3);
  border-color: rgba(0, 0, 0, 0.8);
}
.cansee {
  display: none;
}
.canmintornot{
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: medium;
  width: 20px;
}
.onlyifconnected {
  display: none;
}