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: Arial, sans-serif;
    background-color: #000;
    margin: 0;

}

.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;
    }
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.feature-card {
    background: linear-gradient(135deg, #2c2c2c 0%, #1f1f1f 100%);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.feature-subtitle {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.4;
}

/* Specific styling for different features */
.rocket { color: #ff6b6b; }
.pig { color: #ff9ff3; }
.diamond { color: #74c0fc; }
.cherry { color: #ff8cc8; }
.target { color: #51cf66; }

.support-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.support-card {
    background: linear-gradient(135deg, #2c2c2c 0%, #1f1f1f 100%);
    border-radius: 15px;
    padding: 30px 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.support-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.support-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-top: 5px;
}

.support-icon.clock {
    background: linear-gradient(45deg, #00d4aa, #00b4d8);
}

.support-icon.globe {
    background: linear-gradient(45deg, #f72585, #b5179e);
}

.support-icon.diamond-support {
    background: linear-gradient(45deg, #7209b7, #480ca8);
}

.support-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.support-content p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-container {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 15px;
    }

    .feature-card {
        padding: 20px 15px;
    }

    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .feature-subtitle {
        font-size: 0.85rem;
    }

    .support-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .support-card {
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .support-icon {
        align-self: center;
    }
}

@media (max-width: 480px) {

    .features-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 12px;
    }

    .feature-card {
        padding: 18px 12px;
    }

    .feature-icon {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-subtitle {
        font-size: 0.8rem;
    }

    .support-card {
        padding: 20px 15px;
    }

    .support-content h3 {
        font-size: 1.2rem;
    }

    .support-content p {
        font-size: 0.9rem;
    }
}

.footer {
    margin-top: 40px;
    background: linear-gradient(135deg, #2c2c2c 0%, #1f1f1f 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 20px 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    color: #00ff88;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: block;
    padding: 2px 0;
}

.footer-links a:hover {
    color: #ffd700;
    transform: translateX(5px);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    align-items: center;
}

.footer-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-info a {
    color: #999999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-info a:hover {
    color: #ffd700;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-end;
}

.payment-icon {
    background: #333333;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.payment-icon:hover {
    background: #444444;
    border-color: #ffd700;
    transform: translateY(-2px);
}

.responsible-gaming {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.responsible-gaming p {
    color: #888888;
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.responsible-gaming a {
    color: #ffd700;
    text-decoration: none;
}

.responsible-gaming a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 30px;
    }

    .footer-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .footer-bottom {
        margin-top: 30px;
        padding-top: 25px;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-info {
        justify-content: center;
        gap: 20px;
    }

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

@media (max-width: 480px) {
    .footer {
        padding: 30px 15px 25px;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-info {
        flex-direction: column;
        gap: 10px;
    }

    .payment-methods {
        gap: 10px;
    }

    .payment-icon {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
}

.header {
    background: linear-gradient(135deg, #2c2c2c 0%, #1f1f1f 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 20px;
    position: relative;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    text-decoration: none;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo .highlight {
    color: #00ff88;
}

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

.nav-item a {
    color: #cccccc;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 6px;
}

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

.auth-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.login-btn {
    background: transparent;
    color: #cccccc;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

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

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #2c2c2c 0%, #1f1f1f 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav a {
    color: #cccccc;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.mobile-auth {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.mobile-auth .login-btn,
.mobile-auth .register-btn {
    text-align: center;
    padding: 12px 20px;
}

.content-placeholder {
    padding: 60px 20px;
    text-align: center;
    color: #666;
    font-size: 1.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 15px;
    }

    .nav-container {
        height: 60px;
    }

    .logo {
        font-size: 1.6rem;
    }

    .mobile-nav {
        padding: 25px 15px;
    }

    .mobile-nav a {
        font-size: 1rem;
        padding: 10px 12px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0 10px;
    }

    .logo {
        font-size: 1.4rem;
    }

    .mobile-nav {
        padding: 20px 10px;
        gap: 15px;
    }

    .mobile-auth {
        gap: 12px;
    }

    .mobile-auth .login-btn,
    .mobile-auth .register-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

.payment-container {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    background: #2c2c2c;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.payment-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.payment-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    height: 50px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.payment-logo:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.05);
}

.payment-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* Payment method specific styles */

.content-placeholder {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-size: 1.2rem;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {

    .payment-container {
        padding: 0 10px;
    }

    .payment-methods {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        gap: 25px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .payment-methods::-webkit-scrollbar {
        display: none;
    }

    .payment-logo {
        flex-shrink: 0;
        min-width: 70px;
    }

    .payment-logo img {
        width: 50px;
        height: 50px;
        object-fit: contain;
    }

    .mastercard {
        padding: 10px 14px;
        font-size: 0.8rem;
    }

    .bitcoin {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .visa {
        padding: 8px 16px;
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .jeton {
        font-size: 1.1rem;
    }

    .astropay {
        font-size: 1rem;
    }

    .mifinity {
        font-size: 0.8rem;
    }

    .ezeewallets {
        font-size: 0.8rem;
    }

    .banking {
        font-size: 0.9rem;
    }

    /* Add scroll indicators */
    .payment-container::before {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 30px;
        background: linear-gradient(to left, #2c2c2c, transparent);
        pointer-events: none;
        z-index: 1;
    }

    .payment-container {
        position: relative;
    }
}

@media (max-width: 480px) {
    .payment-methods {
        gap: 20px;
        padding: 8px 0;
    }

    .payment-logo {
        min-width: 60px;
        height: 40px;
        padding: 4px 10px;
    }

    .mastercard {
        padding: 8px 12px;
        font-size: 0.75rem;
    }

    .bitcoin {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .visa {
        padding: 6px 12px;
        font-size: 0.9rem;
    }

    .jeton {
        font-size: 1rem;
    }

    .astropay {
        font-size: 0.9rem;
    }

    .mifinity {
        font-size: 0.75rem;
    }

    .ezeewallets {
        font-size: 0.75rem;
    }

    .banking {
        font-size: 0.8rem;
    }
}


.betonred-content  {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.5;
}

.betonred-content h2 {
    color: #00ff88;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #00ff88;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.betonred-content h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 30px 0 15px 0;
    padding-left: 15px;
    border-left: 4px solid #00ff88;
}

.betonred-content p {
    margin-bottom: 15px;
    color: #cccccc;
    font-size: 1rem;
    text-align: justify;
}

.betonred-content ul {
    margin: 20px 0;
    padding-left: 0;
}

.betonred-content li {
    list-style: none;
    margin: 8px 0;
    padding: 8px 15px;
    background: #2c2c2c;
    border-radius: 6px;
    border-left: 3px solid #00ff88;
    color: #e0e0e0;
    font-weight: 500;
}

.betonred-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: #2c2c2c;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.betonred-content .table-wrapper {
    overflow-x: auto;
    margin: 25px 0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

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

.betonred-content .table-wrapper::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 4px;
}

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

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

.betonred-content th {
    background: #00ff88;
    color: #000000;
    padding: 15px 10px;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.betonred-content td {
    padding: 12px 10px;
    border-bottom: 1px solid #404040;
    color: #e0e0e0;
}

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

.betonred-content tr:nth-child(even) {
    background: #333333;
}

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

.betonred-content .highlight-box {
    background: #2c2c2c;
    border: 1px solid #404040;
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
    position: relative;
}

.betonred-content .highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #00ff88;
    border-radius: 2px 0 0 2px;
}

.betonred-content .intro-section {
    background: #2c2c2c;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid #404040;
    text-align: center;
}

.betonred-content .intro-section h2 {
    color: #00ff88;
    margin-bottom: 20px;
    border: none;
    padding: 0;
}

.betonred-content .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.betonred-content .feature-card {
    background: #2c2c2c;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #404040;
    text-align: center;
}

.betonred-content .feature-card h4 {
    color: #00ff88;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.betonred-content .feature-card p {
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
}

.betonred-content .quick-facts {
    background: #1f1f1f;
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
    border: 2px solid #00ff88;
}

.betonred-content .quick-facts h4 {
    color: #00ff88;
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.betonred-content .facts-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.betonred-content .facts-list span {
    background: #fff;
    padding: 8px 12px;
    border-radius: 5px;
    display: block;
    text-align: center;
    font-weight: 600;
    border-left: 3px solid #00ff88;
}

.betonred-content .steps-list {
    counter-reset: step-counter;
}

.betonred-content .steps-list li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 50px;
    margin: 15px 0;
    background: #2c2c2c;
    border-left: 4px solid #00ff88;
}

.betonred-content .steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: #00ff88;
    color: #000;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .betonred-content .container {
        padding: 20px 15px;
    }

    .betonred-content h2 {
        font-size: 1.5rem;
        margin: 30px 0 15px 0;
    }

    .betonred-content h3 {
        font-size: 1.2rem;
        margin: 20px 0 10px 0;
    }

    .betonred-content .intro-section {
        padding: 20px;
    }

    .betonred-content .feature-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .betonred-content .table-wrapper {
        margin: 20px -15px;
        padding: 0 15px;
    }

    .betonred-content table {
        min-width: 500px;
        font-size: 0.9rem;
        margin: 0;
    }

    .betonred-content th,
    .betonred-content td {
        padding: 10px 8px;
        white-space: nowrap;
    }

    .betonred-content .highlight-box {
        padding: 20px;
    }

    .betonred-content .steps-list li {
        padding-left: 45px;
        margin: 12px 0;
    }
}

@media (max-width: 480px) {
    .betonred-content .container {
        padding: 15px 10px;
    }

    .betonred-content h2 {
        font-size: 1.3rem;
    }

    .betonred-content h3 {
        font-size: 1.1rem;
    }

    .betonred-content table {
        font-size: 0.8rem;
    }

    .betonred-content th,
    .betonred-content td {
        padding: 8px 6px;
    }

    .betonred-content .intro-section {
        padding: 15px;
    }

    .betonred-content .quick-facts {
        padding: 15px;
    }

    .betonred-content .facts-list {
        grid-template-columns: 1fr;
    }
}