:root {
    --main-bg-color: #1a2b2b;
    --accent-color: #00ff7f;
    --accent-color-dark: #00cc66;
    --accent-glow: 0 0 10px rgba(0, 255, 127, 0.5);
    --text-color: #e0e0e0;
    --button-color: #2a9d8f;
}

body {
    font-family: 'Ubuntu', sans-serif;
    background: var(--main-bg-color);
    color: var(--text-color);
    background-image: url('../img/back.jpg');
    background-size: cover;
    background-attachment: fixed;
}

.container {
    max-width: 900px !important;
}

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');

.header {
    background: rgba(0,0,0,0.8);
    border-radius: 35px;
    margin: 0 auto;
    z-index: 1100;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 255, 127, 0.2);
    box-shadow: 0 0 20px rgba(0, 255, 127, 0.1);
    max-height: 75px;
    left: 50%;
    width: 95%;
    max-width: 1100px;
}

.navbar {
    height: 100%;
    display: flex;
    align-items: center;
}

.navbar > .container-fluid {
    padding: 0;
}

.navbar-nav {
    margin-left: auto;
    margin-right: 50px;
}

.nav-link {
    color: var(--accent-color) !important;
    transition: all 0.3s ease;
    padding: 8px 20px !important;
    margin: 0 5px;
}

.nav-link:hover {
    color: #fff !important;
}

.logo-text {
    font-family: 'Ubuntu', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(45deg, #fff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-number {
    font-size: 34px;
    font-weight: bold;
    margin-left: 2px;
    background: linear-gradient(45deg, var(--accent-color), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-collapse {
    display: flex;
    align-items: center;
}

.warning-top {
    color: #fff;
    text-align: center;
    padding: 10px;
    width: 100%;
    top: 0;
    left: 0;
  /*  z-index: 1101;*/
    opacity: 0.9;
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .warning-top {
        position: relative;
        /*top: 65px;*/
        margin: 0;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(5px);
       /* margin-bottom: 20px;*/
    }

    .header {
        top: 0;
    }

    main {
        margin-top: 65px;
    }

    .navbar-collapse {
        top: 65px;
    }
}

.bookmaker-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 40px 0;
}

.bookmaker-card {
    display: grid;
    grid-template-columns: 100px 2fr 1fr auto;
    align-items: center;
    gap: 20px;
    background: #fff;
    color: #333;
    border: 1px solid rgba(0, 255, 127, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.bookmaker-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-color), var(--accent-color-dark));
}

.bookmaker-card > * {
    display: flex;
    align-items: center;
}

.bookmaker-card .logo {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.position {
    position: absolute;
    top: 0;
    left: 0;
    width: 35px;
    height: 35px;
    background: var(--accent-color);
    color: #000;
    border-radius: 0 0 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 0 10px rgba(0, 255, 127, 0.3);
}

.exclusive {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: linear-gradient(45deg, var(--button-color), var(--accent-color));
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8em;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(0, 255, 127, 0.2);
    width: auto;
}

.bonus {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
    background: rgba(0, 255, 127, 0.05);
    border-radius: 10px;
}

.bonus-label {
    color: #666;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.bonus h3 {
    color: #000;
    font-size: 1.4em;
    margin: 5px 0;
    font-weight: 900;
    background: linear-gradient(45deg, var(--button-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features {
    justify-content: flex-start;
    width: 100%;
}

.features ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 0;
    width: 100%;
}

.features li {
    display: flex;
    align-items: center;
    font-size: 0.85em;
    color: #555;
    padding: 5px 10px;
    background: rgba(0, 255, 127, 0.03);
    border-radius: 8px;
    margin: 2px 0;
    transition: all 0.3s ease;
}

.features li:before {
    content: "✓";
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2em;
    margin-right: 10px;
    min-width: 20px;
}

.features li:hover {
    background: rgba(0, 255, 127, 0.06);
    transform: translateX(5px);
}

.signup-btn {
    background: linear-gradient(45deg, var(--button-color), var(--accent-color));
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 127, 0.2);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.signup-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: 0.5s;
}

.signup-btn:hover::before {
    left: 100%;
}

.signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 127, 0.3);
}

.rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stars {
    color: #ffd700;
    font-size: 1.2em;
}

.score {
    font-weight: bold;
}

.info-sections {
    padding: 30px;
    margin: 30px 0;
    background: rgba(0,0,0,0.8);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 127, 0.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.info-sections h1 {
    color: var(--accent-color);
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.info-sections h2 {
    color: var(--text-color);
    margin: 25px 0 15px;
    font-size: 1.8rem;
}

.info-sections section {
    margin-bottom: 40px;
}

.info-sections ul {
    list-style: none;
    padding-left: 0;
}

.info-sections ul li {
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

.info-sections ul li:before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.info-sections p {
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}

.nav-links {
    margin: 0;
    display: flex;
    align-items: center;
}

.nav-links a {
    position: relative;
    overflow: hidden;
    color: var(--accent-color);
    text-decoration: none;
    margin-left: 20px;
    padding: 5px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #fff;
    background: rgba(0, 255, 127, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 127, 0.2);
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s ease;
}

.nav-links a:hover:after {
    width: 80%;
    left: 10%;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links h3 {
    color: var(--accent-color);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 500;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    display: block;
    padding: 8px 0;
    transition: all 0.3s ease;
    opacity: 0.8;
    font-size: 1rem;
    position: relative;
}

.footer-links a::before {
    content: '→';
    color: var(--accent-color);
    margin-right: 8px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    opacity: 1;
    padding-left: 10px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-bottom {
    margin-top: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.certifications {
    margin: 20px 0;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.certifications img {
    height: 30px;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.certifications img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

.footer {
    background: rgba(0,0,0,0.9);
    padding: 60px 0 30px;
    margin-top: 40px;
    border-top: 2px solid rgba(0, 255, 127, 0.2);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent,
        var(--accent-color),
        transparent
    );
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-about {
    padding-right: 30px;
}

.footer-about h3 {
    color: var(--accent-color);
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-about p {
    color: #fff;
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 255, 127, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    color: #000;
    transform: translateY(-3px);
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .bookmaker-card {
        flex-direction: column;
    }

    .bookmaker-card .logo {
        margin: 0;
        padding-top: 10px;
        flex: 0 0 auto;
    }

    .bonus {
        margin: 0 15px;
        width: auto;
        padding: 10px;
        flex: 1;
    }

    .features {
        padding: 0;
        margin: 10px 0;
        display: flex;
        justify-content: center;
        flex: 1;
        min-width: 200px;
    }

    .right-column {
        border-left: none;
        padding: 0 15px;
        margin: 0;
        padding-top: 15px;
        border-top: none;
        flex: 0 0 auto;
    }

    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        padding: 20px;
        margin-top: 15px;
        align-items: stretch;
    }

    .navbar-nav {
        align-items: center;
    }
}

.header .logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header .logo svg {
    animation: neonPulse 2s infinite;
}

.age-restriction {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    box-shadow: var(--accent-glow);
}

.support {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin: 20px 0;
}

.copyright {
    text-align: center;
    font-size: 0.9em;
    opacity: 0.7;
    padding-top: 20px;
    margin-top: 20px;
}

.logo svg {
    height: 40px;
    width: auto;
}

.logo svg path {
    transition: stroke-dasharray 0.3s;
}

.logo:hover svg path {
    stroke-dasharray: 100;
    animation: dash 1.5s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: 200;
    }
}

.info-sections ul li {
    line-height: 1.8;
    font-size: 1.1rem;
}

.info-sections section + section {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

.info-sections h2 {
    position: relative;
    padding-left: 15px;
}

.info-sections h2:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: linear-gradient(
        to bottom,
        var(--accent-color),
        var(--accent-color-dark)
    );
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 255, 127, 0.5);
}

.info-sections .event-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.info-sections .event-item {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.info-sections .event-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.info-sections .strategy-tip {
    background: rgba(42,157,143,0.1);
    border-left: 4px solid var(--button-color);
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 10px 10px 0;
}

.bet-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.bet-type {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.bet-type:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.bet-type h3 {
    color: var(--accent-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.betting-steps {
    counter-reset: step;
    list-style: none;
    padding: 0;
}

.betting-steps li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 30px;
}

.betting-steps li:before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: var(--accent-color);
    color: var(--main-bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.competitions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.competition {
    background: linear-gradient(145deg, rgba(42,157,143,0.1) 0%, rgba(0,255,127,0.05) 100%);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(42,157,143,0.2);
}

.competition h3 {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

@keyframes neonPulse {
    0%, 100% { filter: drop-shadow(0 0 5px var(--accent-color)) drop-shadow(0 0 10px var(--accent-color)); }
    50% { filter: drop-shadow(0 0 8px var(--accent-color)) drop-shadow(0 0 15px var(--accent-color)); }
}

.logo-link {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Ubuntu', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(45deg, #fff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-number {
    font-size: 34px;
    font-weight: bold;
    margin-left: 2px;
    background: linear-gradient(45deg, var(--accent-color), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.right-column {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 15px;
    margin-left: auto;
    padding-left: 20px;
    border-left: 1px solid rgba(0, 255, 127, 0.1);
}

.navbar-toggler {
    z-index: 1002;
    border-color: var(--accent-color);
    padding: 0.5rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 255, 127, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:focus {
    box-shadow: 0 0 10px rgba(0, 255, 127, 0.3);
}

.navbar > .container-fluid {
    position: relative;
}

.footer-warning {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--accent-color);
    font-size: 0.9rem;
}

.footer-warning .helpline-numbers {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.footer-warning .helpline-numbers li {
    color: #fff;
    opacity: 0.9;
    padding: 5px 0;
    font-size: 0.95rem;
}

@media (max-width: 991px) {
    .bookmaker-card {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 15px;
        text-align: center;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        width: 100%;
        margin: 4px 0;
    }

    .bookmaker-cards {
        flex-direction: column;
        justify-content: center;
    }

    .bookmaker-card .logo {
        width: 80px;
        margin: 0;
        padding: 5px;
        flex: 0 0 auto;
    }

    .bonus {
        margin: 0 10px;
        width: auto;
        padding: 5px;
        flex: 1;
    }

    .features {
        display: none;
    }

    .right-column {
        border-left: none;
        padding-left: 0;
        margin: 0;
        padding: 0 8px;
        border-top: none;
        flex: 0 0 auto;
    }

    .signup-btn {
        width: 100%;
        padding: 8px 15px;
        font-size: 0.9em;
    }

    .rating {
        margin-bottom: 3px;
    }

    .bonus h3 {
        margin: 3px 0;
    }

    .bonus-label {
        margin-bottom: 5px;
        font-size: 0.8em;
    }

    .age-restriction {
        display: none;
    }

    .navbar > .container-fluid {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header {
        width: 100%;
        max-width: 100%;
        margin: 0;
        border-radius: 0;
        top: 40px;
        left: 0;
        transform: none;
    }

    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        padding: 20px;
        top: 105px;
        left: 0;
        right: 0;
        align-items: center;
        z-index: 1001;
        margin: 0;
    }

    .navbar-nav {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    .nav-link {
        padding: 12px 20px !important;
        margin: 5px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-about {
        padding-right: 0;
        text-align: center;
    }

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

    .footer-links {
        text-align: center;
    }

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

    .footer-links a::before {
        display: none;
    }

    .logo-text {
        font-size: 24px;
    }

    .logo-number {
        font-size: 30px;
    }

    .footer-warning {
        text-align: center;
        border-left: none;
        border-top: 3px solid var(--accent-color);
    }
}

.footer-warning {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--accent-color);
    font-size: 0.9rem;
}

.footer-warning .helpline-numbers {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.footer-warning .helpline-numbers li {
    color: #fff;
    opacity: 0.9;
    padding: 5px 0;
    font-size: 0.95rem;
}

@media (max-width: 991px) {
    .footer-warning .helpline-numbers {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.footer-warning h3 {
    color: var(--accent-color);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 500;
}

.footer-warning p {
    color: #fff;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
    font-weight: 500;
}

.warning-section {
    background: rgba(255, 77, 77, 0.1);
    border-left: 4px solid #ff4d4d;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
}

.warning-section h2 {
    color: #ff4d4d !important;
    margin-top: 0 !important;
}

.info-sections section ul {
    margin: 20px 0;
}

.info-sections section ul li {
    margin: 15px 0;
    line-height: 1.6;
}

.help-resources {
    background: rgba(0, 255, 127, 0.05);
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
}

.help-resources h3 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin: 20px 0 15px;
    padding-left: 15px;
    border-left: 3px solid var(--accent-color);
}

.help-resources h3:first-child {
    margin-top: 0;
}

.help-resources ul {
    margin: 15px 0;
}

.help-resources ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.help-resources ul li:last-child {
    border-bottom: none;
}

.age-verification-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.age-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(26, 43, 43, 0.95);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    border: 1px solid var(--accent-color);
    box-shadow: 0 0 20px rgba(0, 255, 127, 0.2);
}

.age-modal-content h2 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 24px;
}

.age-buttons {
    display: flex;
    gap: 15px;
    margin: 25px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-confirm {
    background: var(--accent-color);
    color: #000;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-deny {
    background: #ff4d4d;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.age-warning {
    color: #ff4d4d;
    font-size: 0.9em;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .bookmaker-card {
        flex-direction: column;
    }

    .bonus {
        width: 100%;
        margin: 5px 0;
    }

    .features {
        width: 100%;
    }

    .right-column {
        width: 100%;
        padding: 8px 0 0;
        border-top: 1px solid rgba(0, 255, 127, 0.1);
    }
}