@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css");
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: Ubuntu;
    text-align: center;
    padding-top: 80px;
    color: #E4E4E4;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.background-img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("/assets/images/nel-background.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.9;
    z-index: -1;
}

.notice {
    width: 100%;
    overflow: hidden;
    background-color: orange;
    position: fixed;
    top: 0;
    z-index: 10;
}

.notice p {
    display: inline-block;
    white-space: nowrap;
    color: purple;
    font-size: 16px;
    margin: 5px;
    font-weight: 500;
    animation: slide-left 30s linear infinite;
    padding-left: 5%;
}


@keyframes slide-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

header {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    top: 45px;
    border-radius: 150px;
    background-color: #fefefe;
}

.header-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex: 1;
}

.header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 1;
}

.logo {
    max-width: 120px;
    width: 100%;
    height: auto;
    text-align: center;
}

.menu-toggle {
    font-size: 28px;
    cursor: pointer;
    color: black;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 250px;
    height: 100vh;
    background-color: #fefefe;
    color: black;
    padding: 20px;
    transition: left 0.3s ease;
    z-index: 999999;
}

.sidebar.active {
    left: 0;
}

.sidebar-logo {
    max-width: 120px;
    width: 100%;
    height: auto;
    text-align: center;
    padding: 20px;
}

.close-btn {
    position: absolute;
    padding: 10px;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: black;
    cursor: pointer;
    z-index: 1200;
    transition: color 0.3s;
}

.close-btn:hover {
    color: red;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidebar li {
    margin: 10px 0;
    font-size: 18px;
    cursor: pointer;
    width: 100%;
    text-align: center;
    border-radius: 5px;
    padding: 10px;
    transition: background-color 0.3s;
}

.sidebar li a {
    color: black;
    text-decoration: none;
    display: block;
}

.sidebar li a i {
    margin-right: 8px;
    font-size: 18px;
}

.sidebar li:hover {
    background-color: #8e8e8e;
}

.auth-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    width: 100%;
    margin-top: 30px;
}

.auth-login-btn {
    border: black solid 1px;
    padding: 10px 20px;
    color: black;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-wrap: nowrap;
    font-size: 16px;
}

.auth-register-btn {
    background: linear-gradient(45deg, #ffd700, #feb728);
    padding: 10px 20px;
    color: black;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-wrap: nowrap;
    font-size: 16px;
}

.auth-login-btn:hover {
    background-color: #E4E4E4;
    color: black;
}

.auth-register-btn:hover {
    background: linear-gradient(45deg, #feb728, #ffd700);
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 998;
}

.sidebar-overlay.active {
    display: block;
}

.login-button {
    background-color: #feb728;
    padding: 10px 40px;
    color: black;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

.login-button:hover {
    background-color: #ffd700;
}

.why-choose {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    margin-top: 70px;
    padding: 40px;
}

.why-choose img {
    max-width: 250px;
    margin-top: 20px;
}

.why-choose .text-container h2{
    color: #feb728;
}

.why-choose .text-container {
    padding: 0 200px;
    color: #e4e4e4;
}

.casino-intro {
    padding: 60px 0;
  }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.intro-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.intro-header .logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.intro-header h2 {
    font-size: 32px;
    color: #feb728;
}

.container p {
    color: #e4e4e4;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
}

.feature-icon {
    font-size: 40px;
    color: #ffd700;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 20px;
    color: #e4e4e4;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 16px;
    color: #e4e4e4;
    line-height: 1.6;
}

.casino-table-container {
    margin-top: 40px;
}

.casino-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: #e4e4e4;
}

.casino-table th {
    background: #feb728;
    color: black;
    padding: 16px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.casino-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.casino-table tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.02);
}

.casino-table tr:hover {
    background-color: rgba(255, 255, 255, 0.07);
    transition: background-color 0.3s ease;
}

.play-btn {
    display: inline-block;
    background-color: #feb728;
    color: black;
    padding: 8px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.play-btn:hover {
    background-color: #ffd700;
}

.bonus-section {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 60px 20px;
    text-align: center;
}

.bonus-section h2 {
    font-size: 32px;
    color: #feb728;
    margin-bottom: 40px;
}

.game-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.game-box {
    border-radius: 10px;
    padding: 15px;
    width: 150px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.game-box img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.description {
    max-width: 800px;
    margin: 40px auto;
    text-align: left;
    padding: 30px;
    background: linear-gradient(135deg, #271e2f, #332a3d);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.description p {
    font-size: 20px;
    margin-bottom: 25px;
    color: #f0f0f0;
    font-weight: 500;
    line-height: 1.7;
}

.description ul {
    list-style: none;
    padding: 0;
}

.description li {
    margin-bottom: 18px;
    font-size: 17px;
    color: #e0e0e0;
    line-height: 1.8;
    position: relative;
    padding-left: 32px;
    transition: all 0.3s ease;
}

.description li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #feb728;
    font-size: 18px;
    top: 0;
    transition: transform 0.3s ease;
}

.description li:hover::before {
    transform: scale(1.3);
    color: #f8ff3a;
}

.description li:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding-left: 36px;
}


.why-play {
    padding: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-play .logo {
    max-width: 150px;
}

.why-play h1 {
    color: #e4e4e4;
    font-size: 32px;
    margin-bottom: 40px;
}

.why-play-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1400px;
    width: 100%;
}

.benefit-card {
    background-color: #282828;
    padding: 25px;
    border-radius: 12px;
    color: #333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.benefit-card h4 {
    margin: 0 0 12px;
    color: #d1d1d1;
    font-size: 22px;
    font-weight: 600;
}

.benefit-card p {
    margin: 0;
    color: #b0b0b0;
    font-size: 16px;
    line-height: 1.5;
}

.game-section {
    background-color: black;
    padding: 60px 20px;
    text-align: center;
}

.game-section h1 {
    font-size: 32px;
    color: #feb728;
    margin-bottom: 40px;
}

.game-section p {
    font-size: 18px;
    padding: 0 200px;
    margin-bottom: 40px;
}

.join-section {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 60px 20px;
    text-align: center;
}

.join-section h1 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #feb728;
}

.join-section p {
    font-size: 18px;
    padding: 0 200px;
}

.join-section p a{
    text-decoration: none;
    color: #ffd700;
}

.join-section p a:hover{
    text-decoration: underline;
}

.footer {
    color: #fff;
    padding: 20px 0;
    text-align: center;
}
  
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}
  
.footer p {
    margin: 0;
    font-size: 16px;
}

.register {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.register-btn {
    position: fixed;
    bottom: 20px;
    right: 50px;
    z-index: 9999;
    background: linear-gradient(45deg, #ffe761, #ff9e00);
    padding: 12px 40px;
    color: black;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.2),
        0 0 10px #ffae00,
        0 0 20px #ffae00;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    outline: none;
}

.register-btn:hover {
    transform: scale(1.1);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.3),
        0 0 15px #ffae00,
        0 0 30px #ffae00;
    background: linear-gradient(45deg, #ff9e00, #ffe761);
}


.register-btn:active {
    transform: scale(1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.register-btn:focus {
    outline: none;
}

@keyframes pop-effect {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.register-btn {
    animation: pop-effect 1.5s infinite;
}

.chat-button {
    position: fixed;
    bottom: 100px;
    right: 40px;
    background-color: #feb728;
    color: black;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.chat-button:hover {
    background-color: #ffd700;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    header {
        padding: 10px;
    }

    .header-left {
        padding-left: 5px;
    }
    
    .header-right {
        padding-right: 5px;
    }

    .logo {
        max-width: 100px;
    }

    .login-button {
        padding: 10px 25px;
        font-size: 16px;
        font-weight: 500;
    }

    .sidebar {
        left: -280px;
        width: 200px;
    }

    .why-choose .logo {
        max-width: 150px;
    }

    .why-choose .text-container h2 {
        font-size: 20px;
    }

    .why-choose .text-container p {
        font-size: 16px;
        line-height: 1.4;
    }

    .why-choose .text-container {
        padding: 0px;
    }

    .casino-intro {
        padding: 40px 0;
    }
  
    .intro-header h2 {
        font-size: 22px;
    }
  
    .feature-grid {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }
  
    .feature-item {
        padding: 20px;
    }
  
    .feature-icon {
        font-size: 32px;
        margin-bottom: 15px;
    }
  
    .feature-item h3 {
        font-size: 18px;
    }
  
    .feature-item p {
        font-size: 14px;
    }
  
    .casino-table {
        font-size: 14px;
    }
  
    .casino-table th,
    .casino-table td {
        padding: 8px;
    }
  
    .play-btn {
        padding: 6px 16px;
    }

    .game-box {
        width: 35%;
        padding: 5px;
        max-width: 300px;
    }

    .bonus-section h2 {
        font-size: 24px;
    }

    .description p, .description li {
        font-size: 14px;
    }

    .why-play {
        padding: 20px;
    }
    
    .why-play .logo {
        max-width: 120px;
    }

    .why-play-benefits {
        grid-template-columns: 1fr;
    }
    
    .why-play h1 {
        font-size: 24px;
    }

    .benefit-card h4 {
        font-size: 18px;
    }
    
    .benefit-card p {
        margin: 0;
        color: #b0b0b0;
        font-size: 14px;
        line-height: 1.5;
    }

    .game-section {
        padding: 30px 20px;
    }
    
    .game-section h1 {
        font-size: 24px;
        color: #feb728;
        margin-bottom: 20px;
    }
    
    .game-section p {
        font-size: 16px;
        padding: 0px;
        line-height: 1.3;
    }
    
    .join-section {
        padding: 120px 20px;
        text-align: center;
    }
    
    .join-section h1 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .join-section p {
        font-size: 16px;
        padding: 0px;
        line-height: 1.3;
    }
    
    .footer {
        padding: 10px 0;
    }
      
    .footer p {
        font-size: 14px;
    } 

    .chat-button {
        bottom: 110px;
    }

    .register-btn {
        padding: 10px 20px;
        font-size: 14px;
        bottom: 50px;
        right: 40px;
    }
}

.bonus-faq {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
}

.bonus-faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(147, 51, 234, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-container h2 {
    color: #000000;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 600;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(147, 51, 234, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.faq-item:hover {
    border-color: #9333ea;
    box-shadow: 0 0 15px rgba(147, 51, 234, 0.3);
    transform: translateY(-2px);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    position: relative;
    background: rgba(255, 255, 255, 0.95);
}

.faq-question:hover {
    background: rgba(147, 51, 234, 0.1);
}

.faq-question h3 {
    color: #000000;
    margin: 0;
    font-size: 1.2rem;
    text-align: left;
    transition: color 0.3s ease;
    padding-right: 2rem;
    font-weight: 500;
}

.faq-question:hover h3 {
    color: #a855f7;
}

.faq-toggle {
    color: #9333ea;
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: rgba(147, 51, 234, 0.1);
    border-radius: 50%;
    padding: 0.5rem;
}

.faq-toggle i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    background: rgba(255, 255, 255, 0.95);
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.5s ease, opacity 0.3s ease, transform 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    transition: max-height 0.5s ease, opacity 0.3s ease, transform 0.3s ease;
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    color: #000000;
    line-height: 1.6;
    text-align: left;
    transition: opacity 0.3s ease;
    font-weight: 400;
}

.faq-item.active .faq-answer p {
    opacity: 1;
}

/* Add a subtle animation for the FAQ items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item {
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: calc(var(--item-index) * 0.1s);
    opacity: 0;
}

/* Add a focus state for accessibility */
.faq-question:focus {
    outline: 2px solid #9333ea;
    outline-offset: -2px;
}

/* Add a subtle hover effect for the toggle */
.faq-toggle:hover {
    color: #a855f7;
    transform: scale(1.1);
    background: rgba(147, 51, 234, 0.2);
}

/* Add a subtle transition for the answer text */
.faq-answer p {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Add a subtle shadow effect when expanded */
.faq-item.active {
    box-shadow: 0 5px 15px rgba(147, 51, 234, 0.3);
}

@media (max-width: 768px) {
    .bonus-faq {
        padding: 2rem 0;
    }

    .faq-container {
        padding: 0 1rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
        padding: 1rem;
    }
}

.bonus-details {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
}

.bonus-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(147, 51, 234, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.bonus-details h2 {
    color: #9333ea;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 600;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.2);
}

.bonus-header {
    background: linear-gradient(135deg, #9333ea 0%, #a855f7 100%);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bonus-header i {
    font-size: 2rem;
    color: white;
}

.bonus-header h3 {
    color: white;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.bonus-content {
    padding: 2rem;
}

.bonus-intro {
    color: #000000;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.bonus-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bonus-features li {
    color: #000000;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    line-height: 1.5;
}

.bonus-features li:last-child {
    border-bottom: none;
}

.bonus-features strong {
    color: #9333ea;
    font-weight: 600;
}

@media (max-width: 768px) {
    .bonus-details {
        padding: 2rem 0;
    }

    .bonus-details h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .bonus-header {
        padding: 1rem;
    }

    .bonus-header i {
        font-size: 1.5rem;
    }

    .bonus-header h3 {
        font-size: 1.2rem;
    }

    .bonus-content {
        padding: 1.5rem;
    }

    .bonus-intro {
        font-size: 1rem;
    }

    .bonus-features li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }
}

.cta-button {
    display: inline-block;
    background: linear-gradient(90deg, #9333ea 0%, #a855f7 100%);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 16px 40px;
    border: none;
    border-radius: 32px;
    box-shadow: 0 4px 16px rgba(147, 51, 234, 0.15);
    text-decoration: none;
    text-align: center;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    margin-top: 24px;
    letter-spacing: 0.5px;
}

.cta-button:hover, .cta-button:focus {
    background: linear-gradient(90deg, #a855f7 0%, #9333ea 100%);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(147, 51, 234, 0.25);
    text-decoration: none;
    outline: none;
}
