/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #1a1a2e;
    overflow-x: hidden;
}

.main-website {
    /* display: none; */
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    /* backdrop-filter: blur(10px);  */
}

.cookie-content {
    background: #1a1a2e;
    border-radius: 15px;
    padding: 40px;
    max-width: 600px;
    margin: 20px;
    text-align: left;
    border: 1px solid #333;
}

.cookie-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.cookie-content p {
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #cccccc;
}

.cookie-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-accept {
    background: #00ffcc;
    color: #1a1a2e;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 160px;
}

.btn-accept:hover {
    background: #00e6b8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 204, 0.3);
}

.btn-decline {
    background: transparent;
    color: #00ffcc;
    padding: 15px 30px;
    border: 2px solid #00ffcc;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 160px;
}

.btn-decline:hover {
    background: #00ffcc;
    color: #1a1a2e;
    transform: translateY(-2px);
}

/* Age Verification */
.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    /* backdrop-filter: blur(10px); */
}

.age-content {
    background: #1a1a2e;
    border-radius: 15px;
    padding: 50px;
    max-width: 500px;
    margin: 20px;
    text-align: center;
    border: 1px solid #333;
}

.age-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ff3333;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    border: 3px solid #ff3333;
}

.age-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.age-content p {
    font-size: 1rem;
    margin-bottom: 40px;
    color: #cccccc;
}

.age-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-confirm {
    background: #00ffcc;
    color: #1a1a2e;
    padding: 15px 25px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 180px;
}

.btn-confirm:hover {
    background: #00e6b8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 204, 0.3);
}

.btn-deny {
    background: #ff3333;
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 200px;
}

.btn-deny:hover {
    background: #e62e2e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 51, 51, 0.3);
}

/* Header */
.header {
    background: #1a1a2e;
    
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #00ffcc;
    text-decoration: none;
}

.logo-icon {
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #00ffcc;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 120px 20px 80px;
    background-image: url(../images/hero.png);
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content {
    max-width: 1000px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
}

.warning-message {
    background: rgba(255, 51, 51, 0.1);
    border: 1px solid #ff3333;
    border-radius: 10px;
    padding: 15px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
}

.warning-icon {
    font-size: 1.2rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
  
    line-height: 1.2;
    background: linear-gradient(45deg, #00ffcc, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.1rem;
    
    color: #cccccc;
    line-height: 1.8;
}

.cta-button {
    border-radius: 12px;
background: #01FFD3;
box-shadow: 0 2px 12px 0 #01FFD3;
    color: #1a1a2e;
    padding: 18px 40px;
    border: none;
 text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(0, 255, 204, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 204, 0.4);
}

/* Advantages Section */
.advantages {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e2a4a 0%, #1a1a2e 100%);
}

.advantages h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #ffffff;
}

.advantages-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
  
}

.advantage-item:nth-child(1) { grid-column: span 2 / span 2; }
.advantage-item:nth-child(2) { 
    grid-column: span 2 / span 2;
    grid-column-start: 3;
 }
.advantage-item:nth-child(3) {
    grid-column: span 2 / span 2;
    grid-column-start: 5;
 }
.advantage-item:nth-child(4) { 
    grid-column: span 3 / span 3;
    grid-row-start: 2;
}
.advantage-item:nth-child(5) { 
    grid-column: span 3 / span 3;
    grid-column-start: 4;
    grid-row-start: 2;
 }

.advantage-item {
    background: rgba(30, 42, 74, 0.6);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    border-radius: 12px;
background: #15202C;
box-shadow: 0 0 36px 0 rgba(47, 64, 90, 0.80) inset;
}

.advantage-item:hover {
    transform: translateY(-5px);
    background: rgba(30, 42, 74, 0.8);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 1;
}

.advantage-icon::after {
    content: '';
    position: absolute;
    width: 85%;
    height: 85%;
    background: rgba(30, 42, 74, 0.9);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 2;
}

.icon-symbol {
    position: relative;
    z-index: 3;
    font-size: 2rem;
    color: #ffd700;
}

.advantage-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.3;
}

.advantage-item p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
}

/* Games Section */
.games {
    padding: 80px 20px;
    background: #1a1a2e;
}

.games h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
}

.games > p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.8;
}

.games-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: #00ffcc;
}

.game-image {
    height: 280px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    position: relative;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.05);
}

.game-content {
    border-radius: 0 0 12px 12px;
border-right: 1px solid rgba(1, 255, 211, 0.00);
border-bottom: 2px solid rgb(1, 255, 213);
border-left: 1px solid rgba(1, 255, 211, 0.00);
background: #15202C;
width: 100%;
padding: 24px;
}

.game-button {
    width: 100%;
    background: #00ffcc;
    color: #1a1a2e;
    padding: 18px 15px;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    width: 100%;
    text-decoration: none;
    border-radius: 12px;
background: #01FFD3;
box-shadow: 0 2px 12px 0 #01FFD3;
display: block;
text-align: center;
}

.game-button:hover {
    background: #00e6b8;
    transform: translateY(-2px);
}

/* Reviews Section */
.reviews {
    padding: 80px 20px;
    background: #1a1a2e;
}

.reviews h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #ffffff;
}

.reviews-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    border-radius: 12px;
background: #15202C;
box-shadow: 0 0 36px 0 rgba(47, 64, 90, 0.80) inset;
}

.review-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: #00ffcc;
}

.stars {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.review-card p {
    color: #cccccc;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.reviewer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.avatar {
    width: 40px;
    height: 40px;
    background: #00ffcc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a2e;
    font-size: 1.2rem;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
}

.contact > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #ffffff;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ffcc;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 255, 204, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

.submit-button {
    width: 100%;
    background: linear-gradient(45deg, #00ffcc, #00b894);
    color: #1a1a2e;
    padding: 18px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(0, 255, 204, 0.3);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 204, 0.4);
}

/* Footer */
.footer {
    background: #0d0d1f;
    padding: 60px 20px 30px;
    border-top: 1px solid #333;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-disclaimer {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
    align-items: flex-start;
}

.age-badge {
    background: #ff3333;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.disclaimer-text h4 {
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 700;
}

.disclaimer-text p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00ffcc;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.badge {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    font-size: 0.9rem;
    color: #cccccc;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (min-width: 769px) and (max-width: 1200px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        gap: 25px;
    }
}

@media (max-width: 1023px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #1a1a2e;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        border-top: 1px solid #333;
        padding: 30px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .advantages-grid {
        
    }

    .advantage-item:nth-child(4) { 
        
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 700px;
    }

    .game-image {
        height: 220px;
    }

    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .cookie-content {
        padding: 30px;
        margin: 15px;
    }

    .cookie-content h3 {
        font-size: 2rem;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .age-content {
        padding: 40px 30px;
        margin: 15px;
    }

    .age-buttons {
        flex-direction: column;
    }

    .hero {
        padding: 100px 15px 60px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .advantages h2,
    .games h2,
    .reviews h2,
    .contact h2 {
        font-size: 2rem;
    }

    .advantages-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .advantage-item {
        padding: 30px 25px;
        width: 100%;
        max-width: 500px;
    }

    .advantage-item:nth-child(4) { 
        
    }

    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .game-image {
        height: 200px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-disclaimer {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .footer-badges {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .warning-message {
        padding: 10px;
        font-size: 12px;
    }
    .cookie-content {
        padding: 25px;
        margin: 10px;
    }

    .cookie-content h3 {
        font-size: 1.8rem;
    }

    .age-content {
        padding: 30px 25px;
        margin: 10px;
    }

    .age-content h2 {
        font-size: 1.8rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .advantages h2,
    .games h2,
    .reviews h2,
    .contact h2 {
        font-size: 1.8rem;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        grid-template-areas: none;
    }

    .advantage-item:nth-child(4) { 
        max-width: none;
        margin: 0;
    }

    .games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .game-image {
        height: 180px;
    }

    .btn-confirm,
    .btn-deny {
        min-width: 100%;
    }

    .nav-container {
        padding: 0 15px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.game-inner {
    max-width: 1200px;
    width: 100%;
    padding: 0 15px 40px;
    margin: 0 auto;
}

iframe {
    width: 100%;
    aspect-ratio: 11 / 6;
    border-radius: 10px;
    margin-top: 40px;
}

              .page {
                padding: 180px 0 80px;
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                margin: 0 auto;
                display: flex;
                  flex-direction: column;
                  row-gap: 18px;
                  line-height: 1.4;
              }

              .page__inner p {
                padding-bottom: 10px;
                padding-top: 8px;
              }

              .page__inner strong {
                font-weight: 600;
              }

              .page__inner ul {
                padding-left: 20px;
                list-style-type: disc;
              }

              .thank {
                padding-top: 140px;
                padding-bottom: 140px;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 40px;
                text-align: center;
              }

              .thank-list {
                width: 100%;
                max-width: 1200px;
                margin: 0 auto 40px;
                display: flex;
                flex-direction: column;
                padding: 40px 24px;
                color: #121212;
                background: #E1E0DA;
              }

              .consent {
                border-radius: 10px;
                  background: #F5F5F5;
                    padding: 30px;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    gap: 15px;
                    max-width: 830px;
                    width: 95%;
                    position: fixed;
                    left: 10%;
                    bottom: 50px;
                    transform: translateX(-10%);
                    z-index: 21;
                 
                   
                }

               
                
                .consent__text {
                  font-size: 14px;
                  color: #131313;
                  span {
                    display: block;
                    font-size: 30px;
                    text-transform: uppercase;
                  }
                }
                
                .consent__buttons {
                  display: flex;
                 
                  gap: 30px;
                  align-items: center;
                  width: 100%;
                 
                }       
                
                @media (max-width: 900px) {
                  .consent {
                    left: 50%;
                    transform: translateX(-50%);
                  }
                  .consent__buttons {
                    justify-content: center;
                    flex-direction: column;
                  }
                }

                .button {
                  position: relative;
                  align-self: center;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  text-decoration: none;
                  border: none;
                  border-radius: 20px;
                 
                  max-width: 400px;
                  min-height: 48px;
                  padding: 0 24px;
                  font-family:
                    Roboto,
                    -apple-system,
                    Roboto,
                    Helvetica,
                    sans-serif;
                  font-size: 18px;
                  font-weight: 700;
                  color: rgba(255, 255, 255, 1);
                  white-space: nowrap;
                  text-transform: uppercase;
                  cursor: pointer;
                }

                