html, body, div, span, applet, object, iframe,
.text-bonus, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

*,*:after,*:before {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #1a1a2e;
}

.banner {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 500px;
    background: url("../images/desc-banner.webp") no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0 20px 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;

    @media(max-width: 768px) {
        background: url("../images/mob-banner.png") no-repeat 0 0;
        background-size: cover;
        min-height: 700px;
    }
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(255, 69, 0, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.floating-coins {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.coin {
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 50%;
    opacity: 0.7;
    animation: float 6s ease-in-out infinite;
}

.coin::after {
    content: '€';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #b8860b;
    font-weight: bold;
    font-size: 14px;
}

.coin:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.coin:nth-child(2) { top: 20%; right: 15%; animation-delay: 1s; }
.coin:nth-child(3) { bottom: 20%; left: 20%; animation-delay: 2s; }
.coin:nth-child(4) { bottom: 15%; right: 10%; animation-delay: 3s; }
.coin:nth-child(5) { top: 50%; left: 5%; animation-delay: 4s; }
.coin:nth-child(6) { top: 60%; right: 8%; animation-delay: 5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 600px;
    width: 100%;
    background: rgba(0 ,0 ,0 , .6);
    border-radius: 15px;
    padding: 15px;
}

.subtitle {
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.text-bonus {
    color: #ffd700;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.bonus-text {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #000;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
    border: 2px solid transparent;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(0, 255, 136, 0.5);
    }
}

.cta-button:hover {
    background: linear-gradient(45deg, #00cc6a, #00ff88);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 255, 136, 0.4);
}

.cta-subtext {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    margin-top: 5px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner {
        min-height: 350px;
        padding: 30px 15px;
    }

    .subtitle {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .text-bonus {
        font-size: 4rem;
        margin-bottom: 8px;
    }

    .bonus-text {
        font-size: .8rem;
        margin-bottom: 25px;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .coin {
        width: 25px;
        height: 25px;
    }

    .coin::after {
        font-size: 12px;
    }

    .cta-subtext {
        display: block;
        font-size: 0.6rem;
        font-weight: 400;
        margin-top: 5px;
        opacity: 0.8;
    }
}

@media (max-width: 480px) {
    .banner {
        min-height: 300px;
        padding: 25px 10px;
    }

    .subtitle {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .text-bonus {
        font-size: 3.2rem;
    }

    .bonus-text {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .coin {
        width: 20px;
        height: 20px;
    }

    .coin::after {
        font-size: 10px;
    }
}

.header {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 0 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: #00ff88;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    color: #00ff88;
    transform: translateY(-2px);
}

.auth-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-login {
    color: #ffffff;
    background: transparent;
    border: 2px solid #00ff88;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: #00ff88;
    color: #1a1a2e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.btn-register {
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #ffffff;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
    background: linear-gradient(45deg, #00cc6a, #00ff88);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
    background: #00ff88;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
    background: #00ff88;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 3rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav-item {
    margin: 1rem 0;
}

.mobile-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 1rem 2rem;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
}

.mobile-auth-buttons {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 200px;
}

.mobile-auth-buttons .btn-login,
.mobile-auth-buttons .btn-register {
    text-align: center;
    padding: 0.8rem 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }

    .auth-buttons {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.3rem;
    }
}

/* Overlay for mobile menu */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 998;
}

.overlay.active {
    display: block;
}

.what-we-offer-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.what-we-offer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%2300ff88" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="%2300ff88" opacity="0.05"/><circle cx="40" cy="80" r="1" fill="%2300ff88" opacity="0.1"/></svg>') repeat;
    opacity: 0.3;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: #ffffff;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    font-style: italic;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00ff88, transparent);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.05), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid #00ff88;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    font-size: 2rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.feature-card:hover .feature-icon {
    background: rgba(0, 255, 136, 0.2);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.feature-title {
    color: #ffffff;
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.feature-description {
    color: #b8bcc8;
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    line-height: 1.7;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

/* Specific icon styles */
.icon-gift {
    color: #00ff88;
}

.icon-game {
    color: #00ff88;
}

.icon-diamond {
    color: #00ff88;
}

.icon-live {
    color: #00ff88;
}

.icon-money {
    color: #00ff88;
}

.icon-support {
    color: #00ff88;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .what-we-offer-section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .feature-card {
        padding: 1.5rem 1rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }
}

/* Animation for cards on load */
.feature-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.betonred-content-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #1a1a2e;
    color: #ffffff;
    padding: 2rem 0;
}

.betonred-content-wrapper .content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.betonred-content-wrapper h2 {
    color: #ffffff;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin: 3rem 0 1.5rem 0;
    line-height: 1.3;
    text-transform: capitalize;
}

.betonred-content-wrapper h2:first-child {
    margin-top: 0;
}

.betonred-content-wrapper h3 {
    color: #00ff88;
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    line-height: 1.4;
}

.betonred-content-wrapper h4 {
    color: #ffffff;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 600;
    margin: 1.5rem 0 0.8rem 0;
    line-height: 1.4;
}

.betonred-content-wrapper p {
    color: #b8bcc8;
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-weight: 400;
}

.betonred-content-wrapper strong {
    color: #ffffff;
    font-weight: 600;
}

.betonred-content-wrapper ul {
    margin: 1rem 0 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.betonred-content-wrapper ul li {
    color: #b8bcc8;
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    line-height: 1.6;
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
}

.betonred-content-wrapper ul li::before {
    content: '▶';
    color: #00ff88;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

.betonred-content-wrapper ol {
    margin: 1rem 0 1.5rem 0;
    padding-left: 2rem;
    counter-reset: item;
}

.betonred-content-wrapper ol li {
    color: #b8bcc8;
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    line-height: 1.6;
    margin-bottom: 0.8rem;
    padding-left: 1rem;
    counter-increment: item;
    position: relative;
    list-style: none;
}

.betonred-content-wrapper ol li::before {
    content: counter(item);
    background: #00ff88;
    color: #1a1a2e;
    font-weight: 600;
    font-size: 0.9rem;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: -2.5rem;
    top: 0;
}

.betonred-content-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.betonred-content-wrapper table tbody tr:first-child {
    background: rgba(0, 255, 136, 0.1);
}

.betonred-content-wrapper table tbody tr:first-child td {
    color: #ffffff;
    font-weight: 600;
}

.betonred-content-wrapper table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #b8bcc8;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    vertical-align: top;
}

.betonred-content-wrapper table tbody tr:last-child td {
    border-bottom: none;
}

.betonred-content-wrapper table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.betonred-content-wrapper table tbody tr:hover {
    background: rgba(0, 255, 136, 0.05);
}

.betonred-content-wrapper table td p {
    margin: 0;
    color: inherit;
}

.betonred-content-wrapper table td strong {
    color: #ffffff;
}

/* Table scroll wrapper for mobile */
.betonred-content-wrapper .table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.betonred-content-wrapper .table-wrapper::-webkit-scrollbar {
    height: 6px;
}

.betonred-content-wrapper .table-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.betonred-content-wrapper .table-wrapper::-webkit-scrollbar-thumb {
    background: #00ff88;
    border-radius: 3px;
}

.betonred-content-wrapper .table-wrapper::-webkit-scrollbar-thumb:hover {
    background: #00cc6a;
}

.betonred-content-wrapper .table-wrapper table {
    margin: 0;
    border: none;
    min-width: 600px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .betonred-content-wrapper .content-container {
        padding: 0 1rem;
    }

    .betonred-content-wrapper h2 {
        margin: 2.5rem 0 1rem 0;
    }

    .betonred-content-wrapper h3 {
        margin: 1.5rem 0 0.8rem 0;
    }

    .betonred-content-wrapper ul li {
        padding-left: 1.5rem;
    }

    .betonred-content-wrapper ul li::before {
        font-size: 0.7rem;
    }

    .betonred-content-wrapper ol {
        padding-left: 1.5rem;
    }

    .betonred-content-wrapper ol li {
        padding-left: 0.8rem;
    }

    .betonred-content-wrapper ol li::before {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.8rem;
        left: -2rem;
    }

    .betonred-content-wrapper table td {
        padding: 0.8rem 0.6rem;
    }

    .betonred-content-wrapper .table-wrapper {
        margin: 1.5rem -1rem;
        border-left: none;
        border-right: none;
        border-radius: 0;
    }

    .betonred-content-wrapper .table-wrapper table {
        min-width: 500px;
    }
}

@media (max-width: 480px) {
    .betonred-content-wrapper .content-container {
        padding: 0 0.8rem;
    }

    .betonred-content-wrapper table td {
        padding: 0.6rem 0.4rem;
        font-size: 0.85rem;
    }

    .betonred-content-wrapper .table-wrapper table {
        min-width: 450px;
    }
}

/* Section spacing */
.betonred-content-wrapper > *:first-child {
    margin-top: 0;
}

.betonred-content-wrapper > *:last-child {
    margin-bottom: 0;
}

/* Link styles */
.betonred-content-wrapper a {
    color: #00ff88;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.betonred-content-wrapper a:hover {
    border-bottom-color: #00ff88;
    color: #00cc6a;
}

/* Code and pre styles if needed */
.betonred-content-wrapper code {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.betonred-content-wrapper pre {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.betonred-content-wrapper pre code {
    background: none;
    padding: 0;
    border-radius: 0;
    color: #b8bcc8;
}

.footer {
    background: linear-gradient(135deg, #0d1117 0%, #161b22 50%, #1a1a2e 100%);
    color: #ffffff;
    padding: 4rem 0 2rem;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00ff88, transparent);
    box-shadow: 0 0 10px #00ff88;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #00ff88;
    border-radius: 1px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-link {
    color: #b8bcc8;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.3rem 0;
    position: relative;
    display: inline-block;
}

.footer-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background: #00ff88;
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #00ff88;
    transform: translateX(5px);
}

.footer-link:hover::before {
    width: 100%;
}

.newsletter {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.newsletter-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.newsletter-text {
    color: #b8bcc8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #00ff88;
    box-shadow: 0 0 0 2px rgba(0, 255, 136, 0.2);
}

.newsletter-input::placeholder {
    color: #6b7280;
}

.newsletter-btn {
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #ffffff;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #b8bcc8;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #00ff88;
    color: #1a1a2e;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: #6b7280;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #00ff88;
}

.payment-methods {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.payment-method {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #b8bcc8;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.payment-method:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 2rem;
    }

    .footer-container {
        padding: 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        padding: 0.8rem 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        gap: 1rem;
    }

    .payment-methods {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .newsletter {
        padding: 1.5rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .payment-methods {
        flex-direction: column;
        gap: 0.5rem;
    }

    .payment-method {
        width: 100%;
        text-align: center;
    }
}

/* Decorative elements */
.footer::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}