:root {
    --bg-main: #050816;
    --bg-elevated: #0b1020;
    --bg-elevated-soft: #111827;
    --bg-alt: #050816;
    --accent: #22d3ee;
    --accent-soft: rgba(34, 211, 238, 0.12);
    --accent-alt: #a855f7;
    --text-main: #f9fafb;
    --text-muted: #9ca3af;
    --border-subtle: rgba(148, 163, 184, 0.35);
    --radius-lg: 18px;
    --radius-xl: 24px;
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.75);
    --shadow-chip: 0 0 0 1px rgba(148, 163, 184, 0.4);
    --container-max: 1120px;
}

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

html, body {
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.22), transparent 55%),
        radial-gradient(circle at bottom right, rgba(168, 85, 247, 0.24), transparent 55%),
        var(--bg-main);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(14px);
    background: linear-gradient(to bottom, rgba(5, 8, 22, 0.94), rgba(5, 8, 22, 0.78), transparent);
    border-bottom: 1px solid rgba(148, 163, 184, 0.32);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 0;
    gap: 1.5rem;
}

.brand {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.brand-mark {
    display: inline-flex;
    align-items: baseline;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: radial-gradient(circle at 10% 0%, rgba(34, 211, 238, 0.25), transparent 60%),
                linear-gradient(120deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.9));
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.8);
}

.brand-main {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brand-sub {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent);
}

.brand-domain {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.nav {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    font-size: 0.9rem;
}

.nav a {
    position: relative;
    color: var(--text-muted);
    transition: color 0.2s ease;
    padding-bottom: 0.1rem;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--accent-alt));
    transition: width 0.2s ease;
}

.nav a:hover {
    color: var(--text-main);
}

.nav a:hover::after {
    width: 100%;
}

.btn {
    border-radius: 999px;
    font-size: 0.9rem;
    padding: 0.6rem 1.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    cursor: pointer;
    border: none;
    outline: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
    white-space: nowrap;
    margin-top: 15px
}

.btn-sm {
    padding: 0.5rem 1.1rem;
    font-size: 0.8rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-alt));
    color: #020617;
    font-weight: 600;
    box-shadow: 0 16px 35px rgba(34, 211, 238, 0.35);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(34, 211, 238, 0.45);
}

.btn-outline {
    border: 1px solid rgba(148, 163, 184, 0.6);
    color: var(--text-main);
    background: rgba(15, 23, 42, 0.85);
}

.btn-outline:hover {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.45);
}

.btn-ghost {
    border: 1px solid transparent;
    background: rgba(15, 23, 42, 0.85);
    color: var(--text-main);
}

.btn-ghost:hover {
    border-color: rgba(148, 163, 184, 0.5);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.85);
}

.btn-full {
    width: 100%;
}

/* HERO */

.hero {
    padding: 4.5rem 0 2.5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
    gap: 2.5rem;
    align-items: stretch;
}

.hero-text h1 {
    font-size: clamp(2.1rem, 3.1vw, 2.9rem);
    line-height: 1.15;
    margin: 1rem 0 0.8rem;
}

.hero-lead {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 34rem;
    margin-bottom: 1.1rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(15, 23, 42, 0.9);
    box-shadow: var(--shadow-chip);
}

.hero-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.hero-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.55rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.hero-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 0%, #e0f2fe, #22d3ee);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.18);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 1.8rem;
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
    max-width: 32rem;
}

.hero-meta div {
    padding: 0.7rem 0.8rem;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.3);
}

.meta-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.15rem;
}

.meta-value {
    font-weight: 600;
    font-size: 1rem;
}

.hero-card {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card-inner {
    width: 100%;
    background: radial-gradient(circle at 0% 0%, rgba(34, 211, 238, 0.16), transparent 55%),
                radial-gradient(circle at 100% 100%, rgba(168, 85, 247, 0.2), transparent 60%),
                var(--bg-elevated);
    border-radius: var(--radius-xl);
    padding: 1.5rem 1.5rem 1.7rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(148, 163, 184, 0.55);
    position: relative;
    overflow: hidden;
}

.hero-card-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.hero-card-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    margin-bottom: 1rem;
}

.hero-logo {
    max-width: 150px;
    filter: drop-shadow(0 12px 25px rgba(15, 23, 42, 0.9));
}

.hero-score {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.score-value {
    font-size: 2.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #facc15, #f97316);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.score-tag {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.hero-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.1rem;
}

.hero-card-list li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.hero-bonus {
    padding: 0.8rem 0.9rem;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(34, 197, 94, 0.5);
    margin-bottom: 0.75rem;
}

.hero-bonus-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.15rem;
}

.hero-bonus-value {
    font-size: 0.95rem;
    font-weight: 600;
}

.hero-bonus-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.4rem;
}

.hero-card-actions {
    margin-bottom: 0.75rem;
}

.hero-disclaimer {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* SECTIONS */

.section {
    padding: 3.2rem 0 3.4rem;
}

.section.alt {
    background: radial-gradient(circle at 10% 0%, rgba(15, 23, 42, 0.5), transparent 55%),
                rgba(2, 6, 23, 0.85);
}

.section-head {
    max-width: 40rem;
    margin-bottom: 2rem;
}

.section-head h2 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
}

.section-head p {
    font-size: 0.98rem;
    color: var(--text-muted);
}

/* CARDS GRID */

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.casino-card {
    background: var(--bg-elevated-soft);
    border-radius: var(--radius-lg);
    padding: 1.3rem 1.4rem 1.4rem;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.6);
    position: relative;
    overflow: hidden;
}

.card-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-soft);
    margin-bottom: 0.9rem;
}

.card-badge.alt {
    color: #f97316;
    background: rgba(248, 250, 252, 0.03);
    border: 1px solid rgba(248, 250, 252, 0.05);
}

.card-badge.neutral {
    color: var(--text-muted);
    background: rgba(15, 23, 42, 0.9);
}

.card-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 0.45rem;
}

.card-header h3 {
    font-size: 1.1rem;
    margin: 0;
}

.card-score {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
}

.card-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.7rem;
}

.card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.9rem;
}

.card-list li {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
    padding-left: 1.2rem;
    position: relative;
}

.card-list li::before {
    content: "•";
    position: absolute;
    left: 0.3rem;
    top: 0.05rem;
    color: var(--accent);
    font-size: 0.8rem;
}

.card-footer {
    border-top: 1px dashed rgba(148, 163, 184, 0.6);
    padding-top: 0.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.84rem;
}

.card-bonus-label {
    color: var(--text-muted);
}

.card-bonus {
    font-weight: 500;
}

/* TABLE */

.table-wrapper {
    background: rgba(15, 23, 42, 0.96);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    padding: 1.4rem 1.3rem 1.1rem;
    box-shadow: var(--shadow-soft);
}

.table-title {
    margin: 0 0 0.9rem;
    font-size: 1.1rem;
}

.casino-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.86rem;
    margin-bottom: 0.7rem;
}

.casino-table th,
.casino-table td {
    padding: 0.65rem 0.6rem;
    text-align: left;
}

.casino-table thead th {
    font-weight: 600;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(148, 163, 184, 0.6);
}

.casino-table tbody tr:nth-child(odd) {
    background: rgba(15, 23, 42, 0.9);
}

.casino-table tbody tr:nth-child(even) {
    background: rgba(15, 23, 42, 0.7);
}

.casino-table tbody td {
    border-bottom: 1px solid rgba(15, 23, 42, 0.8);
}

.table-note {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* CRITERIA */

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.3rem;
}

.criteria-card {
    background: radial-gradient(circle at 0 0, rgba(34, 211, 238, 0.18), transparent 55%),
                rgba(15, 23, 42, 0.95);
    border-radius: var(--radius-lg);
    padding: 1.1rem 1.1rem 1.2rem;
    border: 1px solid rgba(148, 163, 184, 0.45);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.75);
}

.criteria-card h3 {
    font-size: 1rem;
    margin: 0 0 0.5rem;
}

.criteria-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* FAQ */

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.faq-item {
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid var(--border-subtle);
    padding: 0.85rem 1rem;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.75);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.96rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item[open] summary {
    color: var(--accent);
}

.faq-item p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* TIPS */

.tips-grid {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.1fr);
    gap: 1.7rem;
    align-items: center;
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-list li {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 0.55rem;
    padding-left: 1.2rem;
    position: relative;
}

.tips-list li::before {
    content: "▹";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-size: 0.9rem;
}

.tips-banner {
    background: radial-gradient(circle at 0 0, rgba(248, 113, 113, 0.4), transparent 60%),
                rgba(15, 23, 42, 0.98);
    border-radius: var(--radius-xl);
    padding: 1.1rem;
    border: 1px solid rgba(248, 113, 113, 0.6);
    box-shadow: 0 16px 36px rgba(127, 29, 29, 0.85);
}

.tips-img {
    max-width: 120px;
    margin: 0 auto 0.7rem;
}

.tips-text {
    font-size: 0.86rem;
    color: var(--text-main);
    text-align: center;
}

/* RESPONSABLE */

.section-responsable {
    padding-bottom: 3.8rem;
}

.responsable-inner {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
    gap: 2rem;
    align-items: flex-start;
}

.responsable-text p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 0.7rem;
}

.responsable-cta {
    font-weight: 500;
    color: var(--accent);
}

.responsable-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.responsable-card {
    background: rgba(15, 23, 42, 0.97);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    padding: 0.9rem 0.9rem 1rem;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.8);
}

.responsable-card h3 {
    font-size: 0.98rem;
    margin: 0.5rem 0 0.4rem;
}

.responsable-card p {
    font-size: 0.86rem;
    color: var(--text-muted);
    margin: 0;
}

/* FOOTER */

.site-footer {
    border-top: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(2, 6, 23, 0.98);
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 2.4fr) repeat(3, minmax(0, 1fr));
    gap: 1.7rem;
    padding: 2.2rem 0 2.4rem;
    font-size: 0.85rem;
}

.footer-brand {
    font-weight: 600;
    margin-bottom: 0.45rem;
}

.footer-text {
    color: var(--text-muted);
    margin: 0 0 0.6rem;
}

.footer-text.small {
    font-size: 0.78rem;
}

.footer-col h3 {
    font-size: 0.96rem;
    margin: 0 0 0.75rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.35rem;
}

.footer-links a {
    color: var(--text-muted);
    position: relative;
    padding-left: 0.9rem;
    font-size: 0.84rem;
}

.footer-links a::before {
    content: "›";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-size: 0.86rem;
}

.footer-links a:hover {
    color: var(--text-main);
}

/* RESPONSIVE */

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

    .hero-card {
        order: -1;
    }

    .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .criteria-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .tips-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .responsable-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nav {
        display: none;
    }
}

@media (max-width: 640px) {
    .header-inner {
        padding-inline: 0.25rem;
    }

    .hero {
        padding-top: 3rem;
    }

    .card-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .criteria-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
/* Контейнер формы */
.container-custom {
    padding: 3rem 1.5rem;
}

/* Блок формы */
.glass-effect {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 40px rgba(0,0,0,0.35);
    padding: 2rem 2.5rem;
}

/* Заголовок */
.glass-effect h1 {
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

/* Градиент */
.gradient-text {
    background: linear-gradient(90deg, #22d3ee, #818cf8, #c084fc);
    -webkit-background-clip: text;
    color: transparent;
}

/* Метки */
label {
    display: block;
    font-size: 0.92rem;
    font-weight: 500;
    margin-bottom: 0.35rem;
    color: #e5e7eb;
}

/* Поля */
input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    font-size: 0.95rem;

    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;

    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

/* Placeholder */
input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

/* Фокус */
input:focus,
textarea:focus {
    border-color: #22d3ee;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.25);
    outline: none;
}

/* Текстовая область */
textarea {
    resize: none;
    min-height: 140px;
}

/* Кнопка отправки */
.btn.btn-primary {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #0f172a;

    background: linear-gradient(90deg, #22d3ee, #818cf8, #c084fc);
    border: none;

    transition: transform .2s ease, box-shadow .25s ease;
}

.btn.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(34, 211, 238, 0.4);
}

/* Кнопка "назад" */
.container-custom button {
    background: rgba(255, 255, 255, 0.08);
    padding: 0.55rem 1.1rem;
    border-radius: 8px;
    color: #e5e7eb;
    font-size: 0.9rem;
    transition: background .2s ease;
}

.container-custom button:hover {
    background: rgba(255, 255, 255, 0.15);
}
/* --- AGE POPUP OVERLAY --- */
.age-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* --- MODAL --- */
.age-modal {
    background: rgba(17, 24, 39, 0.85);
    padding: 2rem 2.5rem;
    border-radius: 18px;
    max-width: 420px;
    width: 92%;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 40px rgba(0,0,0,0.45);
}

/* --- TEXT --- */
.age-title {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, #22d3ee, #818cf8, #c084fc);
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.age-text {
    color: #e5e7eb;
    font-size: 1rem;
    margin-bottom: 1.8rem;
}

/* --- BUTTONS --- */
.age-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.age-btn {
    display: block;
    padding: 0.9rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    transition: all .2s ease;
}

/* YES button */
.age-yes {
    background: linear-gradient(90deg, #22d3ee, #818cf8, #c084fc);
    color: #0f172a;
}

.age-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(34, 211, 238, 0.40);
}

/* NO button */
.age-no {
    background: rgba(255,255,255,0.08);
    color: #e5e7eb;
}

.age-no:hover {
    background: rgba(255,255,255,0.15);
}
