/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    min-height: 100vh;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #16a085, #2bc0a4);
    border-radius: 50%;
    position: relative;
}

.logo-icon::before {
    content: 'IE';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #16a085;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #16a085;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

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

/* Main Content */
.main {
    margin-top: 70px;
    padding: 4rem 0;
}

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

/* Hero Section */
.hero {
    margin-bottom: 4rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #ffffff;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    border-radius: 50%;
    position: relative;
}

.author-avatar::before {
    content: 'TD';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-weight: 500;
    color: #ffffff;
}

.author-date {
    font-size: 0.9rem;
    color: #a0a0a0;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e0e0e0;
}

.intro-text p {
    margin-bottom: 1.5rem;
}

/* Section Title */
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 3rem;
    color: #ffffff;
}

/* Casino Grid */
.casino-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.casino-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #16a085;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(22, 160, 133, 0.2);
    border-color: #2bc0a4;
}

.card-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
}

.casino-logo {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #2c2c2c;
}

.logo-placeholder {
    font-weight: 700;
    text-align: center;
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.2;
}

.logo-placeholder.mafia {
    color: #ff6b6b;
}

.logo-placeholder.spinsy {
    color: #f1c40f;
}

.logo-placeholder.monster {
    color: #e67e22;
}

.logo-placeholder.casinolo {
    color: #16a085;
}

.logo-placeholder span {
    font-size: 0.8rem;
    display: block;
    margin-top: 0.2rem;
}

.casino-info {
    flex: 1;
}

.bonus-info {
    margin-bottom: 1.5rem;
}

.bonus-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.bonus-info p {
    font-size: 1.1rem;
    color: #16a085;
    font-weight: 500;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #e0e0e0;
}

.checkmark {
    color: #16a085;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.casino-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.play-button {
    background: linear-gradient(135deg, #16a085, #2bc0a4);
    color: #ffffff;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.play-button:hover {
    background: linear-gradient(135deg, #2bc0a4, #16a085);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(22, 160, 133, 0.3);
}

.play-button:active {
    transform: translateY(0);
}

.rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.rating-score {
    font-size: 1.5rem;
    font-weight: 700;
    color: #16a085;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #444;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.star.active {
    color: #f1c40f;
}

/* Top List Section */
.top-list-section {
    margin: 3rem 0;
}

.top-list {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.list-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e0e0;
}

.list-item:last-child {
    border-bottom: none;
}

.number {
    color: #16a085;
    font-weight: 600;
    min-width: 25px;
}

.list-item strong {
    color: #ffffff;
}

/* Casino Reviews Section */
.casino-reviews {
    margin: 4rem 0;
}

.review-section {
    margin-bottom: 4rem;
}

.review-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
    line-height: 1.3;
}

.casino-screenshot {
    margin: 2rem 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.screenshot-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.betclic-screenshot {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.winamax-screenshot {
    background: linear-gradient(135deg, #2c3e50, #1a252f);
}

.screenshot-content {
    width: 90%;
    height: 80%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem;
    backdrop-filter: blur(10px);
}

.mock-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mock-logo {
    font-weight: 700;
    color: #ffffff;
    font-size: 1.2rem;
}

.mock-nav {
    display: flex;
    gap: 1rem;
}

.mock-nav span {
    color: #ffffff;
    font-size: 0.9rem;
    opacity: 0.8;
}

.mock-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.5rem;
    margin-top: 1rem;
}

.mock-game {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 1rem 0.5rem;
    text-align: center;
    font-size: 0.7rem;
    color: #ffffff;
    font-weight: 600;
}

.winamax-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem;
    border-radius: 5px;
}

.mock-balance {
    color: #f1c40f;
    font-weight: 700;
}

.mock-promo-banner {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #ffffff;
    text-align: center;
    padding: 0.5rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 1rem 0;
}

.mock-games-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mock-game-category {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem;
    border-radius: 5px;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

.review-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e0e0e0;
}

.review-content p {
    margin-bottom: 1.5rem;
}

.advantages-section,
.disadvantages-section {
    margin: 2rem 0;
    padding: 1.5rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.advantages-section h3 {
    color: #16a085;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.disadvantages-section h3 {
    color: #e74c3c;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.advantages-list,
.disadvantages-list {
    list-style: none;
    padding: 0;
}

.advantages-list li,
.disadvantages-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #e0e0e0;
}

.advantages-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16a085;
    font-weight: bold;
}

.disadvantages-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

/* FAQ Section */
.faq-section {
    margin: 4rem 0;
}

.faq-container {
    margin-bottom: 3rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #16a085;
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    gap: 1rem;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.faq-question h3 {
    flex: 1;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #16a085;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
}

/* Bonus Conditions */
.bonus-conditions {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 3rem 0;
}

.bonus-conditions h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.bonus-conditions > p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.condition-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border-left: 4px solid #16a085;
}

.condition-item h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.condition-icon {
    font-size: 1.2rem;
}

.condition-item p {
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 3rem 0;
}

.cta-button {
    background: linear-gradient(135deg, #16a085, #2bc0a4);
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #2bc0a4, #16a085);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(22, 160, 133, 0.3);
}

/* Footer */
.footer {
    background: #0f1419;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0 1rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.footer-link:hover {
    color: #16a085;
}

.footer-email {
    color: #a0a0a0;
    font-size: 0.9rem;
}

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

.footer-bottom p {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin: 0;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
    }

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

    .hamburger {
        display: flex;
    }

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

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

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

    .container {
        padding: 0 1rem;
    }

    .main {
        padding: 2rem 0;
    }

    .hero {
        margin-bottom: 3rem;
    }

    .hero-title {
        margin-bottom: 1.5rem;
    }

    .author-info {
        margin-bottom: 1.5rem;
    }

    .intro-text {
        font-size: 1rem;
    }

    .section-title {
        margin-bottom: 2rem;
    }

    .casino-grid {
        gap: 1.5rem;
    }

    .casino-card {
        padding: 1.5rem;
    }

    .card-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .casino-logo {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }

    .logo-placeholder {
        font-size: 1rem;
    }

    .bonus-info h3 {
        font-size: 1.2rem;
    }

    .bonus-info p {
        font-size: 1rem;
    }

    .features {
        text-align: left;
    }

    .play-button {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .casino-card {
        padding: 1rem;
    }

    .card-content {
        gap: 1rem;
    }

    .casino-logo {
        width: 80px;
        height: 80px;
    }

    .logo-placeholder {
        font-size: 0.9rem;
    }

    .bonus-info h3 {
        font-size: 1.1rem;
    }

    .feature {
        font-size: 0.9rem;
    }

    .play-button {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .rating-score {
        font-size: 1.3rem;
    }

    .star {
        font-size: 1rem;
    }

    .top-list {
        padding: 1rem;
    }

    .list-item {
        font-size: 0.9rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .number {
        align-self: flex-start;
    }

    .review-title {
        font-size: 1.3rem;
    }

    .casino-screenshot {
        height: 200px;
    }

    .screenshot-placeholder {
        height: 200px;
    }

    .mock-games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .review-content {
        font-size: 1rem;
    }

    .advantages-section,
    .disadvantages-section {
        padding: 1rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .bonus-conditions {
        padding: 1rem;
    }

    .condition-item {
        padding: 1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .card-content {
        grid-template-columns: auto 1fr;
        gap: 1.5rem;
    }

    .casino-action {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: 1rem;
    }

    .rating {
        flex-direction: row;
        gap: 1rem;
    }
}

/* Large Desktop Styles */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .casino-card {
        padding: 2.5rem;
    }

    .casino-logo {
        width: 140px;
        height: 140px;
    }

    .logo-placeholder {
        font-size: 1.4rem;
    }
}

/* Animation for loading */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.casino-card {
    animation: fadeInUp 0.6s ease-out;
}

.casino-card:nth-child(2) {
    animation-delay: 0.1s;
}

.casino-card:nth-child(3) {
    animation-delay: 0.2s;
}

/* Performance optimizations */
.casino-card,
.play-button,
.nav-link {
    will-change: transform;
}

.casino-card:not(:hover) {
    will-change: auto;
}

/* Focus states for accessibility */
.play-button:focus,
.nav-link:focus {
    outline: 2px solid #16a085;
    outline-offset: 2px;
}

.hamburger:focus {
    outline: 2px solid #16a085;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Чистый режим для блока с реальным изображением */
.screenshot-placeholder.is-image {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    display: block; /* убираем флекс-центрирование */
    height: auto !important; /* критично: убирает фикс 300/200px */
    border-radius: 12px;
    overflow: hidden;
}

/* Внутренний контейнер делаем на всю ширину/высоту и без внутренней «подложки» */
.screenshot-placeholder.is-image .screenshot-content {
    width: 100% !important; /* было 90% → из-за этого и появлялась пустая полоса */
    height: auto !important; /* было 80% */
    padding: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
}

/* Собственно картинка: респонсив без рамок */
.screenshot-img {
    display: block;
    width: 100%;
    height: auto; /* без принудительной высоты — картинка не обрежется */
    object-fit: cover;
    border-radius: 12px; /* совпадает с родителем */
}

/* Сам контейнер можно сделать «чистым», чтобы не казалось, что есть рамка */
.casino-screenshot {
    margin: 2rem 0;
    border-radius: 15px;
    overflow: visible; /* рамка/обводка не нужна → не прячем края */
    box-shadow: none; /* если хотите оставить тень — верните это свойство */
}

/* На очень узких экранах чуть мягче радиусы */
@media (max-width: 480px) {
    .screenshot-placeholder.is-image {
        border-radius: 10px;
    }

    .screenshot-img {
        border-radius: 10px;
    }
}

/* Перекрытие мобильной высоты заглушки из исходных стилей */
@media (max-width: 480px) {
    .screenshot-placeholder.is-image {
        height: auto !important;
    }
}


/* Contact page */
.contact-form {
    max-width: 860px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 1rem;
}

.form-group label {
    color: #ffffff;
    font-weight: 500;
}

.form-input, .form-textarea {
    width: 100%;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .14);
    color: #fff;
    padding: .9rem 1rem;
    border-radius: 12px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.form-input::placeholder, .form-textarea::placeholder {
    color: #9aa0a6;
}

.form-input:focus, .form-textarea:focus {
    border-color: #16a085;
    box-shadow: 0 0 0 3px rgba(22, 160, 133, .15);
}

.form-textarea {
    resize: vertical;
}

.form-consent {
    margin: .5rem 0 0;
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    color: #e0e0e0;
}

.checkbox input {
    margin-top: .2rem;
}

.form-status {
    margin-top: 1rem;
    padding: .8rem 1rem;
    border-radius: 10px;
    font-size: .95rem;
    color: #e0e0e0;
    display: inline-block;
}

.form-status.success {
    background: rgba(22, 160, 133, .12);
    color: #c9ffee;
    border: 1px solid rgba(22, 160, 133, .35);
}

.form-status.error {
    background: rgba(231, 76, 60, .12);
    color: #ffd6d1;
    border: 1px solid rgba(231, 76, 60, .35);
}

/* Карта + список контактов */
.map-embed {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
}

.contact-list {
    margin-top: 1rem;
    color: #e0e0e0;
}

.contact-list li {
    margin: .3rem 0;
}

/* антиспам-поле (honeypot) */
.hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    opacity: 0;
}


.logo-link {
    display: block;
    text-decoration: none;
    color: inherit;
}


/* ссылка-кнопка без подчёркивания */
a.play-button,
a.play-button:link,
a.play-button:visited,
a.play-button:hover,
a.play-button:focus,
a.play-button:active {
    text-decoration: none;
    color: inherit; /* чтобы цвет совпадал со стилем кнопки */
}

/* если где-то перебивается — добавь !important */
a.play-button {
    text-decoration: none !important;
}

/* по желанию: видимый фокус без подчёркивания */
a.play-button:focus-visible {
    outline: 3px solid rgba(255, 255, 255, .35);
    outline-offset: 2px;
}

