/* ============================================
   Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ============================================
   Container
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background-color: #FFD700;
    color: #000000;
    border-color: #FFD700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    background-color: #FFC700;
    border-color: #FFC700;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.125rem;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%), 
                url('./img/backgroundphoto.png') center/cover no-repeat;
    background-attachment: fixed;
    padding: 80px 0;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.hero-logo {
    margin-bottom: 60px;
    text-align: center;
}

.logo {
    max-width: 200px;
    height: auto;
    filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-text-center {
    text-align: center;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #FFD700 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5)); }
    to { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8)); }
}

.hero-subtitle {
    font-size: 1.35rem;
    color: #e0e0e0;
    margin-bottom: 50px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* ============================================
   Promo Section
   ============================================ */
.promo-section {
    padding: 100px 0;
    background-color: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.promo-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.promo-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.section-title {
    text-align: center;
    margin-bottom: 16px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    margin: 20px auto 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #999999;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.promo-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 30px 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border-left: 4px solid #FFD700;
    border-radius: 8px;
    position: relative;
}

.promo-intro::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 80px;
    color: #FFD700;
    opacity: 0.2;
    font-family: Georgia, serif;
}

.promo-intro p {
    color: #cccccc;
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.promo-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.95) 100%);
    border: 2px solid #222222;
    border-radius: 16px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.promo-card.has-bg-image {
    background-blend-mode: overlay;
}

.promo-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
    border-radius: 14px;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #666666 0%, #333333 100%);
    transition: all 0.4s ease;
    z-index: 3;
}

.promo-card::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%);
    transition: all 0.4s ease;
    z-index: 2;
}

.promo-card-featured {
    border-color: #FFD700;
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.promo-card-featured::before {
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
}

.promo-card:hover {
    border-color: #FFD700;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.15);
}

.promo-card:hover::before {
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
}

.promo-card:hover::after {
    right: -50px;
    opacity: 1;
}

.promo-badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: #333333;
    color: #ffffff;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    position: relative;
    z-index: 4;
}

.promo-badge-featured {
    background-color: #FFD700;
    color: #000000;
}

.promo-content {
    text-align: center;
    position: relative;
    z-index: 4;
}

.promo-icon {
    margin: 0 auto 24px;
    width: 60px;
    height: 60px;
    color: #FFD700;
}

.promo-title {
    font-size: 2rem;
    margin-bottom: 16px;
}

.promo-description {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.promo-details {
    margin-bottom: 24px;
}

.promo-feature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #222222;
}

.promo-feature:last-child {
    border-bottom: none;
}

.feature-label {
    color: #999999;
    font-size: 0.9rem;
}

.feature-value {
    font-weight: 600;
    font-size: 1.1rem;
    color: #FFD700;
}

.promo-highlight {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.1) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    padding: 12px 20px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    color: #FFD700;
}

/* ============================================
   Form Section
   ============================================ */
.form-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.9) 0%, rgba(0, 0, 0, 0.85) 100%),
                url('/') center/cover no-repeat;
    background-attachment: fixed;
}

.form-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}

.form-section > .container {
    position: relative;
    z-index: 3;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(26, 26, 26, 0.95);
    border: 2px solid #333333;
    border-radius: 16px;
    padding: 50px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.form-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.form-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: #FFD700;
    margin: 15px auto 0;
}

.form-title {
    margin-bottom: 12px;
}

.form-subtitle {
    color: #999999;
    font-size: 1rem;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #cccccc;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    background-color: #0d0d0d;
    border: 2px solid #333333;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-input::placeholder {
    color: #666666;
}

.form-terms {
    margin: 32px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-terms input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-terms label {
    font-size: 0.9rem;
    color: #999999;
    line-height: 1.5;
}

.form-terms a {
    color: #FFD700;
    text-decoration: underline;
}

.form-terms a:hover {
    color: #FFC700;
}

.registration-form button[type="submit"] {
    width: 100%;
    border: none;
}

/* ============================================
   Info Section
   ============================================ */
.info-section {
    padding: 80px 0;
    background-color: #0a0a0a;
    border-top: 1px solid #222222;
}

.regulatory-block {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    padding-bottom: 60px;
    border-bottom: 1px solid #222222;
    margin-bottom: 60px;
}

.regulatory-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.reg-logo {
    height: 50px;
    width: auto;
    filter: grayscale(100%) brightness(0.7);
    transition: all 0.3s ease;
}

.reg-logo:hover {
    filter: grayscale(0%) brightness(1);
}

.age-warning {
    text-align: center;
    padding: 30px;
    background-color: #1a1a1a;
    border-radius: 12px;
    border: 2px solid #FFD700;
}

.age-badge {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background-color: #FFD700;
    color: #000000;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 16px;
}

.age-text {
    font-size: 0.9rem;
    color: #cccccc;
    margin: 0;
}

.responsible-gaming,
.payment-methods {
    margin-bottom: 60px;
}

.info-subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #FFD700;
}

.info-text {
    color: #cccccc;
    line-height: 1.8;
    max-width: 900px;
}

.help-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 24px;
}

.help-link {
    padding: 10px 24px;
    background-color: transparent;
    border: 2px solid #333333;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #cccccc;
    transition: all 0.3s ease;
}

.help-link:hover {
    border-color: #FFD700;
    color: #FFD700;
}

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 30px 0;
    align-items: center;
}

.payment-logo {
    height: 40px;
    width: auto;
    filter: grayscale(100%) brightness(2);
    transition: all 0.3s ease;
}

.payment-logo:hover {
    filter: grayscale(0%) brightness(1);
}

.payment-note {
    color: #999999;
    font-size: 0.9rem;
    max-width: 700px;
}

.legal-notice {
    padding: 40px;
    background-color: #1a1a1a;
    border-left: 4px solid #FFD700;
    border-radius: 8px;
}

.legal-text {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: #000000;
    border-top: 1px solid #222222;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #222222;
}

.logo-footer {
    max-width: 140px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-copyright {
    color: #666666;
    font-size: 0.875rem;
}

.footer-heading {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #999999;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #FFD700;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #1a1a1a;
    border-radius: 50%;
    color: #cccccc;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #FFD700;
    color: #000000;
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
}

.footer-disclaimer {
    color: #666666;
    font-size: 0.8rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero {
        background-attachment: scroll;
    }

    .form-section {
        background-attachment: scroll;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .logos-row {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero {
        min-height: 80vh;
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }

    .logo {
        max-width: 160px;
    }

    .promo-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .promo-card-featured {
        transform: scale(1);
    }

    .promo-intro {
        padding: 25px 20px;
    }

    .form-wrapper {
        padding: 35px 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-logo {
        text-align: center;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 14px 32px;
        font-size: 1rem;
    }

    .logos-row {
        gap: 20px;
    }

    .logo-item img,
    .logo-cert img {
        height: 35px;
    }

    .age-badge-bottom {
        width: 100%;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 1.75rem;
    }

    .hero-title {
        font-size: 1.875rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .promo-title {
        font-size: 1.5rem;
    }

    .promo-card {
        padding: 30px 20px;
    }

    .promo-intro {
        padding: 20px 15px;
    }

    .form-wrapper {
        padding: 30px 20px;
    }

    .payment-methods-bottom {
        gap: 20px;
    }

    .logo-item img,
    .logo-cert img,
    .payment-item img {
        height: 30px;
    }

    .age-circle {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 1.25rem;
    }

    .logos-row {
        gap: 15px;
    }
}


.pqrs-section {
    background-color: #0d0d0d;
    padding: 50px 0;
    border-top: 1px solid #222222;
    
}

.pqrs-header {
    display: flex;
    flex-direction: column; /* ← ВАЖНО */
    align-items: flex-start; /* выравнивание по левому краю */
    gap: 12px; /* расстояние между заголовком и кнопкой */
    margin-bottom: 40px;
}

.pqrs-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.pqrs-toggle {
    background: transparent;
    border: 2px solid #333333;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #cccccc;
}

.pqrs-toggle:hover {
    border-color: #FFD700;
    background-color: rgba(255, 215, 0, 0.05);
    color: #FFD700;
}

.pqrs-toggle svg {
    width: 24px;
    height: 24px;
}

.pqrs-content {
    max-width: 1000px;
}

.pqrs-text {
    color: #cccccc;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.pqrs-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pqrs-link {
    color: #999999;
    font-size: 0.9rem;
    text-decoration: underline;
    transition: color 0.3s ease;
    display: inline-block;
}

.pqrs-link:hover {
    color: #FFD700;
}

/* ============================================
   Bottom Logos Section
   ============================================ */
.bottom-logos-section {
    background-color: #0d0d0d;
    padding: 50px 0 20px;
    
}

.logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.logos-top-row {
    padding-bottom: 30px;
    border-bottom: 1px solid #222222;
}

.logos-middle-row {
    padding: 30px 0;
    border-bottom: 1px solid #222222;
}

.logos-payment-row {
    flex-direction: column;
    gap: 20px;
    padding: 30px 0;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-item img {
    height: 50px;
    width: auto;
    filter: grayscale(100%) brightness(0.8);
    transition: all 0.3s ease;
}

.logo-item img:hover {
    filter: grayscale(0%) brightness(1);
    transform: translateY(-2px);
}

.age-badge-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 0 20px;
}

.age-circle {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: #FFD700;
    color: #000000;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    text-align: center;
}

.age-disclaimer {
    font-size: 0.75rem;
    color: #999999;
    line-height: 1.4;
    max-width: 300px;
    margin: 0;
}

.logo-cert {
    display: flex;
    align-items: center;
}

.logo-cert img {
    height: 45px;
    width: auto;
    filter: grayscale(100%) brightness(0.7);
    transition: all 0.3s ease;
}

.logo-cert img:hover {
    filter: grayscale(0%) brightness(1);
}

.payment-title {
    font-size: 0.9rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

.payment-methods-bottom {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.payment-item img {
    height: 40px;
    width: auto;
    filter: grayscale(100%) brightness(2);
    transition: all 0.3s ease;
}

.payment-item img:hover {
    filter: grayscale(0%) brightness(1);
}

.copyright-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #222222;
    margin-top: 20px;
}

.copyright-bottom p {
    color: #666666;
    font-size: 0.85rem;
    margin: 0;
}
