/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #1a1a24;
    --bg-card: rgba(30, 30, 40, 0.6);
    --text-primary: #ffffff;
    --text-secondary: #b8b8c8;
    --text-muted: #888898;
    --accent-yellow: #ffd700;
    --accent-orange: #ff8c00;
    --accent-blue: #4a9eff;
    --accent-purple: #9d4edd;
    --accent-pink: #ff006e;
    --border-color: rgba(255, 255, 255, 0.1);
    --star-color: #ffd700;
    --box-blue: rgba(74, 158, 255, 0.15);
    --box-blue-light: rgba(74, 158, 255, 0.25);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    --gradient-blue: linear-gradient(135deg, #4a9eff 0%, #9d4edd 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-primary);
    background-image: 
        radial-gradient(at 0% 0%, rgba(74, 158, 255, 0.1) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(157, 78, 221, 0.1) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(255, 215, 0, 0.1) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(255, 140, 0, 0.1) 0px, transparent 50%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    min-height: 100vh;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Header Styles */
header {
    background: rgba(26, 26, 36, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--accent-yellow);
}

nav a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0;
    margin-bottom: 3rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 158, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 50%, #ff8c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-features span {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-features span::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    transition: left 0.3s ease;
    z-index: -1;
}

.hero-features span:hover {
    color: #000;
    border-color: var(--accent-yellow);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.hero-features span:hover::before {
    left: 0;
}

/* Bookmaker Cards */
.bookmakers-list {
    margin: 2rem 0;
}

.bookmaker-card {
    background: rgba(30, 30, 40, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.bookmaker-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.5s ease;
}

.bookmaker-card:hover::before {
    left: 100%;
}

.bookmaker-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 215, 0, 0.2),
        0 0 30px rgba(74, 158, 255, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

.bookmaker-logo {
    width: 140px;
    height: 90px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.bookmaker-card:hover .bookmaker-logo {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.bookmaker-info {
    flex: 1;
}

.bookmaker-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bookmaker-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.rating-score {
    font-size: 1.4rem;
    font-weight: bold;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.stars {
    display: flex;
    gap: 0.2rem;
}

.star {
    color: var(--star-color);
    font-size: 1.3rem;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
    transition: transform 0.2s ease;
}

.star:hover {
    transform: scale(1.2) rotate(15deg);
}

.star.half {
    opacity: 0.5;
}

.read-more-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

.read-more-link::after {
    content: ' →';
    transition: transform 0.3s ease;
    display: inline-block;
}

.read-more-link:hover {
    color: var(--accent-yellow);
    transform: translateX(5px);
}

.read-more-link:hover::after {
    transform: translateX(5px);
}

.bonus-info {
    margin-top: 0.5rem;
}

.bonus-text {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.bonus-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.bookmaker-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.get-bonus-btn {
    background: var(--gradient-gold);
    color: #000;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.get-bonus-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.get-bonus-btn:hover::before {
    width: 300px;
    height: 300px;
}

.get-bonus-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

.get-bonus-btn:active {
    transform: translateY(-1px) scale(1.02);
}

/* Content Sections */
.content-section {
    margin: 4rem 0;
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #4a9eff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.content-section p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.05rem;
}

.content-section ul, .content-section ol {
    margin: 1.5rem 0 1.5rem 2rem;
    color: var(--text-secondary);
}

.content-section li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
    position: relative;
    padding-left: 1rem;
}

.content-section li::marker {
    color: var(--accent-yellow);
}

.content-section li strong {
    color: var(--text-primary);
}

/* Info Boxes */
.info-box {
    background: rgba(74, 158, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 4px solid var(--accent-blue);
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.1) 0%, rgba(157, 78, 221, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-box:hover::before {
    opacity: 1;
}

.info-box-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(74, 158, 255, 0.5));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.info-box-content {
    flex: 1;
    color: var(--text-primary);
    font-size: 1.05rem;
}

.trust-box {
    background: rgba(74, 158, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem;
    margin: 3rem 0;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.trust-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(74, 158, 255, 0.3);
}

.trust-box-content {
    flex: 1;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.trust-box-logo {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(74, 158, 255, 0.5));
}

/* Footer */
footer {
    background: rgba(26, 26, 36, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 4rem 2rem;
    margin-top: 6rem;
    border-top: 1px solid var(--border-color);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-gold);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-yellow);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-copyright {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer-disclaimer {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-safer-gambling {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 1rem;
}

/* Popups */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.popup-overlay.active {
    display: flex;
}

.popup {
    background: rgba(30, 30, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.popup h2 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-size: 2rem;
}

.popup p {
    margin-bottom: 2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.popup-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.popup-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.popup-btn-primary {
    background: var(--gradient-gold);
    color: #000;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.popup-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.popup-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.popup-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Forms */
.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(74, 158, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.submit-btn {
    background: var(--gradient-gold);
    color: #000;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

/* Image Styling */
img {
    transition: all 0.3s ease;
}

img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Text-Image Blocks */
.text-image-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
    margin: 4rem 0;
    padding: 2rem;
    background: rgba(30, 30, 40, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.text-image-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.05) 0%, rgba(157, 78, 221, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.text-image-block:hover::before {
    opacity: 1;
}

.text-image-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.2);
}

.text-image-block.reverse {
    grid-template-columns: 1fr 1fr;
}

.text-image-block.reverse .block-image {
    order: -1;
}

.block-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.block-content h2,
.block-content h3 {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #4a9eff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.block-content h2 {
    font-size: 2rem;
    line-height: 1.2;
}

.block-content h3 {
    font-size: 1.3rem;
    line-height: 1.3;
}

.block-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1rem;
    flex: 1;
}

.block-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.block-content li {
    color: var(--text-secondary);
    margin-bottom: 0.6rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.block-content li strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Compact text style for long content */
.block-content.compact p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.block-content.compact ul {
    margin: 0.8rem 0;
}

.block-content.compact li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.block-image {
    position: relative;
    z-index: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    min-height: 400px;
    max-height: 600px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.block-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 15px;
    transition: all 0.4s ease;
}

.text-image-block:hover .block-image {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(74, 158, 255, 0.3);
}

.text-image-block:hover .block-image img {
    transform: scale(1.1);
}

.block-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.1) 0%, rgba(157, 78, 221, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 15px;
}

.text-image-block:hover .block-image::after {
    opacity: 1;
}

/* Full-width image blocks */
.image-block-full {
    margin: 4rem 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
}

.image-block-full img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.image-block-full:hover img {
    transform: scale(1.05);
}

.image-block-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }

    nav {
        width: 100%;
        margin-top: 1rem;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .mobile-menu-toggle {
        display: block;
    }

    nav.hidden {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .bookmaker-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .bookmaker-cta {
        width: 100%;
    }

    .get-bonus-btn {
        width: 100%;
    }

    .trust-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .text-image-block {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }

    .text-image-block.reverse .block-image {
        order: 0;
    }

    .block-image {
        min-height: 250px;
        max-height: 350px;
    }

    .block-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    main {
        padding: 1rem;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .bookmaker-card {
        padding: 1rem;
    }

    .text-image-block {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }

    .text-image-block.reverse .block-image {
        order: 0;
    }

    .block-image {
        min-height: 300px;
        max-height: 400px;
    }

    .block-content {
        min-height: auto;
    }

    .block-content h2 {
        font-size: 1.75rem;
    }

    .block-content h3 {
        font-size: 1.2rem;
    }
}
