* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header__row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__logo {
    display: inline-block;
}

.header__logo-img {
    height: 50px;
    width: auto;
    display: block;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.hero__content {
    max-width: 900px;
    margin: 0 auto;
}

.hero__title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero__subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero__features {
    list-style: none;
    text-align: left;
    max-width: 700px;
    margin: 2rem auto;
    padding: 0;
}

.hero__features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.hero__features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #ffd700;
}

.hero__badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.hero__badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
}

.hero__badge-icon {
    font-weight: bold;
    color: #ffd700;
}

.hero__disclaimer {
    font-size: 0.875rem;
    margin-top: 2rem;
    opacity: 0.8;
}

/* Bookmakers Section */
.bookmakers-section {
    padding: 4rem 0;
    background-color: #fff;
}

.bookmakers-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.bookmaker-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bookmaker-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.bookmaker-card__header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.bookmaker-card__logo {
    flex-shrink: 0;
}

.bookmaker-logo-img {
    width: 120px;
    height: 80px;
    background: #1f2937;
    border-radius: 8px;
    padding: 1rem;
    object-fit: contain;
    display: block;
}

.bookmaker-card__rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.bookmaker-score {
    font-size: 2.5rem;
    font-weight: 900;
    color: #667eea;
    line-height: 1;
}

.bookmaker-stars {
    display: flex;
    gap: 0.25rem;
    color: #ffd700;
    font-size: 1.2rem;
}

.bookmaker-views {
    font-size: 0.875rem;
    color: #666;
}

.bookmaker-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    background: #e5e7eb;
    color: #333;
}

.bookmaker-tag--hot {
    background: #fee2e2;
    color: #991b1b;
}

.bookmaker-tag--favorite {
    background: #fef3c7;
    color: #92400e;
}

.bookmaker-card__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.bookmaker-card__info {
    flex: 1;
    min-width: 300px;
}

.bookmaker-name {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.bookmaker-bonus {
    font-size: 1.25rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 1rem;
}

.bookmaker-features {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.bookmaker-feature {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: #f3f4f6;
    border-radius: 6px;
    font-size: 0.875rem;
    color: #4b5563;
}

.bookmaker-card__action {
    flex-shrink: 0;
}

.bookmaker-card__disclaimer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.bookmaker-card__disclaimer p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn--primary {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
}

.btn--primary:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.btn--secondary {
    background: #667eea;
    color: #fff;
}

.btn--secondary:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

.btn--link {
    background: transparent;
    color: #667eea;
    text-decoration: underline;
    padding: 0.5rem 1rem;
}

.bookmaker-btn {
    min-width: 150px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Info Section */
.info-section {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.info-box {
    background: #fff;
    border-left: 4px solid #667eea;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.info-box__text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
}

.content-article {
    margin-bottom: 3rem;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.content-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1f2937;
    line-height: 1.3;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1rem;
}

.content-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.content-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
    color: #4b5563;
}

.content-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

.content-link {
    color: #667eea;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.content-link:hover {
    color: #5568d3;
}

.trust-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 3rem 2rem;
    border-radius: 12px;
    margin: 3rem 0;
    text-align: center;
}

.trust-box__title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.trust-box__text {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
}

.faq-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.faq-answer {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.page-hero__title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.page-hero__subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Content Section */
.content-section {
    padding: 4rem 0;
    background-color: #f9fafb;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.contact-item__text {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
}

.contact-form-wrapper {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #374151;
}

.form-input {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: #667eea;
}

.form-input--textarea {
    resize: vertical;
    min-height: 120px;
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-status.visible {
    display: block;
}

.form-status--success {
    background: #d1fae5;
    color: #065f46;
}

.form-status--error {
    background: #fee2e2;
    color: #991b1b;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: #9ca3af;
    padding: 3rem 0 1.5rem;
}

.footer__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer__text {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer__nav-list {
    list-style: none;
    padding: 0;
}

.footer__nav-item {
    margin-bottom: 0.5rem;
}

.footer__nav-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer__nav-link:hover {
    color: #fff;
}

.footer__btn {
    margin-top: 1rem;
}

.footer__hr {
    border: none;
    height: 1px;
    background-color: #374151;
    margin: 2rem 0;
}

.footer__responsible {
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid #374151;
    border-bottom: 1px solid #374151;
}

.footer__responsible-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer__responsible-link {
    display: inline-block;
    background: #1f2937;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.footer__responsible-link:hover {
    opacity: 1;
    transform: translateY(-2px);
    background: #374151;
}

.footer__responsible-logo {
    height: 50px;
    width: auto;
    max-width: 120px;
    display: block;
    object-fit: contain;
}

.footer__copyright {
    text-align: center;
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.footer__notice {
    text-align: center;
    font-size: 0.875rem;
    color: #ef4444;
    font-weight: 600;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #fff;
    padding: 1.5rem 0;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-banner__container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cookie-banner__text {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    color: #d1d5db;
}

.cookie-banner__link {
    color: #667eea;
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-banner__btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

.cookie-banner__link-btn {
    background: transparent;
    color: #9ca3af;
    text-decoration: underline;
    padding: 0.75rem 1rem;
}

.cookie-banner__link-btn:hover {
    color: #fff;
}

/* Responsive */
@media (min-width: 768px) {
    .hero__title {
        font-size: 4rem;
    }

    .page-hero__title {
        font-size: 4rem;
    }

    .bookmaker-card__content {
        flex-wrap: nowrap;
    }

    .contact-grid {
        grid-template-columns: 1fr 1.5fr;
    }

    .footer__row {
        grid-template-columns: repeat(2, 1fr);
    }

    .cookie-banner__container {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-banner__text {
        text-align: left;
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .hero__title {
        font-size: 5rem;
    }

    .page-hero__title {
        font-size: 5rem;
    }

    .footer__row {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .bookmaker-card__header {
        flex-direction: column;
        text-align: center;
    }

    .bookmaker-card__content {
        flex-direction: column;
    }

    .bookmaker-card__action {
        width: 100%;
    }

    .bookmaker-btn {
        width: 100%;
    }

    .footer__responsible-logos {
        gap: 1rem;
    }

    .footer__responsible-logo {
        height: 40px;
        max-width: 100px;
    }

    .footer__responsible-link {
        padding: 0.5rem 0.75rem;
    }
}
