  
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            line-height: 1.6;
            color: #2d3033;
            background-color: #d4dde1;
            overflow-x: hidden;
        }

        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        
        .site-header {
            background: linear-gradient(135deg, #335252 0%, #2d3033 100%);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 10px 40px rgba(45, 48, 51, 0.3);
        }

        .header__content {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .brand-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: #d4dde1;
            transform: scale(1);
            transition: transform 0.3s ease;
        }

        .brand-logo:hover {
            transform: scale(1.05);
        }

        .brand-logo__icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #aa4b41, #335252);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: #d4dde1;
            margin-right: 15px;
            box-shadow: 0 5px 20px rgba(170, 75, 65, 0.4);
        }

        .brand-logo__text {
            font-size: 30px;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        
        .hero-section {
            background: linear-gradient(135deg, rgba(51, 82, 82, 0.9), rgba(170, 75, 65, 0.8)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="cards" patternUnits="userSpaceOnUse" width="100" height="100"><rect fill="%23335252" width="100" height="100"/><rect fill="%23aa4b41" x="10" y="10" width="30" height="40" rx="5"/><rect fill="%232d3033" x="60" y="50" width="30" height="40" rx="5"/><circle fill="%23d4dde1" cx="25" cy="30" r="8"/><circle fill="%23d4dde1" cx="75" cy="70" r="8"/></pattern></defs><rect fill="url(%23cards)" width="1200" height="800" opacity="0.3"/><polygon fill="%23aa4b41" points="0,600 400,200 800,400 1200,0 1200,800 0,800" opacity="0.4"/></svg>');
            background-size: cover;
            background-position: center;
            min-height: 100vh;
            display: flex;
            align-items: center;
            color: #d4dde1;
            position: relative;
            clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
            margin-bottom: -100px;
        }

        .hero__content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            z-index: 2;
            position: relative;
        }

        .hero__title {
            font-size: 72px;
            font-weight: bold;
            margin-bottom: 30px;
            line-height: 1.1;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
            background: linear-gradient(45deg, #d4dde1, #aa4b41);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero__subtitle {
            font-size: 28px;
            margin-bottom: 40px;
            opacity: 0.95;
            font-style: italic;
        }

        .hero__description {
            font-size: 20px;
            margin-bottom: 50px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #aa4b41, #335252);
            color: #d4dde1;
            padding: 20px 50px;
            text-decoration: none;
            border-radius: 50px;
            font-size: 20px;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(170, 75, 65, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(170, 75, 65, 0.4);
        }

        
        .section {
            padding: 120px 0;
            position: relative;
        }

        .section--skewed {
            clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
            margin: -80px 0;
            padding: 160px 0;
        }

        .section--diamond {
            clip-path: polygon(0 20%, 50% 0, 100% 20%, 100% 80%, 50% 100%, 0 80%);
            margin: -100px 0;
            padding: 180px 0;
        }

        .section--wave {
            clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 80%);
            margin: -60px 0;
            padding: 140px 0;
        }

        .section--dark {
            background: linear-gradient(135deg, #335252, #2d3033);
            color: #d4dde1;
        }

        .section--accent {
            background: linear-gradient(45deg, #aa4b41, #335252);
            color: #d4dde1;
        }

        .section--pattern {
            background: #2d3033 url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle fill="%23335252" cx="50" cy="50" r="20" opacity="0.3"/><circle fill="%23aa4b41" cx="20" cy="20" r="10" opacity="0.2"/><circle fill="%23aa4b41" cx="80" cy="80" r="15" opacity="0.2"/></svg>');
            color: #d4dde1;
        }

        .section__title {
            font-size: 52px;
            text-align: center;
            margin-bottom: 80px;
            color: #aa4b41;
            position: relative;
        }

        .section__title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #aa4b41, #335252);
            border-radius: 2px;
        }

        .section--dark .section__title,
        .section--accent .section__title,
        .section--pattern .section__title {
            color: #d4dde1;
        }

        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 60px;
            margin-top: 60px;
        }

        .feature-card {
            background: linear-gradient(135deg, #d4dde1, #ffffff);
            padding: 50px 40px;
            border-radius: 0;
            text-align: center;
            box-shadow: 0 20px 60px rgba(45, 48, 51, 0.2);
            border: none;
            transition: all 0.3s ease;
            clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(170, 75, 65, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .feature-card:hover::before {
            left: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 30px 80px rgba(170, 75, 65, 0.3);
        }

        .section--dark .feature-card {
            background: linear-gradient(135deg, #2d3033, #335252);
            color: #d4dde1;
        }

        .feature-card__icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(45deg, #aa4b41, #335252);
            border-radius: 50%;
            margin: 0 auto 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            color: #d4dde1;
            box-shadow: 0 10px 30px rgba(170, 75, 65, 0.4);
        }

        .feature-card__title {
            font-size: 28px;
            margin-bottom: 20px;
            color: #335252;
            font-weight: bold;
        }

        .section--dark .feature-card__title {
            color: #d4dde1;
        }

        .feature-card__description {
            font-size: 17px;
            line-height: 1.7;
        }

        
        .about-content {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
            font-size: 20px;
            line-height: 1.9;
            position: relative;
            
        }

        .about-content p {
            margin-bottom: 30px;
            padding: 30px;
            background: rgba(212, 221, 225, 0.1);
            border-radius: 20px;
            border-left: 5px solid #aa4b41;
        }

        
        .poker-image {
            max-width: 100%;
            height: auto;
            border-radius: 0;
            margin: 50px auto;
            display: block;
            box-shadow: 0 20px 60px rgba(45, 48, 51, 0.3);
            clip-path: polygon(10% 0%, 90% 0%, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 90%, 0% 10%);
        }

        
        .game-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 50px;
            margin-top: 80px;
        }

        .game-type {
            background: linear-gradient(135deg, #335252, #2d3033);
            padding: 60px 40px;
            color: #d4dde1;
            text-align: center;
            border: 3px solid #aa4b41;
            position: relative;
            transition: transform 0.3s ease;
            border-radius: 30px;
            overflow: hidden;
        }

      

        .game-type::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(170, 75, 65, 0.1) 0%, transparent 70%);
            transition: opacity 0.3s ease;
            opacity: 0;
        }

        .game-type:hover::before {
            opacity: 1;
        }

        .game-type__title {
            font-size: 32px;
            margin-bottom: 25px;
            color: #aa4b41;
            font-weight: bold;
        }

        .game-type__description {
            font-size: 18px;
            line-height: 1.7;
            margin-bottom: 25px;
        }

        .game-type__price {
            font-size: 28px;
            font-weight: bold;
            color: #d4dde1;
            background: linear-gradient(45deg, #aa4b41, #335252);
            padding: 15px;
            border-radius: 15px;
            display: inline-block;
        }

        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 50px;
            margin-top: 60px;
        }

        .testimonial-card {
            background: linear-gradient(135deg, #d4dde1, #ffffff);
            padding: 40px;
            border-radius: 50%;
            width: 350px;
            height: 350px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            box-shadow: 0 15px 50px rgba(45, 48, 51, 0.2);
            transition: transform 0.3s ease;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            background: linear-gradient(45deg, #aa4b41, #335252, #aa4b41);

        }

        .testimonial-card__rating {
            color: #aa4b41;
            font-size: 24px;
            margin-bottom: 15px;
        }

        .testimonial-card__quote {
            font-size: 15px;
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .testimonial-card__author {
            font-weight: bold;
            color: #d4dde1;
            font-size: 14px;
        }

        
        .contact-form {
            max-width: 700px;
            margin: 0 auto;
            background: linear-gradient(135deg, #d4dde1, #ffffff);
            padding: 60px;
            border-radius: 0;
            box-shadow: 0 20px 80px rgba(45, 48, 51, 0.2);
            clip-path: polygon(5% 0%, 95% 0%, 100% 5%, 100% 95%, 95% 100%, 5% 100%, 0% 95%, 0% 5%);
            position: relative;
        }

        .form-group {
            margin-bottom: 35px;
            position: relative;
        }

        .form-label {
            display: block;
            margin-bottom: 10px;
            font-weight: bold;
            color: #335252;
            font-size: 18px;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            padding: 18px 20px;
            border: 3px solid #335252;
            border-radius: 25px;
            font-size: 16px;
            background-color: #ffffff;
            transition: all 0.3s ease;
        }

        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: #aa4b41;
            transform: scale(1.02);
            box-shadow: 0 5px 20px rgba(170, 75, 65, 0.2);
        }

        .form-textarea {
            height: 140px;
            resize: vertical;
            border-radius: 25px;
        }

        
        .site-footer {
            background: linear-gradient(135deg, #2d3033, #335252);
            color: #d4dde1;
            padding: 80px 0 40px;
            clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
            margin-top: -100px;
            padding-top: 180px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-section {
            background: rgba(212, 221, 225, 0.05);
            padding: 30px;
            border-radius: 20px;
            border: 2px solid rgba(170, 75, 65, 0.3);
        }

        .footer-section__title {
            font-size: 24px;
            margin-bottom: 25px;
            color: #aa4b41;
            font-weight: bold;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #d4dde1;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 16px;
        }

        .footer-links a:hover {
            color: #aa4b41;
            transform: translateX(10px);
        }

        .footer-bottom {
            border-top: 2px solid #aa4b41;
            padding-top: 30px;
            text-align: center;
            font-size: 16px;
        }

        
        .notification {
            position: fixed;
            top: 30px;
            right: -50px;
            background: linear-gradient(45deg, #aa4b41, #335252);
            color: #d4dde1;
            padding: 20px 35px;
            border-radius: 50px;
            box-shadow: 0 10px 40px rgba(170, 75, 65, 0.4);
            transform: translateX(500px);
            transition: transform 0.4s ease;
            z-index: 1000;
            font-weight: bold;
            font-size: 16px;
        }

        .notification--show {
            transform: translateX(-30px);
        }

        
        @media (max-width: 768px) {
            .hero__title {
                font-size: 48px;
            }

            .hero__subtitle {
                font-size: 22px;
            }

            .section__title {
                font-size: 30px;
            }

            .features-grid,
            .game-types,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .testimonial-card {
                width: 300px;
                height: 300px;
                padding: 30px;
            }

            .contact-form {
                margin: 0 20px;
                padding: 40px 30px;
            }

            .game-type {
                transform: rotate(0deg);
            }

            .section--skewed,
            .section--diamond,
            .section--wave {
                clip-path: none;
                margin: 0;
                padding: 80px 0;
            }

            .hero-section {
                clip-path: none;
                margin-bottom: 0;
            }

            .site-footer {
                clip-path: none;
                margin-top: 0;
                padding-top: 80px;
            }
        }
         .cookie-popup {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #335252;
      color: #d4dde1;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      z-index: 1000;
      display: none;
    }

    .cookie-popup h3 {
      margin: 0;
      font-size: 18px;
      color: #d4dde1;
    }

    .cookie-popup p {
      font-size: 14px;
      margin: 10px 0;
      color: #d4dde1;
    }

    .cookie-popup button {
      background-color: #aa4b41;
      color: #d4dde1;
      border: none;
      padding: 10px 20px;
      font-size: 14px;
      border-radius: 5px;
      cursor: pointer;
    }

    .cookie-popup button:hover {
      background-color: #2d3033;
    }