:root {
    --primary-gold: #ffd700;
    --primary-gold-light: #ffed4e;
    --primary-blue: #1e40af;
    --primary-blue-dark: #1d4ed8;
    --primary-blue-light: #3b82f6;
    --secondary-blue: #2563eb;
    --bg-dark: #0a0a0a;
    --bg-section-1: rgba(15, 15, 25, 0.9);
    --bg-section-2: rgba(10, 10, 20, 0.9);
    --bg-section-3: rgba(20, 20, 30, 0.9);
    --bg-card: rgba(255, 255, 255, 0.05);
    --bg-header: rgba(0, 0, 0, 0.9);
    --bg-footer: rgba(0, 0, 0, 0.95);
    --accent-orange: #ff6b35;
    --accent-orange-light: #f7931e;
    --accent-red: #dc2626;
    --accent-red-light: #ef4444;
    --mustard-color: #d4a574;
    --mustard-color-light: #e6c199;
    --pirots1-color-1: #8B4513;
    --pirots1-color-2: #CD853F;
    --pirots1-color-3: #DEB887;
    --pirots2-color-1: #1a5f1a;
    --pirots2-color-2: #2d8f2d;
    --pirots2-color-3: #4caf4c;
    --pirots3-color-1: #5a1a5a;
    --pirots3-color-2: #8f2d8f;
    --pirots3-color-3: #af4caf;
    --pirotsx-color-1: #1a5a5f;
    --pirotsx-color-2: #2d8f8f;
    --pirotsx-color-3: #4cafaf;
    --pirots4-color-1: #B8860B;
    --pirots4-color-2: #DAA520;
    --pirots4-color-3: #FFD700;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.9);
    --text-muted: rgba(255, 255, 255, 0.7);
    --border-gold: rgba(255, 215, 0, 0.2);
    --border-gold-hover: rgba(255, 215, 0, 0.3);
    --border-white: rgba(255, 255, 255, 0.1);
    --border-white-hover: rgba(255, 255, 255, 0.3);
    --shadow-blue: rgba(59, 130, 246, 0.4);
    --shadow-orange: rgba(255, 107, 53, 0.5);
    --shadow-orange-glow: rgba(255, 107, 53, 0.8);
    --shadow-dark: rgba(0, 0, 0, 0.3);
    --shadow-card: rgba(0, 0, 0, 0.2);
    --container-max-width: 1200px;
    --border-radius: 8px;
    --border-radius-large: 15px;
    --border-radius-card: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-light));
    border: none;
    border-radius: 50px;
    padding: 15px 20px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--bg-dark);
    font-weight: 600;
    font-size: 14px;
    min-width: 120px;
    justify-content: center;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, var(--primary-gold-light), var(--primary-gold));
}

.parrot-icon {
    font-size: 18px;
    animation: fly 2s ease-in-out infinite;
}

.scroll-text {
    font-weight: 700;
    letter-spacing: 0.5px;
}

@keyframes fly {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    25% { 
        transform: translateY(-3px) rotate(-5deg); 
    }
    50% { 
        transform: translateY(-5px) rotate(0deg); 
    }
    75% { 
        transform: translateY(-3px) rotate(5deg); 
    }
}

.pirots1-bg {
    background: linear-gradient(135deg, var(--pirots1-color-1), var(--pirots1-color-2), var(--pirots1-color-3));
}

.pirots2-bg {
    background: linear-gradient(135deg, var(--pirots2-color-1), var(--pirots2-color-2), var(--pirots2-color-3));
}

.pirots3-bg {
    background: linear-gradient(135deg, var(--pirots3-color-1), var(--pirots3-color-2), var(--pirots3-color-3));
}

.pirotsx-bg {
    background: linear-gradient(135deg, var(--pirotsx-color-1), var(--pirotsx-color-2), var(--pirotsx-color-3));
}

.pirots4-bg {
    background: linear-gradient(135deg, var(--pirots4-color-1), var(--pirots4-color-2), var(--pirots4-color-3));
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-blue-dark), var(--secondary-blue));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-blue);
}

.btn-secondary {
    background: var(--bg-card);
    color: white;
    border: 2px solid var(--border-white);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--border-white-hover);
    transform: translateY(-2px);
}

.btn-highlight {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-light));
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    animation: highlight-glow 2s ease-in-out infinite alternate;
    box-shadow: 0 0 15px var(--shadow-orange);
}

.btn-mustard {
    background: linear-gradient(135deg, var(--mustard-color), var(--mustard-color-light));
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-mustard:hover {
    background: linear-gradient(135deg, var(--mustard-color-light), var(--mustard-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

.btn-hero {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-light));
    color: white;
    border: none;
    padding: 24px 48px;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
    letter-spacing: 1px;
    animation: hero-pulse 3s ease-in-out infinite;
    box-shadow: 0 0 30px var(--shadow-orange);
    text-transform: uppercase;
}

@keyframes hero-pulse {
    0% { 
        transform: scale(1);
        box-shadow: 0 0 30px var(--shadow-orange);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 0 35px var(--shadow-orange-glow);
    }
    100% { 
        transform: scale(1);
        box-shadow: 0 0 30px var(--shadow-orange);
    }
}

@keyframes highlight-glow {
    from { 
        box-shadow: 0 0 15px var(--shadow-orange);
        transform: scale(1);
    }
    to { 
        box-shadow: 0 0 25px var(--shadow-orange-glow);
        transform: scale(1.02);
    }
}

.btn-highlight:hover {
    background: linear-gradient(135deg, var(--accent-orange-light), var(--accent-orange));
    transform: translateY(-2px) scale(1.05);
}

.btn-hero:hover {
    background: linear-gradient(135deg, var(--accent-orange-light), var(--accent-orange));
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 0 40px var(--shadow-orange-glow);
}

.header {
    background: var(--bg-header);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: relative;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-gold);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand .logo {
    height: 40px;
    width: auto;
    max-width: 128px;
    cursor: default;
    transition: opacity 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 12px;
    border-radius: 6px;
}

.nav-menu .dropdown {
    position: relative;
    display: inline-block;
}

.nav-menu .dropdown-toggle {
    background: none;
    border: none;
    color: var(--text-primary);
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    font-size: inherit;
    font-family: inherit;
}

.nav-menu .dropdown-toggle::after {
    content: ' ▼';
    font-size: 0.8em;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-menu .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-header);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-gold);
    border-radius: var(--border-radius);
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 10px 30px var(--shadow-dark);
}

.nav-menu .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0;
    white-space: nowrap;
}

.nav-menu .dropdown-menu a:hover {
    background: var(--bg-card);
    color: var(--primary-gold);
}

.nav-menu .dropdown-menu a:first-child {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.nav-menu .dropdown-menu a:last-child {
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.nav-menu a.new-release {
    background: linear-gradient(135deg, var(--mustard-color), var(--mustard-color-light));
    color: white;
    font-weight: 600;
    animation: glow 2s ease-in-out infinite alternate;
    box-shadow: 0 0 10px rgba(212, 165, 116, 0.5);
}

@keyframes glow {
    from { 
        box-shadow: 0 0 10px rgba(212, 165, 116, 0.5);
        transform: scale(1);
    }
    to { 
        box-shadow: 0 0 20px rgba(212, 165, 116, 0.8);
        transform: scale(1.05);
    }
}

.nav-menu a.new-release:hover {
    background: linear-gradient(135deg, var(--mustard-color-light), var(--mustard-color));
}

.nav-menu a:not(.new-release):hover,
.nav-menu .dropdown-toggle:hover {
    color: var(--primary-gold);
}

.nav-menu a:not(.new-release)::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-menu a:not(.new-release):hover::after {
    width: 80%;
}

.nav-actions {
    display: flex;
    align-items: center;
}

.hero {
    padding: 80px 0;
    background: radial-gradient(ellipse at center, rgba(30, 64, 175, 0.3) 0%, rgba(0, 0, 0, 0.8) 70%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="1" fill="%23ffd700" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23ffd700" opacity="0.2"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.4"/></svg>') repeat;
    animation: twinkle 4s ease-in-out infinite alternate;
}

@keyframes twinkle {
    0% { opacity: 0.3; }
    100% { opacity: 0.8; }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-image {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--border-radius-large);
    box-shadow: 0 20px 40px var(--shadow-dark), 0 0 30px rgba(37, 99, 235, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-main-image:hover {
    box-shadow: 0 25px 50px var(--shadow-dark), 0 0 40px rgba(37, 99, 235, 0.5);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-5px);
}

.games-grid {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.9) 0%, rgba(20, 20, 30, 0.9) 100%);
}

.games-grid .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.game-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-card);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-white);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-dark);
    border-color: var(--border-gold-hover);
}

.game-image {
    height: 250px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.game-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: opacity 0.3s ease;
}

.game-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-gold);
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
    visibility: hidden;
}

.game-card:hover .game-logo {
    opacity: 0;
    visibility: hidden;
}

.game-card:hover .game-img {
    opacity: 0.7;
}

.game-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.game-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-gold);
}

.game-info p {
    margin-bottom: 25px;
    opacity: 0.9;
    line-height: 1.6;
    flex-grow: 1;
}

.game-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
    margin-top: auto;
    justify-content: space-between;
}

.game-buttons button {
    flex: 1;
    min-width: 0;
    font-size: 13px;
    padding: 10px 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.about-section {
    padding: 80px 0;
    background: var(--bg-section-1);
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary-gold);
}

.about-section p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
    line-height: 1.8;
}

.developer-section {
    padding: 80px 0;
    background: var(--bg-section-2);
}

.developer-section .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.developer-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-gold);
}

.developer-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
    line-height: 1.8;
}

.developer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.elk-studios-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    min-height: 300px;
    object-fit: contain;
    border-radius: var(--border-radius-large);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.character-small {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}

.casino-section {
    padding: 80px 0;
    background: var(--bg-section-3);
}

.casino-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-gold);
}

.casino-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.casino-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-large);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    border: 1px solid var(--border-white);
    transition: all 0.3s ease;
}

.casino-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-gold-hover);
    box-shadow: 0 15px 30px var(--shadow-card);
}

.casino-logo {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: white;
}

.casino-emoji {
    font-size: 4rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
    border: 2px solid var(--border-gold-hover);
}

.casino-info h3 {
    color: var(--primary-gold);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.casino-info p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.casino-disclaimer {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.features-section {
    padding: 80px 0;
    background: var(--bg-section-1);
}

.features-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-gold);
}

.feature-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-large);
    padding: 40px;
    margin-bottom: 30px;
    border: 1px solid var(--border-white);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--border-gold-hover);
    box-shadow: 0 10px 30px var(--shadow-card);
}

.feature-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-gold);
}

.feature-card p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
    line-height: 1.6;
}

.feature-card ul {
    list-style: none;
    padding: 0;
}

.feature-card li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.feature-card li::before {
    content: '🏴‍☠️';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.feature-card li strong {
    color: var(--primary-gold);
}

.faq-section {
    padding: 80px 0;
    background: var(--bg-section-2);
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-gold);
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid var(--border-white);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--border-gold-hover);
}

.faq-item summary {
    padding: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    list-style: none;
    position: relative;
    transition: all 0.3s ease;
}

.faq-item summary:hover {
    color: var(--primary-gold);
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-content {
    padding: 25px 25px 25px 25px;
    opacity: 0.9;
    line-height: 1.6;
    margin-top: 10px;
}

.footer {
    background: var(--bg-footer);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-gold);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    max-width: 128px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer-badges {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    flex-wrap: wrap;
}

.badge-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.badge-img:hover {
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-white);
    opacity: 0.7;
}

.footer-bottom p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.inner-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.inner-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.inner-content {
    flex: 1;
    padding: 80px 0;
    background: var(--bg-section-1);
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 40px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-section {
    background: var(--bg-card);
    border-radius: var(--border-radius-large);
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid var(--border-white);
    backdrop-filter: blur(10px);
}

.content-section h2 {
    color: var(--primary-gold);
    font-size: 2rem;
    margin-bottom: 25px;
}

.content-section h3 {
    color: var(--primary-gold-light);
    font-size: 1.5rem;
    margin-bottom: 20px;
    margin-top: 30px;
}

.content-section p {
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.content-section ul, .content-section ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.content-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-white);
}

.content-table th,
.content-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-white);
}

.content-table th {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    color: white;
    font-weight: 600;
}

.content-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.demo-section {
    background: var(--bg-section-2);
    border-radius: var(--border-radius-large);
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid var(--border-gold);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.demo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.demo-section h2 {
    color: var(--primary-gold);
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.demo-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.demo-game-container {
    background: var(--bg-dark);
    border-radius: var(--border-radius-large);
    padding: 20px;
    margin: 30px 0;
    border: 2px solid var(--border-gold);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.demo-game-placeholder {
    text-align: center;
    opacity: 0.7;
}

.demo-game-placeholder h3 {
    color: var(--primary-gold);
    font-size: 2rem;
    margin-bottom: 20px;
}

.demo-game-placeholder p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.demo-game-iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: var(--border-radius);
    display: none;
}

.demo-game-iframe.loaded {
    display: block;
}

.demo-game-iframe.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    border-radius: 0;
}

.fullscreen-controls {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    display: none;
}

.fullscreen-controls.visible {
    display: block;
}

.btn-fullscreen {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--border-gold);
    color: var(--primary-gold);
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
}

.btn-fullscreen:hover {
    background: rgba(0, 0, 0, 0.9);
    color: var(--primary-gold-light);
}

.btn-demo-play {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-light));
    color: var(--bg-dark);
    border: none;
    padding: 20px 40px;
    border-radius: var(--border-radius);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.btn-demo-play:hover {
    background: linear-gradient(135deg, var(--primary-gold-light), var(--primary-gold));
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.screenshot-slider {
    margin: 40px 0;
    position: relative;
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-large);
    background: var(--bg-card);
    border: 1px solid var(--border-white);
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-slide {
    min-width: 100%;
    position: relative;
}

.slider-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-large);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: var(--primary-gold);
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-nav:hover {
    background: rgba(0, 0, 0, 0.9);
    color: var(--primary-gold-light);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.slider-dot.active {
    background: var(--primary-gold);
    transform: scale(1.2);
}

.breadcrumb {
    margin-bottom: 30px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-gold-light);
}

.breadcrumb span {
    margin: 0 10px;
    color: var(--text-muted);
}

.demo-game-container-streamlined {
    margin: 30px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-large);
}

.demo-game-iframe-streamlined {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: var(--border-radius-large);
    display: none;
    background: var(--bg-dark);
}

.demo-game-iframe-streamlined.loaded {
    display: block;
}

.mobile-screenshot-gallery {
    position: relative;
    margin: 20px 0;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-white);
}

.mobile-slider-container {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: var(--bg-dark);
}

.mobile-slider-track {
    display: flex;
    transition: transform 0.3s ease;
    height: 100%;
    width: 300%;
}

.mobile-slider-slide {
    width: 33.333%;
    height: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.mobile-slider-slide img {
    max-width: 95%;
    max-height: 95%;
    width: auto;
    height: auto;
    object-fit: cover;
    border-radius: var(--border-radius);
    background: transparent;
}

.mobile-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    border: none;
    color: var(--primary-gold);
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-slider-nav:hover {
    background: rgba(0, 0, 0, 0.9);
    color: var(--primary-gold-light);
    transform: translateY(-50%) scale(1.1);
}

.mobile-slider-nav.prev {
    left: 10px;
}

.mobile-slider-nav.next {
    right: 10px;
}

.mobile-slider-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
}

.mobile-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.mobile-slider-dot.active {
    background: var(--primary-gold);
    transform: scale(1.3);
}

.mobile-slider-dot:hover {
    background: var(--primary-gold-light);
}

.comments-section {
    background: var(--bg-card);
    border-radius: var(--border-radius-large);
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid var(--border-white);
    backdrop-filter: blur(10px);
}

.comments-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 5px;
    max-width: 400px;
    margin: 0 auto 30px auto;
}

.comment-tab {
    flex: 1;
    background: none;
    border: none;
    color: var(--text-muted);
    padding: 12px 24px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.comment-tab.active {
    background: var(--primary-gold);
    color: var(--bg-dark);
}

.comment-tab:not(.active):hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

.comments-content {
    display: none;
}

.comments-content.active {
    display: block;
}

.comment-item {
    background: var(--bg-section-2);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--border-white);
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-weight: bold;
    font-size: 16px;
}

.comment-meta {
    flex: 1;
}

.comment-author {
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 2px;
}

.comment-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.comment-rating {
    display: flex;
    gap: 2px;
    color: var(--primary-gold);
    font-size: 14px;
}

.comment-text {
    line-height: 1.6;
    margin-bottom: 12px;
}

.comment-helpful {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.helpful-btn {
    background: none;
    border: 1px solid var(--border-white);
    color: var(--text-muted);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.helpful-btn:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.contact-form-secure {
    position: relative;
}

.contact-form-secure::before {
    content: "🔒 Secure Form";
    position: absolute;
    top: -10px;
    right: 15px;
    background: var(--primary-gold);
    color: var(--bg-dark);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-white);
    border-radius: 8px;
    background: var(--bg-section-2);
    color: white;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-light));
    color: var(--bg-dark);
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.game-image-overview {
    min-height: 300px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.game-card,
.feature-card,
.casino-card {
    animation: fadeInUp 0.6s ease-out;
}

.game-card:nth-child(2) {
    animation-delay: 0.1s;
}

.game-card:nth-child(3) {
    animation-delay: 0.2s;
}

.game-card:nth-child(4) {
    animation-delay: 0.3s;
}

.game-card:nth-child(5) {
    animation-delay: 0.4s;
}

@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .hero-content p {
        font-size: 1.4rem;
    }
    
    .game-logo {
        font-size: 3rem;
    }
    
    .about-section h2,
    .developer-content h2,
    .casino-section h2,
    .features-section h2,
    .faq-section h2 {
        font-size: 3rem;
    }
}

@media (min-width: 1200px) and (max-width: 1919px) {
    .container {
        max-width: 1400px;
    }
}

@media (max-width: 1366px) and (min-width: 1025px) {
    .game-buttons {
        gap: 8px;
    }
    
    .game-buttons button {
        font-size: 12px;
        padding: 8px 6px;
    }
    
    .games-grid .container {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-image {
        order: -1;
        height: 300px;
    }
    
    .developer-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .games-grid .container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .casino-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    .badge-img {
        height: 35px;
    }
    
    .nav-menu {
        gap: 15px;
    }
    
    .nav-menu a {
        padding: 6px 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 10px 0;
    }
    
    .nav-menu {
        display: none !important;
    }
    
    .header .container {
        justify-content: space-between;
    }
    
    .nav-actions .btn-highlight {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-image {
        order: -1;
        height: 250px;
    }
    
    .hero-main-image {
        width: 90%;
        height: auto;
        max-height: 250px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        margin-top: 20px;
    }
    
    .games-grid .container {
        grid-template-columns: 1fr;
    }
    
    .casino-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .casino-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .game-info {
        padding: 20px;
    }
    
    .feature-card {
        padding: 25px;
    }
    
    .elk-studios-image {
        max-width: 350px;
        min-height: 200px;
    }
    
    .demo-game-container-streamlined {
        min-height: 400px;
        margin: 20px -15px;
        border-radius: 0;
    }
    
    .demo-game-iframe-streamlined {
        height: 400px;
        border-radius: 0;
    }
    
    .demo-section {
        padding: 30px 15px;
    }
    
    .about-section,
    .developer-section,
    .casino-section,
    .features-section,
    .faq-section {
        padding: 60px 0;
    }
    
    .about-section h2,
    .developer-content h2,
    .casino-section h2,
    .features-section h2,
    .faq-section h2 {
        font-size: 2rem;
    }
    
    .comments-section {
        padding: 25px 20px;
    }
    
    .comment-item {
        padding: 15px;
    }
    
    .comment-header {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .comment-helpful {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .content-section > div:first-child {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .game-image-overview {
        min-height: 250px !important;
        margin: 0 -15px;
        border-radius: 0 !important;
    }
    
    .game-image-overview img {
        width: 100%;
        height: 100%;
        object-fit: contain !important; 
        border-radius: 15px;
    }
    
    .game-image-overview > div:last-child {
        border-radius: 0 !important;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        padding: 12px 16px;
        min-width: 100px;
        font-size: 12px;
    }
    
    .parrot-icon {
        font-size: 16px;
    }
    
    .scroll-text {
        font-size: 12px;
    }
    
    .inner-content {
        padding: 80px 0;
    }
    
    .mobile-slider-slide {
        width: 33.333% !important;
    }
    
    .mobile-slider-container {
        height: 300px;
    }
    
    .mobile-slider-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .mobile-slider-nav.prev {
        left: 5px;
    }
    
    .mobile-slider-nav.next {
        right: 5px;
    }
    
    .mobile-slider-indicators {
        padding: 10px;
    }
    
    .mobile-slider-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .inner-content {
        padding: 80px 0;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .nav-actions {
        gap: 10px;
    }
    
    .nav-brand .logo {
        height: 30px;
    }
    
    .nav-actions .btn-highlight {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-highlight {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .btn-hero {
        padding: 18px 36px;
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .hero-buttons button {
        width: 100%;
        max-width: 250px;
    }
    
    .game-buttons {
        flex-direction: row;
        gap: 8px;
        flex-wrap: nowrap;
    }
    
    .game-buttons button {
        width: auto;
        flex: 1;
        font-size: 12px;
        padding: 8px 4px;
    }
    
    .games-grid .container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .faq-item summary {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-content {
        padding: 25px 20px 20px 20px;
        margin-top: 10px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-badges {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        justify-content: center;
    }
    
    .badge-img {
        height: 30px;
    }
    
    .elk-studios-image {
        max-width: 280px;
        min-height: 180px;
    }
    
    .casino-logo {
        width: 80px;
        height: 80px;
    }
    
    .casino-emoji {
        font-size: 3rem;
    }
    
    .about-section h2,
    .developer-content h2,
    .casino-section h2,
    .features-section h2,
    .faq-section h2 {
        font-size: 1.8rem;
    }
    
    .mobile-slider-container {
        height: 250px;
    }
    
    .mobile-slider-nav {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .comments-tabs {
        flex-direction: column;
        max-width: none;
        gap: 5px;
    }
    
    .comment-tab {
        padding: 10px 20px;
    }
    
    .game-image-overview {
        min-height: 200px !important;
        margin: 0 -10px;
    }
    
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        padding: 10px 14px;
        min-width: 90px;
        font-size: 11px;
    }
    
    .parrot-icon {
        font-size: 14px;
    }
    
    .scroll-text {
        font-size: 11px;
    }
}

@media (min-width: 2560px) {
    .container {
        max-width: 2000px;
    }
    
    .hero-content h1 {
        font-size: 5rem;
    }
    
    .about-section h2,
    .developer-content h2,
    .casino-section h2,
    .features-section h2,
    .faq-section h2 {
        font-size: 4rem;
    }
}

@media print {
    .header,
    .footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero {
        background: none;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-highlight,
    .btn-hero,
    .btn-mustard {
        display: none;
    }
}

@media (prefers-contrast: high) {
    .game-card,
    .casino-card,
    .feature-card,
    .faq-item {
        border-color: #ffffff;
    }
    
    .btn-primary {
        background: #0000ff;
    }
    
    .btn-secondary {
        background: #ffffff;
        color: #000000;
    }
    
    .btn-highlight {
        background: #ff0000;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    margin-top: 40px;
}

.main-content {
    min-width: 0;
}

.sidebar {
    padding-left: 20px;
}

.sidebar-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-large);
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid var(--border-white);
    backdrop-filter: blur(10px);
}

.sidebar-card h3 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.sidebar-card h3 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}

.sidebar-card p,
.sidebar-card span,
.sidebar-card li {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}

.focus-list li,
.recognition-item span {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}

.stats-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: var(--bg-section-2);
    border-radius: var(--border-radius);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-gold);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-align: center;
}

.focus-list {
    list-style: none;
    padding: 0;
}

.focus-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-white);
    position: relative;
    padding-left: 20px;
}

.focus-list li:last-child {
    border-bottom: none;
}

.focus-list li::before {
    content: '⚓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
}

.recognition-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.recognition-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: var(--bg-section-2);
    border-radius: var(--border-radius);
}

.recognition-icon {
    font-size: 1.2rem;
}

.page-hero {
    padding: 80px 0;
    background: radial-gradient(ellipse at center, rgba(30, 64, 175, 0.3) 0%, rgba(0, 0, 0, 0.8) 70%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="1" fill="%23ffd700" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23ffd700" opacity="0.2"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.4"/></svg>') repeat;
    animation: twinkle 4s ease-in-out infinite alternate;
}

.page-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.page-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.page-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 0;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    padding: 80px 0;
    background: var(--bg-section-1);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.service-item {
    background: var(--bg-card);
    padding: 25px;
    border-radius: var(--border-radius-large);
    border: 1px solid var(--border-white);
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: var(--border-gold-hover);
    transform: translateY(-5px);
}

.service-item h3 {
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.service-item p {
    opacity: 0.9;
    line-height: 1.6;
}


.service-item h3,
.value-item h3 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}

.service-item p,
.value-item p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}

.services-grid,
.values-grid {
    word-wrap: break-word;
    overflow-wrap: break-word;
}


.expertise-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.expertise-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.expertise-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 1.1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.value-item {
    background: var(--bg-card);
    padding: 25px;
    border-radius: var(--border-radius-large);
    border: 1px solid var(--border-white);
    text-align: center;
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: var(--border-gold-hover);
    transform: translateY(-5px);
}

.value-item h3 {
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.value-item p {
    opacity: 0.9;
    line-height: 1.6;
}

.contact-info {
    background: var(--bg-card);
    padding: 25px;
    border-radius: var(--border-radius-large);
    border: 1px solid var(--border-white);
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info strong {
    color: var(--primary-gold);
}

@media (max-width: 1024px) {
    .content-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sidebar {
        padding-left: 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0;
    }
    
    .about-content {
        padding: 60px 0;
    }
    
    .services-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar-card {
        padding: 20px;
    }
    
    .stat-item {
        padding: 12px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

.content-section a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.content-section a:hover {
    color: var(--primary-gold-light);
    text-decoration: underline;
}

.content-section a:visited {
    color: var(--primary-gold);
}

button:focus,
a:focus,
summary:focus {
    outline: 3px solid var(--primary-gold);
    outline-offset: 2px;
}



.frame-1 {
            position: relative;
            border-left: 5px solid white;
            margin: 1.5em 0;
            padding: 20px 30px 20px 75px;
            font-size: 18px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .frame-1::before {
            content: "💣";
            font-size: 45px;
            font-weight: bold;
            color: white;
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
        }
        .frame-1::after {
            content: "";
            position: absolute;
            left: 5px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 10px solid white;
        }
.frame-2 {
            position: relative;
            border-left: 5px solid white;
            margin: 1.5em 0;
            padding: 20px 30px 20px 75px;
            font-size: 18px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .frame-2::before {
            content: "⚔️";
            font-size: 45px;
            font-weight: bold;
            color: white;
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
        }
        .frame-2::after {
            content: "";
            position: absolute;
            left: 5px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 10px solid white;
        }    
    .frame-3 {
            position: relative;
            border-left: 5px solid white;
            margin: 1.5em 0;
            padding: 20px 30px 20px 75px;
            font-size: 18px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .frame-3::before {
            content: "🗡️";
            font-size: 45px;
            font-weight: bold;
            color: white;
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
        }
        .frame-3::after {
            content: "";
            position: absolute;
            left: 5px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 10px solid white;
        } 
.frame-4 {
            position: relative;
            border-left: 5px solid white;
            margin: 1.5em 0;
            padding: 20px 30px 20px 75px;
            font-size: 18px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .frame-4::before {
            content: "🌊";
            font-size: 45px;
            font-weight: bold;
            color: white;
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
        }
        .frame-4::after {
            content: "";
            position: absolute;
            left: 5px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 10px solid white;
        }
        
    
    
  .frame-5 {
            position: relative;
            border-left: 5px solid white;
            margin: 1.5em 0;
            padding: 20px 30px 20px 75px;
            font-size: 18px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .frame-5::before {
            content: "☠️";
            font-size: 45px;
            font-weight: bold;
            color: white;
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
        }
        .frame-5::after {
            content: "";
            position: absolute;
            left: 5px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 10px solid white;
        }

  .frame-6 {
            position: relative;
            border-left: 5px solid white;
            margin: 1.5em 0;
            padding: 20px 30px 20px 75px;
            font-size: 18px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .frame-6::before {
            content: "🦜";
            font-size: 45px;
            font-weight: bold;
            color: white;
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
        }
        .frame-6::after {
            content: "";
            position: absolute;
            left: 5px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 10px solid white;
        }


    .frame-7 {
            position: relative;
            border-left: 5px solid white;
            margin: 1.5em 0;
            padding: 20px 30px 20px 75px;
            font-size: 18px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .frame-7::before {
            content: "🏴‍☠️";
            font-size: 45px;
            font-weight: bold;
            color: white;
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
        }
        .frame-7::after {
            content: "";
            position: absolute;
            left: 5px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 10px solid white;
        }
		
		
		.video-section {
    background: var(--bg-card);
    border-radius: var(--border-radius-large);
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid var(--border-white);
    backdrop-filter: blur(10px);
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    background: var(--bg-dark);
    border: 2px solid var(--border-gold);
    box-shadow: 0 10px 30px var(--shadow-dark);
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.3) 0%, rgba(0, 0, 0, 0.8) 70%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="1" fill="%23ffd700" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23ffd700" opacity="0.2"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.4"/></svg>');
}

.video-placeholder:hover {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.4) 0%, rgba(0, 0, 0, 0.9) 70%);
    transform: scale(1.02);
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
}

.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--bg-dark);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
    animation: pulse-play 2s ease-in-out infinite;
    border: none;
    cursor: pointer;
}

@keyframes pulse-play {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.8);
    }
}

.video-placeholder:hover .play-button {
    transform: scale(1.15);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.8);
    animation: none;
}

.video-title {
    margin-top: 20px;
    color: var(--primary-gold);
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    z-index: 2;
    position: relative;
}

.video-description {
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 1rem;
    text-align: center;
    z-index: 2;
    position: relative;
}

.video-player {
    position: relative;
    width: 100%;
    height: 450px;
    background: #000;
    display: none;
}

.video-player.active {
    display: block;
}

.video-element {
    width: 100%;
    height: 100%;
    outline: none;
    object-fit: contain;
}

.video-controls {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 10px;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-player:hover .video-controls {
    opacity: 1;
}

.video-control-btn {
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: var(--primary-gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    backdrop-filter: blur(5px);
}

.video-control-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    color: var(--primary-gold-light);
    transform: scale(1.1);
}


.video-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background: #000;
    display: none;
}

.video-fullscreen.active {
    display: block;
}

.video-fullscreen .video-element {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-fullscreen .video-controls {
    opacity: 1;
}

.fullscreen-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    border: none;
    color: var(--primary-gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 101;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.fullscreen-close:hover {
    background: rgba(0, 0, 0, 1);
    color: var(--primary-gold-light);
    transform: scale(1.1);
}


.video-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-gold);
    font-size: 1.2rem;
    z-index: 3;
    display: none;
    text-align: center;
}

.video-loading.active {
    display: block;
}

.video-spinner {
    border: 3px solid rgba(255, 215, 0, 0.3);
    border-top: 3px solid var(--primary-gold);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: video-spin 1s linear infinite;
    margin: 0 auto 10px;
}

@keyframes video-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


@media (max-width: 768px) {
    .video-section {
        padding: 25px 20px;
        margin: 20px -15px;
        border-radius: 0;
    }

    .video-container {
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .video-placeholder,
    .video-player {
        height: 250px;
    }

    .play-button {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .video-title {
        font-size: 1.3rem;
        margin-top: 15px;
    }

    .video-description {
        font-size: 0.9rem;
        margin-top: 8px;
    }

    .video-controls {
        gap: 8px;
        top: 8px;
        right: 8px;
    }

    .video-control-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .fullscreen-close {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .video-section {
        padding: 20px 15px;
    }

    .video-placeholder,
    .video-player {
        height: 200px;
    }

    .play-button {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .video-title {
        font-size: 1.2rem;
        margin-top: 12px;
    }

    .video-description {
        font-size: 0.85rem;
        margin-top: 6px;
    }

    .video-control-btn {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .fullscreen-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .video-controls {
        top: 5px;
        right: 5px;
    }
}


.video-container.loading .video-placeholder {
    pointer-events: none;
    opacity: 0.7;
}

.video-player.buffering::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 215, 0, 0.3);
    border-top: 3px solid var(--primary-gold);
    border-radius: 50%;
    animation: video-spin 1s linear infinite;
    z-index: 10;
}


.video-player.active {
    animation: fadeInVideo 0.5s ease-in-out;
}

@keyframes fadeInVideo {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


.video-error {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--accent-red);
    font-size: 1.1rem;
    z-index: 5;
    display: none;
}

.video-error.active {
    display: block;
}

.video-error-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.video-retry-btn {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.video-retry-btn:hover {
    background: linear-gradient(135deg, var(--accent-red-light), var(--accent-red));
    transform: translateY(-2px);
}


.pdf-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    color: white;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
    border: 2px solid transparent;
}

.pdf-download-btn:hover {
    background: linear-gradient(135deg, var(--primary-blue-dark), var(--secondary-blue));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
}

.pdf-icon {
    font-size: 20px;
    animation: bounce 2s ease-in-out infinite;
}

.pdf-text {
    font-weight: 700;
    letter-spacing: 0.5px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-2px);
    }
}

@media (max-width: 768px) {
    .pdf-download-btn {
        padding: 12px 20px;
        font-size: 14px;
        gap: 8px;
    }
    
    .pdf-icon {
        font-size: 18px;
    }
}

.pdf-download-btn.gold-style {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-light));
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.pdf-download-btn.gold-style:hover {
    background: linear-gradient(135deg, var(--primary-gold-light), var(--primary-gold));
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    color: var(--bg-dark);
}


  .table-scroll {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            margin: 20px 0;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .table-scroll::-webkit-scrollbar {
            height: 8px;
        }

        .table-scroll::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
        }

        .table-scroll::-webkit-scrollbar-thumb {
            background: #ffd700;
            border-radius: 4px;
        }
		
		
		
		     .field-error {
            color: var(--accent-red);
            font-size: 0.8rem;
            margin-top: 5px;
            min-height: 1.2em;
        }
        
        .form-input.error {
            border-color: var(--accent-red);
            box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.1);
        }
        
        .form-input.valid {
            border-color: var(--pirots2-color-2);
            box-shadow: 0 0 0 2px rgba(45, 143, 45, 0.1);
        }
        
        .security-indicator {
            display: inline-block;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin-left: 5px;
        }
        
        .security-indicator.secure {
            background-color: var(--pirots2-color-2);
        }
        
        .security-indicator.warning {
            background-color: var(--accent-orange);
        }
        
        .security-indicator.danger {
            background-color: var(--accent-red);
        }
        
        #submitSpinner {
            display: none;
        }
        
        .form-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }
        
        .success-message {
            background: var(--pirots2-color-1);
            color: white;
            padding: 15px;
            border-radius: 8px;
            margin-top: 15px;
        }
        
        .error-message {
            background: var(--accent-red);
            color: white;
            padding: 15px;
            border-radius: 8px;
            margin-top: 15px;
        }