@charset "utf-8";
* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}
body {
font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
background: #000;
color: #e0a3ff;
overflow-x: hidden;
min-height: 100vh;
font-weight: 400;
line-height: 1.6;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.neural-background {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -2;
background: radial-gradient(circle at 15% 85%, rgba(75, 0, 130, 0.7) 0%, transparent 50%), radial-gradient(circle at 85% 15%, rgba(139, 37, 99, 0.8) 0%, transparent 50%), radial-gradient(circle at 45% 60%, rgba(128, 0, 128, 0.6) 0%, transparent 50%), radial-gradient(circle at 70% 40%, rgba(34, 139, 34, 0.4) 0%, transparent 50%), linear-gradient(135deg, #0a0a0a 0%, #2d1b3d 50%, #000000 100%);
/*
animation: backgroundPulse 14s ease-in-out infinite;
*/
}
/*
 @keyframes backgroundPulse {
     0%, 100% {
         filter: brightness(0.9) saturate(1.4) hue-rotate(0deg);
    }
     33% {
         filter: brightness(1.1) saturate(1.7) hue-rotate(15deg);
    }
     66% {
         filter: brightness(1.0) saturate(1.5) hue-rotate(-10deg);
    }
}

*/
/* Floating geometric shapes */
/*
.geometric-shapes {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
overflow: hidden;
}
 .shape-money {
position: absolute;
animation: floatShape 20s linear infinite;
font-size: xx-large;
width: 200px;
height: 200px;
color: #e0a3ff4f;
}
 .shape-money:nth-child(1) {
     left: 10%;
     animation-delay: 0s;
}
 .shape-money:nth-child(2) {
     left: 70%;
     animation-delay: -5s;
     border-radius: 50%;
}
 .shape-money:nth-child(3) {
     left: 30%;
     animation-delay: -10s;
     transform: rotate(45deg);
}
 .shape-money:nth-child(4) {
     left: 50%;
     animation-delay: -15s;
}
.shape-money:nth-child(5) {
     left: 90%;
     animation-delay: -20s;
}

 @keyframes floatShape {
     from {
         transform: translateY(100vh) rotate(0deg);
         opacity: 0;
    }
     10%, 90% {
         opacity: 1;
    }
     to {
         transform: translateY(-100px) rotate(360deg);
         opacity: 0;
    }
}
*/
/* Neural network lines */
/*
 .neural-lines {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: -1;
}
 .neural-line {
     position: absolute;
     background: linear-gradient(90deg, transparent, #00ffff, transparent);
     height: 1px;
     animation: neuralPulse 3s ease-in-out infinite;
}
 .neural-line:nth-child(1) {
     top: 142px;
     left: 0;
     width: 100%;
     background: linear-gradient(90deg, transparent, #e0a3ff, transparent);
     animation-delay: 0s;
}
 .neural-line:nth-child(2) {
     top: 236px;
     left: 0;
     width: 100%;
     background: linear-gradient(90deg, transparent, #ff69b4, transparent);
     animation-delay: -1s;
}
 .neural-line:nth-child(3) {
     top: 317px;
     left: 0;
     width: 100%;
     background: linear-gradient(90deg, transparent, #9370db, transparent);
     animation-delay: -2s;
}
 @keyframes neuralPulse {
     0%, 100% {
         opacity: 0.2;
         transform: scaleX(0.5);
    }
     50% {
         opacity: 1;
         transform: scaleX(1);
    }
}
*/
/* Glassmorphism styles */
 .glass {
     background: rgba(255, 255, 255, 0.05);
     backdrop-filter: blur(5px);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 20px;
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
 .glass-strong {
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(25px);
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 25px;
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Section 2: Diagonal Features */
/*
 .features {
     padding: 150px 0;
     position: relative;
     overflow: hidden;
}
 .features::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: conic-gradient(from 0deg, transparent, rgba(0, 255, 255, 0.1), transparent);
     animation: rotate 20s linear infinite;
     z-index: -1;
}
 @keyframes rotate {
     from {
         transform: rotate(0deg);
    }
     to {
         transform: rotate(360deg);
    }
}
*/

 .showcase {
     padding: 150px 0;
     position: relative;
}
 .hexagon-container {
     display: flex;
     justify-content: center;
     align-items: center;
     flex-wrap: wrap;
     gap: 40px;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
}
 .hexagon {
     width: 220px;
     height: 290px;
     position: relative;
     margin: 20px;
     transition: all 0.4s ease;
}
 .hexagon:hover {
     transform: scale(1.1);
}
 .hexagon-achieved {
     width: 220px;
     height: 290px;
     position: relative;
     margin: 20px;
     transition: all 0.4s ease;
}
 .hexagon-achieved:hover {
     transform: scale(1.1);
}
 .hexagon-inner {
     width: 100%;
     height: 100%;
     position: relative;
    /* transform: rotate(30deg);*/
     border-radius: 25px;
     padding: 50px 25px;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     text-align: center;
     overflow: hidden;
     transition: all 0.4s ease;
}
 .hexagon-inner-achieved {
     width: 100%;
     height: 100%;
     position: relative;
     border-radius: 25px;
     padding: 50px 25px;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     text-align: center;
     overflow: hidden;
     transition: all 0.4s ease;
}
 .hexagon:hover .hexagon-inner {
     transform: rotate(0deg);
     border-radius: 15px;
}
 .hexagon:nth-child(odd) .hexagon-inner {
     background: linear-gradient(135deg, rgba(0, 255, 255, 0.12), rgba(255, 0, 128, 0.12));
     border: 1px solid rgba(0, 255, 255, 0.3);
}
 .hexagon:nth-child(even) .hexagon-inner {
     background: linear-gradient(135deg, rgba(255, 0, 128, 0.12), rgba(128, 0, 255, 0.12));
     border: 1px solid rgba(255, 0, 128, 0.3);
}
 .hexagon-icon {
     font-size: 2.8rem;
     margin-bottom: 20px;
     /*transform: rotate(-30deg);*/
     filter: drop-shadow(0 0 10px currentColor);
     transition: all 0.4s ease;
}
 .hexagon-icon-achieved {
     font-size: 2.8rem;
     margin-bottom: 20px;
     filter: drop-shadow(0 0 10px currentColor);
     transition: all 0.4s ease;
}
 .hexagon:hover .hexagon-icon {
     transform: rotate(0deg);
}
 .hexagon h4 {
     font-size: 1.3rem;
     color: #ffffff;
     /*transform: rotate(-30deg);*/
     margin-bottom: 15px;
     font-weight: bold;
     text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
     transition: all 0.4s ease;
}
 .hexagon:hover h4 {
     transform: rotate(0deg);
}
 .hexagon p {
     font-size: 0.95rem;
     color: #e0e0e0;
    /* transform: rotate(-30deg);*/
     line-height: 1.5;
     max-width: 140px;
     transition: all 0.4s ease;
}
 .hexagon:hover p {
     transform: rotate(0deg);
}
 .feature-content {
     flex: 1;
     padding: 50px;
     transform: skew(5deg);
     transition: all 0.4s ease;
}
 .feature-content:hover {
     transform: skew(5deg) translateY(-10px);
     box-shadow: 0 30px 60px rgba(0, 255, 255, 0.2);
}

.underline{text-decoration: underline;}

.divcenter{margin: 0px auto;padding: 0px;}
article{
margin-left: auto;
margin-right: auto;
margin-bottom: 20px;
max-width: 500px;
width: auto;
padding: 10px;
border-radius: 4px;
}
a{
text-underline-offset: 5px;
}
h1,h2,h3{
text-align: center;
}
form{
display: flex;
flex-direction: column;
}
label {
margin-bottom: 10px;
display: inline-block;
margin-bottom: 8px;
font-weight: bold;
}
input, select, textarea {
box-sizing: border-box;
width: 100%;
padding: 12px;
border-radius: 8px;
font-size: 1rem;
}
input[type="checkbox"] {width: 15px;height: 17px;}
#form_contact{max-width: 500px;margin: auto;}
#contactname{display: none;}
footer{
padding-top: 20px;
padding-bottom: 20px;
text-align: center;
line-height: 2rem;
font-size: 0.875rem;
height: 13rem;
}

footer a{
margin-left: 50px;
margin-right: 50px;
margin-bottom: 10px;
white-space: nowrap;
}

.aligncenter{text-align: center;}

.container {
max-width: 1200px;
margin: 125px auto;
padding-top: 0px;
padding-right: 25px;
padding-left: 25px;
}

.container > div{
border-radius: 15px;
padding: 25px;
margin-bottom: 30px;
}
table {
width: auto;
max-width: 700px;
margin: auto;
border-collapse: collapse;
}

th, td {
padding: 15px;
text-align: center;
word-wrap: anywhere;
min-width: 100px;
}

th {font-weight: bold;}
b{padding: 15px;}
tbody > tr:first-child{font-weight: bold;}

.form-group {margin-bottom: 20px;}
.checkbox-group {
display: flex;
align-items: center;
margin: 20px 0;
}
.checkbox-group input {margin-right: 10px;}
.since{font-size: 1.1rem;}
.person1{font-size: 3rem;}
.richerthan{font-size: 2rem;}
.thanperson2{font-size: 1.5rem;}
.notwealthy{font-size: 2rem;}
.card{width: auto;
max-width: 400px;
margin: auto;
}

.card > a {
}
.card > a > img{
border-radius: 20px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
width: auto;
max-width: 100%;
}
.price-tag {
padding: 10px 20px;
border-radius: 50px;
font-weight: bold;
font-size: 1.3rem;
display: inline-block;
margin: 15px 0;
}
.top-rich-person{font-size: 3rem;}
.current-top{word-wrap: anywhere;}



.rewards_list {
display: inline-flex;
flex-wrap: wrap;
justify-content: center;
}
.rewards{
padding: 10px 20px;
border-radius: 10px;
font-weight: bold;
font-size: 1.3rem;
margin: 15px 0;
height: 200px;
width: 200px;
text-align: center;
margin: 10px;
}
.rewards > h3{margin: 10px;}


/* colors */
/*
body {background: linear-gradient(173deg, rgb(166, 145, 37), rgb(240, 237, 36), rgb(147, 33, 28));color:  #fafafa;}
*/
footer{background-color: rgba(0, 0, 0, 0.7);}
.i18n1 li ul{background-color: rgba(0, 0, 0, 0.7);}
article{background-color: #f9f8f8;
border: 1px solid #f1f1f1;
}
a{color: rgb(255, 215, 0);text-decoration: underline dotted rgb(117, 117, 121);}
a:hover;{color: #00b;text-decoration: underline dotted rgb(117, 117, 121);}
.container > div{
}
.container > div > h1,h2,h3{color: rgb(255, 215, 0);}
th, td {border-bottom: 1px solid rgba(255, 255, 255, 0.2);}
th {color: #ffd700;}
tr:hover {background: rgba(255, 215, 0, 0.1);}
.price-tag {
background: linear-gradient(to right, #ff8c00, #ffd700);
color: #000;
}
.rewards{border: 1px solid rgba(255, 255, 255, 0.2);}
.reward_unlock{background: linear-gradient(141deg, rgb(177, 158, 7), rgb(119, 115, 37));}
.reward_lock{background: linear-gradient(141deg, rgb(81, 80, 79), rgb(179, 178, 158), rgb(81, 80, 79));}



 .contact-form {
     padding: 50px 40px;
}
 .form-group {
     margin-bottom: 30px;
     position: relative;
}
 .form-group input, .form-group textarea {
     width: 100%;
     padding: 15px 20px;
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 10px;
     color: #ffffff;
     font-family: inherit;
     font-size: 1rem;
     backdrop-filter: blur(10px);
     transition: all 0.3s ease;
}
 .form-group input:focus, .form-group textarea:focus {
     outline: none;
     border-color: #00ffff;
     box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
     background: rgba(255, 255, 255, 0.1);
}
 .form-group input::placeholder, .form-group textarea::placeholder {
     color: #888;
}
 .submit-btn {
     width: 100%;
     padding: 18px;
     background: linear-gradient(45deg, #00ffff, #ff0080);
     border: none;
     border-radius: 10px;
     color: #000;
     font-weight: bold;
     font-size: 1.1rem;
     cursor: pointer;
     transition: all 0.3s ease;
}
 .submit-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
}

.cta-buttons {
     display: flex;
     gap: 20px;
     justify-content: center;
     flex-wrap: wrap;
}
 .cta-button {
     display: inline-block;
     padding: 16px 40px;
     background: linear-gradient(135deg, #e0a3ff, #ff69b4);
     color: #000;
     text-decoration: none;
     border-radius: 50px;
     font-weight: 600;
     font-size: 0.95rem;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     position: relative;
     overflow: hidden;
     text-transform: uppercase;
     letter-spacing: 0.03em;
     box-shadow: 0 4px 15px rgba(224, 163, 255, 0.2);
}
 
 .cta-button:hover {
     transform: translateY(-4px) scale(1.02);
     box-shadow: 0 12px 30px rgba(224, 163, 255, 0.3);
}
#top5{
max-width: 620px;
margin-left: auto;
margin-right: auto;
}
.current-top {
max-width: 620px;
margin-left: auto;
margin-right: auto;   
}

.hero-subtitle {
     font-size: 0.9rem;
     color: #e0a3ff;
     margin-bottom: 25px;
     opacity: 1;
     /*animation: slideInFromLeft 1.2s ease 0.3s forwards;*/
     text-transform: uppercase;
     letter-spacing: 0.4em;
     position: relative;
     display: inline-block;
     font-weight: 300;

}
 .hero-subtitle::before, .hero-subtitle::after {
     content: '';
     position: absolute;
     top: 50%;
     width: 40px;
     height: 1px;
     background: linear-gradient(90deg, transparent, #e0a3ff, transparent);
     /*animation: linePulse 3s ease infinite;*/
     opacity: 1;
     transform: scaleX(1.2);
}
 .hero-subtitle::before {
     left: -60px;
}
 .hero-subtitle::after {
     right: -60px;
}
/*
 @keyframes linePulse {
     0%, 100% {
         opacity: 0.4;
         transform: scaleX(0.8);
    }
     50% {
         opacity: 1;
         transform: scaleX(1.2);
    }
}
 @keyframes slideInFromLeft {
     from {
         opacity: 0;
         transform: translateX(-40px);
    }
     to {
         opacity: 1;
         transform: translateX(0);
    }
}
*/
.titlediv{
    padding: 0;
}
.titlediv h1 {
     font-size: clamp(2.2rem, 6vw, 4rem);
     margin-bottom: 30px;
     background: linear-gradient(135deg, #e0a3ff 0%, #ff69b4 30%, #9370db 60%, #e0a3ff 100%);
     background-size: 300% 300%;
     -webkit-background-clip: text;
     background-clip: text;
     -webkit-text-fill-color: transparent;
     line-height: 1.1;
     letter-spacing: -0.02em;
     font-weight: 800;
     text-shadow: none;
     opacity: 1;
     /*animation: slideInFromRight 1.2s ease 0.6s forwards, modernGradient 8s ease 0.6s infinite;*/
}
/*
 @keyframes modernGradient {
     0% {
         background-position: 0% 50%;
    }
     50% {
         background-position: 100% 50%;
    }
     100% {
         background-position: 0% 50%;
    }
}
 @keyframes slideInFromRight {
     from {
         opacity: 0;
         transform: translateX(40px);
    }
     to {
         opacity: 1;
         transform: translateX(0);
    }
}
*/
 h2 {
     text-align: center;
     font-size: clamp(0.5rem, 4vw, 2rem);
     margin-bottom: 30px;
     color: #f7ff00;
     position: relative;
}
 h2::after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
     width: 100px;
     height: 3px;
     background: linear-gradient(90deg, #00ffff, #ff0080);
     border-radius: 2px;
}

 header {
     position: absolute;
     top: 20px;
     left: 50%;
     transform: translateX(-50%);
     z-index: 100;
     width: 96%;
     max-width: 700px;
     padding: 18px 35px;
    /* transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);*/
     background: rgba(224, 163, 255, 0.08);
     backdrop-filter: blur(25px);
     border: 1px solid rgba(224, 163, 255, 0.15);
     border-radius: 25px;
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
 header.scrolled {
     background: rgba(224, 163, 255, 0.12);
     backdrop-filter: blur(30px);
     border-color: rgba(224, 163, 255, 0.2);
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 0 0 1px rgba(224, 163, 255, 0.1);
}

#i18n{display: block;}
.nav-links {list-style:none;margin:0; padding:0;display:flex;}
.nav-links > li { position:relative; }
.nav-links a {display:block; padding:.75rem 1rem; color:#f7ff00; text-decoration:none;font-size: x-large;}
.nav-links2 {list-style:none;margin:0; padding:0;display:none;}
.nav-links2 > li { position:relative; }
.nav-links2 a {display:block; padding:.75rem 1rem; color:#f7ff00; text-decoration:none;}

@media (min-width: 768px) {
  .has-submenu:hover > .nav-links2 { display:block; }
}
.nav-toggle{display:none;}
.nav-toggle-label{display:none;font-size:2rem;cursor:pointer;padding:.75rem 1rem;}
@media (max-width: 767px) {
  /*.nav-toggle-label{display:block;}
  .nav-links{display:none;flex-direction:column;}
  .nav-toggle:checked + .nav-toggle-label + .nav-links{display:flex;}
  */
}
.nav-toggle2 { display:none;}
.nav-toggle-label2 {display:none;font-size:2rem;cursor:pointer;padding:.75rem 1rem;}
.nav-toggle-label2 { display:block;}
.nav-toggle2:checked + .nav-toggle-label2 + .nav-links2 {display:block;}
