:root {
    --primary-color: #8000a7;
    --secondary-color: #d1572a;
    --background-start: #3e1680;
    --background-middle: #524f4f;
    --background-end: #d42a7e;
    --text-color: white;
    --content-bg: #f8f9fa;
    --content-text: #333;
    --footer-bg: #383738;
    --footer-text: white;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, var(--background-start) 0%, var(--background-middle) 50%, var(--background-end) 100%);
    color: var(--text-color);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: relative;
    z-index: 1000;
}

.logo {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.burger-line {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
}

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

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

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

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    max-width: 500px;
    order: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.rtp-info {
    color: var(--primary-color);
    font-weight: bold;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(247, 147, 30, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    order: 1;
}

.logo-container {
    background: var(--primary-color);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 15px;
    display: inline-block;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.logo-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--secondary-color);
}

.wolf {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(247, 147, 30, 0.3));
	vertical-align: middle;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.demo-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.demo-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-modal-content {
    position: relative;
    width: 66.67%;
    height: 66.67%;
    max-width: 1200px;
    max-height: 800px;
    border: 3px solid var(--primary-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.demo-close {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.demo-close:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

#demoIframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.main-content {
    background: var(--content-bg);
    color: var(--content-text);
    padding: 60px 40px;
    margin: 0;
}

.content-container {
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.8;
}

.main-content h1,
.main-content h2,
.main-content h3,
.main-content h4,
.main-content h5,
.main-content h6 {
    color: #2c3e50;
    margin: 30px 0 20px 0;
    font-weight: bold;
}

.main-content h1 { font-size: 2.5rem; }
.main-content h2 { font-size: 2rem; }
.main-content h3 { font-size: 1.5rem; }
.main-content h4 { font-size: 1.25rem; }

.main-content p {
    margin: 20px 0;
    font-size: 1.1rem;
}

.main-content ul,
.main-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.main-content li {
    margin: 10px 0;
    font-size: 1.1rem;
}

.main-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.main-content table img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    display: block;
    margin: 0;
}

@media (max-width: 768px) {
    .main-content table img {
        width: 120px;
        height: 120px;
    }
}

.main-content th,
.main-content td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.main-content th {
    background: var(--primary-color);
    color: white;
    font-weight: bold;
}

.main-content tr:hover {
    background: #f5f5f5;
}

.main-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.main-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 30px 0;
    background: #fff;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.main-content code {
    background: #f4f4f4;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #e83e8c;
}

.casino-rating-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.rating-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: bold;
}

.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.casino-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    border: 3px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.casino-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.casino-rank {
    position: absolute;
    top: -2px;
    left: -2px;
    width: 35px;
    height: 35px;
    border-radius: 0 0 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    color: white;
    z-index: 2;
}

.casino-logo {
    margin: 10px 0;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 12px;
    padding: 5px;
}

.casino-logo img {
    max-width: 120px;
    max-height: 40px;
    object-fit: contain;
    border-radius: 8px;
}

.casino-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c3e50;
    margin: 8px 0;
}

.bonus-info {
    margin: 8px 0;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

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

.casino-rating {
    margin: 8px 0;
    text-align: center;
}

.rating-number {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 3px;
}

.stars {
    font-size: 1.1rem;
    color: #ffc107;
    letter-spacing: 1px;
}

.casino-cta {
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    letter-spacing: 0.5px;
    color: white;
}

.casino-cta:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.faq-section {
    background: var(--content-bg);
    padding: 60px 40px;
    margin: 0;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-title {
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.faq-question {
    background: white;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    border: none;
    width: 100%;
    text-align: left;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question.active {
    background: var(--primary-color);
    color: white;
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
    color: white;
}

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

.faq-answer.active {
    max-height: 300px;
    padding: 20px 25px;
}

.faq-answer p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 20px;
    }
    
    .faq-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-answer.active {
        padding: 15px 20px;
    }
}

.casino-card[data-theme="purple"] {
    border-color: #8e44ad;
}

.casino-card[data-theme="purple"] .casino-rank {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.casino-card[data-theme="purple"] .bonus-info {
    background: rgba(155, 89, 182, 0.1);
    color: #7d3c98;
}

.casino-card[data-theme="purple"] .casino-cta {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.casino-card[data-theme="gold"] {
    border-color: #f39c12;
}

.casino-card[data-theme="gold"] .casino-rank {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.casino-card[data-theme="gold"] .bonus-info {
    background: rgba(243, 156, 18, 0.1);
    color: #d68910;
}

.casino-card[data-theme="gold"] .casino-cta {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.casino-card[data-theme="blue"] {
    border-color: #3498db;
}

.casino-card[data-theme="blue"] .casino-rank {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.casino-card[data-theme="blue"] .bonus-info {
    background: rgba(52, 152, 219, 0.1);
    color: #2874a6;
}

.casino-card[data-theme="blue"] .casino-cta {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.casino-card[data-theme="green"] {
    border-color: #27ae60;
}

.casino-card[data-theme="green"] .casino-rank {
    background: linear-gradient(135deg, #27ae60, #229954);
}

.casino-card[data-theme="green"] .bonus-info {
    background: rgba(39, 174, 96, 0.1);
    color: #1e8449;
}

.casino-card[data-theme="green"] .casino-cta {
    background: linear-gradient(135deg, #27ae60, #229954);
}

.casino-card[data-theme="red"] {
    border-color: #e74c3c;
}

.casino-card[data-theme="red"] .casino-rank {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.casino-card[data-theme="red"] .bonus-info {
    background: rgba(231, 76, 60, 0.1);
    color: #a93226;
}

.casino-card[data-theme="red"] .casino-cta {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 40px 0 20px 0;
}

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

.footer-menu {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid white;
    margin-bottom: 40px;
}

.footer-menu.hidden {
    display: none;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    list-style: none;
}

.footer-nav a {
    color: var(--footer-text);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.footer-nav a:hover {
    color: var(--primary-color);
}

.footer-logos {
    text-align: center;
    padding: 40px 0;
    border-bottom: 1px solid white;
    margin-bottom: 40px;
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.logo-item {
    background: transparent;
    padding: 15px 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
    min-width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item:hover {
    transform: translateY(-5px);
}

.logo-item img {
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
}

.logo-placeholder {
    color: #666;
    font-size: 0.9rem;
    text-align: center;
    font-weight: bold;
}

.footer-text {
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-text p {
    margin: 10px 0;
}

@media (max-width: 1024px) {
    .casino-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .rating-title {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(26, 31, 58, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        font-size: 1.2rem;
    }

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

    .burger-menu {
        display: flex;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 10px 5px 20px 5px;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 0px;
        order: 1;
    }
    
    .hero-image {
    order: 2;
    display: flex;
    justify-content: center;
    z-index: 10;
    position: relative;
}
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: auto;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .wolf {
        max-width: 300px;
        max-height: 250px;
    }

    .features {
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px;
    }
    
    .demo-modal-content {
        width: 95%;
        height: 85%;
        max-height: none;
        border-width: 2px;
        border-radius: 8px;
    }
    
    .demo-close {
        top: -8px;
        right: -8px;
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    .main-content {
        padding: 40px 20px;
		margin-top: -60px;
    }

    .main-content h1 { font-size: 2rem; }
    .main-content h2 { font-size: 1.75rem; }
    .main-content h3 { font-size: 1.5rem; }

    .main-content table {
        font-size: 0.9rem;
    }

    .main-content th,
    .main-content td {
        padding: 10px;
    }

    .casino-rating-container {
        padding: 20px 15px;
    }
    
    .casino-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .rating-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .casino-card {
        padding: 20px 25px;
        max-width: 100%;
        justify-content: flex-start;
    }
    
    .casino-rank {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .casino-logo {
        height: 60px;
        margin: 10px 0 15px 0;
    }
    
    .casino-logo img {
        max-width: 150px;
        max-height: 50px;
    }
    
    .casino-name {
        font-size: 1.2rem;
        margin: 12px 0 15px 0;
    }
    
    .bonus-info {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .casino-cta {
        padding: 12px 20px;
        font-size: 1rem;
        margin: 15px 0 8px 0;
    }
    
    .rating-number {
        font-size: 1.3rem;
    }
    
    .stars {
        font-size: 1.1rem;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 20px;
    }

    .logos-container {
        gap: 20px;
    }

    .logo-item {
        min-width: 100px;
        height: 50px;
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3rem;
    }

    .features {
        gap: 30px;
    }

    .demo-modal-content {
        width: 98%;
        height: 90%;
        margin: 20px 0;
    }

    .demo-close {
        top: -6px;
        right: -6px;
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    .main-content {
        padding: 30px 15px;
    }

    .main-content h1 { font-size: 1.75rem; }
    .main-content p,
    .main-content li { font-size: 1rem; }

    .logos-container {
        flex-direction: column;
        gap: 10px;
    }

    .logo-item {
        width: 100%;
        max-width: 200px;
    }
}