    :root {
        --primary: #D4AF37;
        --primary-hover: #b5952f;
        --accent: #00ffa3;
        --bg-dark: #0f0f12;
        --bg-card: #1a1a20;
        --bg-glass: rgba(26, 26, 32, 0.85);
        --text-main: #e0e0e0;
        --text-muted: #a0a0a0;
        --danger: #ff3366;
        --font-main: 'Inter', sans-serif;
        --font-head: 'Oswald', sans-serif;
        --transition: all 0.3s ease;
        --nav-height: 80px;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: var(--font-main);
        background-color: var(--bg-dark);
        color: var(--text-main);
        line-height: 1.6;
        overflow-x: hidden;
    }

    a {
        text-decoration: none;
        color: inherit;
        transition: var(--transition);
    }

    ul {
        list-style: none;
    }

    img {
        max-width: 100%;
        display: block;
    }


    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: var(--font-head);
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #fff;
        margin-bottom: 1rem;
    }

    h2 {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 0.5rem;
        position: relative;
        display: inline-block;
    }

    .section-header {
        text-align: center;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .section-subtitle {
        color: var(--primary);
        font-size: 1.1rem;
        font-weight: 600;
        display: block;
        margin-top: 0.5rem;
    }


    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .btn {
        display: inline-block;
        padding: 12px 30px;
        border-radius: 5px;
        font-weight: 600;
        text-transform: uppercase;
        cursor: pointer;
        border: none;
        transition: var(--transition);
    }

    .btn-primary {
        background-color: var(--primary);
        color: #000;
    }

    .btn-primary:hover {
        background-color: var(--primary-hover);
        transform: translateY(-2px);
    }

    .btn-outline {
        border: 2px solid var(--primary);
        color: var(--primary);
        background: transparent;
    }

    .btn-outline:hover {
        background: var(--primary);
        color: #000;
    }

    .badge-18 {
        background: var(--danger);
        color: #fff;
        padding: 4px 8px;
        font-size: 0.8rem;
        border-radius: 4px;
        font-weight: bold;
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }


    header {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        background: rgba(15, 15, 18, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        height: var(--nav-height);
        display: flex;
        align-items: center;
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .logo {
        font-family: var(--font-head);
        font-size: 1.8rem;
        font-weight: 700;
        color: #fff;
    }

    .logo span {
        color: var(--primary);
    }

    .nav-menu {
        display: flex;
        gap: 20px;
        align-items: center;
    }

    .nav-link {
        font-size: 0.9rem;
        font-weight: 500;
        color: var(--text-main);
        position: relative;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--primary);
    }

    .nav-link.active::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--primary);
    }

    .hamburger {
        display: none;
        cursor: pointer;
        font-size: 1.5rem;
        color: #fff;
    }


    #hero {
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/hero.png');
        background-size: cover;
        background-position: center;
        text-align: center;
        padding-top: var(--nav-height);
    }

    .hero-content h1 {
        font-size: 3.5rem;
        margin-bottom: 1rem;
        text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    }

    .hero-sub {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        display: flex;
        gap: 15px;
        justify-content: center;
        margin-bottom: 3rem;
    }

    .hero-features {
        display: flex;
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
    }

    .hero-feat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        color: var(--text-muted);
    }

    .hero-feat-item i {
        font-size: 1.5rem;
        color: var(--primary);
    }


    section {
        padding: 80px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    }


    .about-content {
        background: var(--bg-card);
        padding: 40px;
        border-radius: 10px;
        border-left: 4px solid var(--primary);
    }

    .about-text p {
        margin-bottom: 1.5rem;
        text-align: justify;
    }


    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .service-card {
        background: var(--bg-glass);
        padding: 30px;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        transition: var(--transition);
    }

    .service-card:hover {
        transform: translateY(-5px);
        border-color: var(--primary);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .service-icon {
        font-size: 2rem;
        color: var(--primary);
        margin-bottom: 15px;
    }

    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .service-meta {
        color: var(--accent);
        font-size: 0.9rem;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .service-card p {
        font-size: 0.95rem;
        color: var(--text-muted);
    }


    .steps-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .step-block {
        background: linear-gradient(45deg, var(--bg-card), rgba(212, 175, 55, 0.05));
        padding: 30px;
        border-radius: 10px;
        position: relative;
    }

    .step-number {
        position: absolute;
        top: -20px;
        left: 20px;
        background: var(--primary);
        color: #000;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-family: var(--font-head);
        border-radius: 50%;
        font-size: 1.2rem;
    }

    .step-block h3 {
        margin-top: 10px;
        color: var(--primary);
    }

    .step-block p {
        font-size: 0.95rem;
        color: #ccc;
    }


    .bookmakers-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .bookie-card {
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
        color: #333;
        text-align: center;
    }

    .bookie-header {
        padding: 20px;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100px;
    }

    .bookie-header img {
        height: 100%;
    }

    .bookie-body {
        padding: 20px;
        background: #fff;
    }

    .rating {
        color: #f1c40f;
        margin-bottom: 10px;
    }

    .rating span {
        color: #666;
        font-size: 0.8rem;
        margin-left: 5px;
    }

    .bonus-list {
        text-align: left;
        margin: 15px 0;
        padding-left: 10px;
    }

    .bonus-list li {
        font-size: 0.9rem;
        margin-bottom: 5px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .bonus-list li i {
        color: var(--accent);
    }

    .bookie-card .bonus-list li i {
        color: #2ecc71;
    }


    .games-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .game-cat {
        background: var(--bg-card);
        padding: 20px;
        border-radius: 8px;
        text-align: center;
        transition: var(--transition);
        border: 1px solid transparent;
    }

    .game-cat:hover {
        border-color: var(--primary);
        background: rgba(255, 255, 255, 0.05);
    }

    .game-cat i {
        font-size: 2.5rem;
        color: var(--primary);
        margin-bottom: 15px;
    }


    .bonus-cards {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }

    .bonus-card {
        flex: 1 1 300px;
        background: linear-gradient(135deg, #2a2a35, #1a1a20);
        padding: 30px;
        border-radius: 15px;
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .bonus-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--accent);
    }

    .bonus-highlight {
        font-size: 1.8rem;
        color: var(--accent);
        font-weight: bold;
        margin: 10px 0;
        font-family: var(--font-head);
    }

    .disclaimer {
        font-size: 0.75rem;
        color: #777;
        margin-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 10px;
    }


    .review-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .review-card {
        background: var(--bg-card);
        padding: 25px;
        border-radius: 10px;
        font-style: italic;
    }

    .reviewer {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-top: 15px;
        font-style: normal;
    }

    .reviewer-avatar {
        width: 40px;
        height: 40px;
        background: var(--primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #000;
        font-weight: bold;
    }


    .accordion-item {
        background: var(--bg-card);
        margin-bottom: 10px;
        border-radius: 5px;
    }

    .accordion-header {
        padding: 15px 20px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 600;
        transition: background 0.2s;
    }

    .accordion-header:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        padding: 0 20px;
        color: var(--text-muted);
    }

    .accordion-item.active .accordion-content {
        padding: 15px 20px;
    }

    .accordion-icon {
        transition: transform 0.3s;
    }

    .accordion-item.active .accordion-icon {
        transform: rotate(180deg);
    }


    .contact-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        width: 100%;
        padding: 12px;
        margin-bottom: 15px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 5px;
        color: #fff;
        font-family: inherit;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
        outline: none;
        border-color: var(--primary);
    }

    .contact-info-item {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
    }

    .contact-info-item i {
        color: var(--primary);
        font-size: 1.2rem;
        margin-top: 5px;
    }


    .back-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        background: var(--primary);
        color: #000;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        opacity: 0;
        transition: opacity 0.3s, transform 0.3s;
        z-index: 900;
    }

    .back-to-top.visible {
        opacity: 1;
    }

    .back-to-top:hover {
        transform: translateY(-5px);
    }


    @media (max-width: 992px) {
        .contact-wrapper {
            grid-template-columns: 1fr;
        }

        .hero-content h1 {
            font-size: 2.5rem;
        }
    }

    @media (max-width: 768px) {
        .nav-menu {
            position: fixed;
            top: var(--nav-height);
            left: -100%;
            width: 100%;
            height: calc(100vh - var(--nav-height));
            background: #1a1a20;
            flex-direction: column;
            padding: 40px;
            transition: 0.3s;
            overflow-y: auto;
        }

        .nav-menu.active {
            left: 0;
        }

        .hamburger {
            display: block;
        }

        .hero-btns {
            flex-direction: column;
            align-items: center;
        }

        .btn {
            width: 100%;
            max-width: 300px;
            text-align: center;
        }

        h2 {
            font-size: 2rem;
        }
    }

    .sr-footer {
        background: #0b1017;
        color: #f4f4f4;
        font-size: 14px;
        line-height: 1.6;
        padding: 40px 20px 24px;
    }

    .sr-footer a {
        color: #f3cf55;
        text-decoration: none;
    }

    .sr-footer a:hover {
        text-decoration: underline;
    }

    .sr-footer-inner {
        max-width: 1200px;
        margin: 0 auto;
    }

    .sr-footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 24px;
        margin-bottom: 32px;
    }

    .sr-footer-brand {
        max-width: 520px;
    }

    .sr-footer-logo {
        display: inline-block;
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .sr-footer-brand-text {
        margin: 0;
        opacity: 0.9;
    }

    .sr-footer-badges {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 12px;
    }

    .sr-badge {
        min-height: 52px;
        border-radius: 999px;
        border: 1px solid rgba(243, 207, 85, 0.4);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(5, 8, 15, 0.7);
    }

    .sr-badge img {
        height: 60px;
        display: block;
    }

    .sr-badge-18 {
        background: #c0392b;
        border-color: #c0392b;
        color: #ffffff;
        font-weight: 700;
        font-size: 18px;
    }



    .sr-footer-columns {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 24px;
        padding-top: 12px;
        padding-bottom: 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .sr-footer-col h4 {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .sr-footer-col p {
        margin: 0 0 8px;
        opacity: 0.9;
    }

    .sr-footer-nav {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .sr-footer-nav li {
        margin-bottom: 6px;
    }

    .sr-footer-nav a {
        font-size: 14px;
    }



    .sr-footer-bottom {
        margin-top: 18px;
    }

    .sr-footer-disclaimer {
        margin: 0 0 10px;
        font-size: 13px;
        opacity: 0.9;
    }

    .sr-footer-copy {
        margin: 0 0 6px;
        font-size: 13px;
        opacity: 0.85;
    }

    .sr-footer-en {
        margin: 0;
        font-size: 12px;
        opacity: 0.75;
    }



    @media (max-width: 992px) {
        .sr-footer-columns {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (max-width: 640px) {
        .sr-footer-top {
            flex-direction: column;
        }

        .sr-footer-columns {
            grid-template-columns: 1fr;
        }

        .sr-footer {
            padding: 28px 16px 20px;
        }
    }

    .legal-content {
        padding: 100px 0 60px;
        background: var(--bg-dark);
    }

    .legal-content h1 {
        font-family: var(--font-head);
        font-size: 3rem;
        color: #fff;
        margin-bottom: 10px;
        text-transform: uppercase;
    }

    .legal-content .last-updated {
        display: block;
        margin-bottom: 40px;
        color: var(--text-muted);
        font-size: 0.9rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 20px;
    }

    .legal-content h2 {
        font-family: var(--font-head);
        color: var(--primary);
        font-size: 1.8rem;
        margin-top: 50px;
        margin-bottom: 20px;
        border-left: 3px solid var(--primary);
        padding-left: 15px;
    }

    .legal-content h3 {
        font-family: var(--font-head);
        color: #fff;
        font-size: 1.3rem;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .legal-content p {
        margin-bottom: 20px;
        color: #ccc;
        text-align: justify;
    }

    .legal-content ul {
        margin-bottom: 25px;
        padding-left: 20px;
        list-style: none;
    }

    .legal-content ul li {
        margin-bottom: 10px;
        position: relative;
        padding-left: 25px;
        color: #ccc;
    }

    .legal-content ul li::before {
        content: "\f054";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        color: var(--primary);
        position: absolute;
        left: 0;
        top: 4px;
        font-size: 0.8rem;
    }

    .legal-content .highlight-box {
        background: rgba(212, 175, 55, 0.1);
        border: 1px solid var(--primary);
        padding: 20px;
        border-radius: 8px;
        margin: 30px 0;
    }

    .legal-content ul li,
    .legal-content ol li {
        margin-bottom: 10px;
        padding-left: 10px;
    }

    .alert-box {
        background: rgba(255, 51, 102, 0.1);
        border: 1px solid var(--danger);
        padding: 25px;
        border-radius: 8px;
        margin: 30px 0;
    }

    .alert-box h4 {
        color: var(--danger);
        margin-bottom: 10px;
        text-transform: uppercase;
        font-family: var(--font-head);
    }

    .cookie-type-box {
        background: var(--bg-card);
        padding: 25px;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        margin-bottom: 20px;
    }

    .cookie-type-box h4 {
        color: var(--accent);
        margin-bottom: 10px;
        font-size: 1.1rem;
        font-family: var(--font-head);
        text-transform: uppercase;
    }

    .warning-box {
        background: rgba(255, 51, 102, 0.1);
        border: 1px solid var(--danger);
        padding: 30px;
        border-radius: 10px;
        margin: 40px 0;
    }

    .warning-box h4 {
        color: var(--danger);
        font-size: 1.4rem;
        font-family: var(--font-head);
        margin-bottom: 15px;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    ul.checklist {
        list-style: none;
        padding: 0;
    }

    ul.checklist li {
        background: rgba(255, 255, 255, 0.03);
        margin-bottom: 10px;
        padding: 15px 20px;
        border-radius: 6px;
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }

    ul.checklist li i {
        color: var(--primary);
        margin-top: 5px;
    }

    .help-center {
        background: linear-gradient(135deg, #1a1a20, #25252d);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 30px;
        border-radius: 10px;
        margin-top: 30px;
    }

    .help-center strong {
        color: #fff;
        display: block;
        margin-bottom: 5px;
    }

    .help-center a {
        font-weight: bold;
        font-size: 1.1rem;
    }

    .badge-18 {
        display: inline-block;
        background: var(--danger);
        color: white;
        padding: 5px 10px;
        border-radius: 4px;
        font-weight: bold;
        margin-bottom: 20px;
    }


    .age-modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(15, 15, 18, 0.98);
        backdrop-filter: blur(15px);
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s;
    }

    .age-modal-overlay.show {
        opacity: 1;
        visibility: visible;
    }

    .age-modal-content {
        background: var(--bg-card);
        border: 1px solid var(--primary);
        padding: 40px;
        border-radius: 15px;
        text-align: center;
        max-width: 500px;
        width: 100%;
        box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
    }

    .age-icon {
        font-size: 3rem;
        color: var(--primary);
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    .age-question {
        font-size: 1.2rem;
        font-weight: bold;
        color: #fff;
        margin: 20px 0;
    }

    .age-buttons {
        display: flex;
        gap: 15px;
        justify-content: center;
        margin-top: 20px;
    }

    .cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(26, 26, 32, 0.95);
        border-top: 1px solid var(--primary);
        padding: 20px;
        z-index: 9000;
        display: none;
        backdrop-filter: blur(10px);
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    }

    .cookie-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
    }

    .cookie-text h4 {
        margin-bottom: 5px;
        color: #fff;
        font-size: 1rem;
    }

    .cookie-text p {
        font-size: 0.85rem;
        color: #ccc;
        margin: 0;
    }

    .cookie-buttons {
        display: flex;
        gap: 10px;
        flex-shrink: 0;
    }

    .btn-sm {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    .cookie-settings-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        z-index: 9500;
        display: none;
        align-items: center;
        justify-content: center;
    }

    .cookie-settings-box {
        background: #1a1a20;
        width: 100%;
        max-width: 500px;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 25px;
    }

    .settings-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 10px;
    }

    .close-btn {
        background: none;
        border: none;
        color: #fff;
        font-size: 1.2rem;
        cursor: pointer;
    }

    .settings-desc {
        font-size: 0.9rem;
        color: #aaa;
        margin-bottom: 20px;
    }

    .cookie-option {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        background: rgba(255, 255, 255, 0.03);
        padding: 15px;
        border-radius: 8px;
    }

    .option-info strong {
        display: block;
        color: var(--primary);
        margin-bottom: 4px;
    }

    .option-info span {
        display: block;
        font-size: 0.8rem;
        color: #888;
    }

    .switch {
        position: relative;
        display: inline-block;
        width: 50px;
        height: 24px;
        flex-shrink: 0;
    }

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

    .slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #333;
        transition: .4s;
        border-radius: 34px;
    }

    .slider:before {
        position: absolute;
        content: "";
        height: 16px;
        width: 16px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: .4s;
        border-radius: 50%;
    }

    input:checked+.slider {
        background-color: var(--accent);
    }

    input:checked+.slider:before {
        transform: translateX(26px);
    }

    input:disabled+.slider {
        background-color: #555;
        cursor: not-allowed;
    }

    @media (max-width: 768px) {
        .cookie-content {
            flex-direction: column;
            align-items: flex-start;
        }

        .cookie-buttons {
            width: 100%;
            justify-content: space-between;
        }

        .btn-sm {
            flex: 1;
            text-align: center;
        }
    }