/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: #fef7ed;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 69, 0, 0.1) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffd700' fill-opacity='0.03'%3E%3Cpath d='M30 30c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20zm0 0c0 11.046 8.954 20 20 20s20-8.954 20-20-8.954-20-20-20-20 8.954-20 20z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    position: relative;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

/* Header */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2), 0 0 20px rgba(255, 215, 0, 0.1);
    border-bottom: 3px solid #ffd700;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    text-decoration: none;
    color: white;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.logo:hover {
    text-shadow: 2px 2px 0px rgba(0,0,0,0.3), 0 0 10px rgba(255, 215, 0, 0.5);
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    position: relative;
    font-size: 0.85rem;
    border: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: gold;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: #ffd700;
    border: 3px solid #2d3748;
    color: #2d3748;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 10px;
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    transform: rotate(-2deg);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-2deg);
    z-index: 1000;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 1;
}

.mobile-menu-toggle:hover {
    transform: translateY(-50%) rotate(0deg) scale(1.1);
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%),
                url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffd700' fill-opacity='0.1'%3E%3Cpath d='M50 50c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm20 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z'/%3E%3C/g%3E%3C/svg%3E");
    padding: 2rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: "🎰 ♠ ♥ ♦ ♣ 🎲 💎 ⭐";
    position: absolute;
    top: 20px;
    left: -100%;
    font-size: 1.5rem;
    opacity: 0.2;
    animation: floatSymbols 30s linear infinite;
    white-space: nowrap;
}

@keyframes floatSymbols {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(calc(100vw + 100px)); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.3), 0 0 20px rgba(255, 215, 0, 0.3);
    color: gold;
    transform: rotate(-1deg);
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.4);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    position: relative;
    transform: rotate(-1deg);
    box-shadow: 4px 4px rgba(0,0,0,0.2), 0 0 15px rgba(255, 215, 0, 0.2);
    min-width: 120px;
}

.stat:nth-child(2n) {
    transform: rotate(1deg);
}

.stat:hover {
    transform: translateY(-5px) rotate(0deg) scale(1.05);
    box-shadow: 6px 6px rgba(0,0,0,0.3), 0 0 25px rgba(255, 215, 0, 0.4);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: gold;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%),
                url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffd700' fill-opacity='0.1'%3E%3Cpath d='M50 50c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm20 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z'/%3E%3C/g%3E%3C/svg%3E");
    color: white;
    padding: 2rem 0;
    text-align: center;
    position: relative;
}

.page-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.3), 0 0 15px rgba(255, 215, 0, 0.3);
    color: gold;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-description {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Casino Hero */
.casino-hero {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%),
                url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffd700' fill-opacity='0.1'%3E%3Cpath d='M50 50c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm20 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z'/%3E%3C/g%3E%3C/svg%3E");
    color: white;
    padding: 2rem 0;
    position: relative;
}

.casino-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

.casino-hero-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.casino-logo-large {
    position: relative;
}

.casino-logo-large img {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    object-fit: cover;
    border: 4px solid #ffd700;
    box-shadow: 4px 4px rgba(0,0,0,0.3), 0 0 20px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    transform: rotate(-2deg);
}

.casino-logo-large img:hover {
    transform: scale(1.1) rotate(2deg);
}

.casino-hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.3), 0 0 15px rgba(255, 215, 0, 0.3);
    color: gold;
    transform: rotate(-0.5deg);
}

.casino-hero-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.stars {
    color: gold;
    font-size: 1.2rem;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.3);
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));
}

.rating-text {
    font-weight: 600;
    color: gold;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.3);
}

.casino-hero-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    max-width: 600px;
}

/* Bonus Card */
.bonus-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    border: 4px solid #ffd700;
    position: relative;
    box-shadow: 5px 5px rgba(0,0,0,0.2), 0 0 20px rgba(255, 215, 0, 0.3);
    transform: rotate(1deg);
    max-width: 300px;
    width: 100%;
}

.bonus-card:before {
    content: "🎁";
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 2rem;
    background: gold;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #2d3748;
    box-shadow: 3px 3px rgba(0,0,0,0.3);
}

.bonus-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: gold;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.3);
}

.bonus-amount {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: gold;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.3), 0 0 15px rgba(255, 215, 0, 0.5);
}

.bonus-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.bonus-features span {
    font-size: 0.9rem;
    opacity: 0.9;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Rating Section */
.rating-section {
    padding: 3rem 0;
    background: #fef7ed;
    position: relative;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #2d3748;
    text-shadow: 2px 2px 0px rgba(255, 215, 0, 0.3);
    transform: rotate(-0.5deg);
}

.section-description {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #4a5568;
    line-height: 1.7;
}

/* Casino Grid */
.casino-grid {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.casino-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 4px 4px rgba(0,0,0,0.1), 8px 8px rgba(255, 215, 0, 0.2);
    border: 3px solid #2d3748;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    transform: rotate(-0.5deg);
}

.casino-card:nth-child(2n) {
    transform: rotate(0.5deg);
}

.casino-card:hover {
    transform: translateY(-6px) rotate(0deg) scale(1.02);
    box-shadow: 6px 6px rgba(0,0,0,0.15), 12px 12px rgba(255, 215, 0, 0.3);
}

.casino-card.featured {
    border: 4px solid #ffd700;
    background: linear-gradient(135deg, #fff9e6 0%, #fef3c7 100%);
    position: relative;
}

.casino-card.featured:after {
    content: "👑 ТОП";
    position: absolute;
    top: -10px;
    right: 10px;
    background: gold;
    color: #2d3748;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    border: 3px solid #2d3748;
    box-shadow: 3px 3px rgba(0,0,0,0.2);
    transform: rotate(-8deg);
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.casino-rank {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.rank-number {
    width: 36px;
    height: 36px;
    background: gold;
    color: #2d3748;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    border: 3px solid #2d3748;
    box-shadow: 3px 3px rgba(0,0,0,0.2), 0 0 8px rgba(255, 215, 0, 0.3);
    transform: rotate(-5deg);
}

.casino-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.casino-logo img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
    border: 3px solid #ffd700;
    box-shadow: 3px 3px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    transform: rotate(-2deg);
}

.casino-logo img:hover {
    transform: scale(1.1) rotate(2deg);
}

.casino-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #2d3748;
    text-shadow: 1px 1px 0px rgba(255, 215, 0, 0.3);
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.rating-score {
    font-weight: 600;
    color: #4a5568;
    font-size: 0.9rem;
}

.casino-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 12px;
    border: 2px dashed rgba(255, 215, 0, 0.4);
    position: relative;
}

.casino-highlights:before {
    content: "📊";
    position: absolute;
    top: -8px;
    left: 12px;
    background: white;
    padding: 0 0.4rem;
    font-size: 1rem;
}

.highlight {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    text-align: center;
}

.highlight-label {
    font-size: 0.75rem;
    color: #718096;
    font-weight: 500;
}

.highlight-value {
    font-weight: 700;
    color: #2d3748;
    font-size: 0.85rem;
}

.casino-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.feature {
    background: #e6fffa;
    color: #234e52;
    padding: 0.3rem 0.6rem;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 2px solid #38b2ac;
    transition: all 0.3s ease;
    box-shadow: 2px 2px rgba(0,0,0,0.1);
    transform: rotate(-1deg);
}

.feature:nth-child(2n) {
    transform: rotate(1deg);
}

.feature:hover {
    transform: translateY(-2px) rotate(0deg);
    box-shadow: 3px 3px rgba(0,0,0,0.15);
}

.casino-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.85rem;
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 3px solid #2d3748;
    box-shadow: 3px 3px rgba(0,0,0,0.2);
    transform: rotate(-1deg);
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-3px) rotate(0deg) scale(1.05);
    box-shadow: 5px 5px rgba(0,0,0,0.3);
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: gold;
    color: #2d3748;
    font-weight: 700;
    text-shadow: none;
}

.btn-large {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 20px;
    font-weight: 500;
    box-shadow: 2px 2px rgba(0,0,0,0.2);
    transform: rotate(-1deg);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: gold;
    color: gold;
    transform: translateY(-2px) rotate(0deg);
    box-shadow: 3px 3px rgba(0,0,0,0.3);
}

/* Casino Details */
.casino-details {
    padding: 3rem 0;
    background: #f7fafc;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.details-main {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 5px 5px rgba(0,0,0,0.1), 10px 10px rgba(255, 215, 0, 0.2);
    border: 3px solid #2d3748;
    transform: rotate(-0.3deg);
}

.review-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
    text-shadow: 1px 1px 0px rgba(255, 215, 0, 0.3);
    transform: rotate(-0.5deg);
}

.review-section h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: #2d3748;
    position: relative;
    padding-left: 2rem;
    transform: rotate(-0.3deg);
}

.review-section h3:before {
    content: "✨";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}

.review-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #4a5568;
    font-size: 1rem;
}

.review-section ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.review-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #4a5568;
}

/* Pros and Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}

.pros, .cons {
    padding: 1.5rem;
    border-radius: 15px;
    border: 3px solid;
    box-shadow: 4px 4px rgba(0,0,0,0.1);
    transform: rotate(-0.5deg);
}

.pros {
    background: #f0fff4;
    border-color: #48bb78;
}

.cons {
    background: #fffaf0;
    border-color: #ed8936;
    transform: rotate(0.5deg);
}

.pros h4, .cons h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-shadow: 1px 1px 0px rgba(255,255,255,0.5);
}

.pros ul, .cons ul {
    list-style: none;
    padding: 0;
}

.pros li, .cons li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.pros li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #38a169;
    font-weight: 700;
    font-size: 1.1rem;
}

.cons li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #e53e3e;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Sidebar */
.details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.casino-quick-info,
.casino-rating-breakdown,
.related-casinos {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 4px 4px rgba(0,0,0,0.1), 8px 8px rgba(255, 215, 0, 0.2);
    border: 3px solid #2d3748;
    transform: rotate(0.3deg);
}

.casino-quick-info:nth-child(2n),
.casino-rating-breakdown:nth-child(2n),
.related-casinos:nth-child(2n) {
    transform: rotate(-0.3deg);
}

.casino-quick-info h3,
.casino-rating-breakdown h3,
.related-casinos h3 {
    margin-bottom: 1rem;
    color: #2d3748;
    font-size: 1.2rem;
    text-shadow: 1px 1px 0px rgba(255, 215, 0, 0.3);
}

.info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px dashed rgba(226, 232, 240, 0.5);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.info-label {
    font-weight: 500;
    color: #718096;
    font-size: 0.9rem;
}

.info-value {
    font-weight: 600;
    color: #2d3748;
    font-size: 0.9rem;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.rating-item span:first-child {
    flex: 1;
    font-size: 0.85rem;
    color: #4a5568;
    font-weight: 500;
}

.rating-item span:last-child {
    font-weight: 600;
    color: #2d3748;
    min-width: 30px;
    font-size: 0.9rem;
}

.rating-bar {
    flex: 2;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #cbd5e0;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(90deg, gold 0%, #ffed4e 100%);
    transition: width 0.5s ease;
    border-radius: 3px;
}

.related-casino {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
    border: 2px solid transparent;
}

.related-casino:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(5px);
}

.related-casino a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.related-casino img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid #ffd700;
}

.related-casino div {
    display: flex;
    flex-direction: column;
}

.related-casino strong {
    color: #2d3748;
    font-size: 0.9rem;
}

.related-casino span {
    font-size: 0.8rem;
    color: #718096;
}

/* Methodology Section */
.methodology-section {
    padding: 3rem 0;
    background: #f7fafc;
}

.methodology-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.methodology-item {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 3px 3px rgba(0,0,0,0.1), 6px 6px rgba(255, 215, 0, 0.2);
    border: 3px solid #2d3748;
    transition: all 0.3s ease;
    transform: rotate(-0.5deg);
    height: fit-content;
}

.methodology-item:nth-child(2n) {
    transform: rotate(0.5deg);
}

.methodology-item:hover {
    transform: translateY(-3px) rotate(0deg);
    box-shadow: 5px 5px rgba(0,0,0,0.15), 10px 10px rgba(255, 215, 0, 0.3);
}

.methodology-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    text-shadow: 2px 2px 0px rgba(255, 215, 0, 0.3);
    display: block;
}

.methodology-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #2d3748;
    text-shadow: 1px 1px 0px rgba(255, 215, 0, 0.3);
    line-height: 1.3;
}

.methodology-item p {
    margin-bottom: 0.75rem;
    line-height: 1.5;
    color: #4a5568;
    font-size: 0.9rem;
}

.methodology-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.methodology-item li {
    border-bottom: 1px dashed #e2e8f0;
    color: #4a5568;
    position: relative;
    padding: 0.3rem 0 0.3rem 1.2rem;
    font-size: 0.85rem;
    line-height: 1.4;
}

.methodology-item li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.methodology-item li:before {
    content: "✓";
    color: gold;
    font-weight: 700;
    position: absolute;
    left: 0;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.2);
    font-size: 0.9rem;
}

/* Process Steps */
.rating-process {
    padding: 3rem 0;
    background: #fef7ed;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.process-step {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 3px 3px rgba(0,0,0,0.1), 6px 6px rgba(255, 215, 0, 0.2);
    border: 3px solid #2d3748;
    transition: all 0.3s ease;
    transform: rotate(-0.5deg);
    height: fit-content;
}

.process-step:nth-child(2n) {
    transform: rotate(0.5deg);
}

.process-step:hover {
    transform: translateY(-3px) rotate(0deg);
    box-shadow: 5px 5px rgba(0,0,0,0.15), 10px 10px rgba(255, 215, 0, 0.3);
}

.step-number {
    width: 50px;
    height: 50px;
    background: gold;
    color: #2d3748;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 0.75rem;
    border: 3px solid #2d3748;
    box-shadow: 3px 3px rgba(0,0,0,0.2);
    transform: rotate(-5deg);
}

.process-step h3 {
    margin-bottom: 0.75rem;
    color: #2d3748;
    font-size: 1.1rem;
    text-shadow: 1px 1px 0px rgba(255, 215, 0, 0.3);
    line-height: 1.3;
}

.process-step p {
    color: #4a5568;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Transparency Section */
.transparency-section {
    padding: 3rem 0;
    background: #f7fafc;
}

.transparency-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.transparency-item {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 3px 3px rgba(0,0,0,0.1), 6px 6px rgba(255, 215, 0, 0.2);
    text-align: center;
    border: 3px solid #2d3748;
    transition: all 0.3s ease;
    transform: rotate(-0.3deg);
    height: fit-content;
}

.transparency-item:nth-child(2n) {
    transform: rotate(0.3deg);
}

.transparency-item:hover {
    transform: translateY(-3px) rotate(0deg);
    box-shadow: 5px 5px rgba(0,0,0,0.15), 10px 10px rgba(255, 215, 0, 0.3);
}

.transparency-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #2d3748;
    text-shadow: 1px 1px 0px rgba(255, 215, 0, 0.3);
    line-height: 1.3;
}

.transparency-item p {
    color: #4a5568;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Responsible Content */
.responsible-content {
    padding: 3rem 0;
    background: #fef7ed;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.main-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 5px 5px rgba(0,0,0,0.1), 10px 10px rgba(255, 215, 0, 0.2);
    border: 3px solid #2d3748;
    transform: rotate(-0.3deg);
}

.main-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
    text-shadow: 1px 1px 0px rgba(255, 215, 0, 0.3);
    transform: rotate(-0.5deg);
}

.main-content h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: #2d3748;
    position: relative;
    padding-left: 2rem;
    transform: rotate(-0.3deg);
}

.main-content h3:before {
    content: "⚠️";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}

.main-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #4a5568;
    font-size: 1rem;
}

/* Principles Grid */
.principles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.principle-card {
    background: #f7fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    transform: rotate(-0.5deg);
}

.principle-card:nth-child(2n) {
    transform: rotate(0.5deg);
}

.principle-card:hover {
    transform: translateY(-3px) rotate(0deg);
    box-shadow: 3px 3px rgba(0,0,0,0.1);
    border-color: gold;
}

.principle-card h4 {
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-size: 1rem;
}

.principle-card p {
    font-size: 0.9rem;
    color: #4a5568;
    margin: 0;
}

/* Warning Signs */
.warning-signs {
    background: #fff5f5;
    border: 3px solid #feb2b2;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    transform: rotate(-0.3deg);
}

.warning-signs li {
    margin-bottom: 0.5rem;
    color: #742a2a;
    font-weight: 500;
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.tool-item {
    background: #f0fff4;
    border: 2px solid #9ae6b4;
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
    transform: rotate(-0.5deg);
}

.tool-item:nth-child(2n) {
    transform: rotate(0.5deg);
}

.tool-item:hover {
    transform: translateY(-3px) rotate(0deg);
    box-shadow: 3px 3px rgba(154, 230, 180, 0.3);
}

.tool-item h4 {
    margin-bottom: 0.5rem;
    color: #22543d;
    font-size: 0.9rem;
}

.tool-item p {
    font-size: 0.8rem;
    color: #276749;
    margin: 0;
}

/* Help Resources */
.help-resources {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.resource-card {
    background: #ebf8ff;
    border: 3px solid #90cdf4;
    border-radius: 12px;
    padding: 1.5rem;
    transform: rotate(-0.3deg);
}

.resource-card:nth-child(2n) {
    transform: rotate(0.3deg);
}

.resource-card h4 {
    margin-bottom: 1rem;
    color: #2a4365;
    font-size: 1.1rem;
}

.resource-card ul {
    list-style: none;
    padding: 0;
}

.resource-card li {
    margin-bottom: 0.5rem;
    color: #2c5282;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.resource-card li:before {
    content: "📞";
    position: absolute;
    left: 0;
}

/* Sidebar Content */
.sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quick-tips,
.age-restriction,
.emergency-contact {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 4px 4px rgba(0,0,0,0.1), 8px 8px rgba(255, 215, 0, 0.2);
    border: 3px solid #2d3748;
    transform: rotate(0.3deg);
}

.quick-tips:nth-child(2n),
.age-restriction:nth-child(2n),
.emergency-contact:nth-child(2n) {
    transform: rotate(-0.3deg);
}

.quick-tips h3,
.age-restriction h3,
.emergency-contact h3 {
    margin-bottom: 1rem;
    color: #2d3748;
    font-size: 1.2rem;
    text-shadow: 1px 1px 0px rgba(255, 215, 0, 0.3);
}

.tip-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px dashed rgba(226, 232, 240, 0.5);
}

.tip-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.tip-item h4 {
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-size: 1rem;
}

.tip-item p {
    font-size: 0.9rem;
    color: #4a5568;
    margin: 0;
}

.age-warning {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff5f5;
    border: 3px solid #feb2b2;
    border-radius: 10px;
    padding: 1rem;
    transform: rotate(-1deg);
}

.age-icon {
    font-size: 2rem;
    font-weight: 700;
    color: #e53e3e;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.2);
}

.age-warning p {
    font-size: 0.9rem;
    color: #742a2a;
    margin: 0;
    font-weight: 500;
}

.emergency-info {
    background: #fff5f5;
    border: 3px solid #feb2b2;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    transform: rotate(1deg);
}

.emergency-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e53e3e;
    margin: 0.5rem 0;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.2);
}

.emergency-info small {
    color: #742a2a;
    font-weight: 500;
}

/* Contacts Section */
.contacts-section {
    padding: 3rem 0;
    background: #fef7ed;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
    text-shadow: 1px 1px 0px rgba(255, 215, 0, 0.3);
    transform: rotate(-0.5deg);
}

.contact-info p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #4a5568;
    font-size: 1rem;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 4px 4px rgba(0,0,0,0.1), 8px 8px rgba(255, 215, 0, 0.2);
    border: 3px solid #2d3748;
    transition: all 0.3s ease;
    transform: rotate(-0.3deg);
}

.contact-method:nth-child(2n) {
    transform: rotate(0.3deg);
}

.contact-method:hover {
    transform: translateY(-3px) rotate(0deg);
    box-shadow: 6px 6px rgba(0,0,0,0.15), 12px 12px rgba(255, 215, 0, 0.3);
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    text-align: center;
    text-shadow: 1px 1px 0px rgba(255, 215, 0, 0.3);
    flex-shrink: 0;
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-size: 1.1rem;
}

.contact-details p {
    margin-bottom: 0.25rem;
    color: #4a5568;
    font-size: 1rem;
}

.contact-details small {
    color: #718096;
    font-size: 0.85rem;
}

.contact-topics {
    background: #f7fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 2px dashed rgba(255, 215, 0, 0.4);
    transform: rotate(-0.3deg);
}

.contact-topics h3 {
    margin-bottom: 1rem;
    color: #2d3748;
    font-size: 1.2rem;
}

.contact-topics ul {
    list-style: none;
    padding: 0;
}

.contact-topics li {
    margin-bottom: 0.5rem;
    color: #4a5568;
    font-size: 0.95rem;
    padding-left: 2rem;
    position: relative;
}

.contact-topics li:before {
    content: "🎰";
    position: absolute;
    left: 0;
    font-size: 1rem;
}

/* Form Container */
.form-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 5px 5px rgba(0,0,0,0.1), 10px 10px rgba(255, 215, 0, 0.2);
    border: 3px solid #2d3748;
    transform: rotate(0.3deg);
}

.form-container h3 {
    margin-bottom: 1.5rem;
    color: #2d3748;
    font-size: 1.5rem;
    text-shadow: 1px 1px 0px rgba(255, 215, 0, 0.3);
    transform: rotate(-0.5deg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2d3748;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 3px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: gold;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2), 3px 3px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px;
    accent-color: #ffd700;
}

/* Additional Info */
.additional-info {
    margin-top: 3rem;
}

.info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Info Section */
.info-section {
    background: #f7fafc;
    padding: 3rem 0;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 4px 4px rgba(0,0,0,0.1), 8px 8px rgba(255, 215, 0, 0.2);
    text-align: center;
    border: 3px solid #2d3748;
    transition: all 0.3s ease;
    transform: rotate(-0.5deg);
}

.info-card:nth-child(2n) {
    transform: rotate(0.5deg);
}

.info-card:hover {
    transform: translateY(-5px) rotate(0deg);
    box-shadow: 6px 6px rgba(0,0,0,0.15), 12px 12px rgba(255, 215, 0, 0.3);
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d3748;
    text-shadow: 1px 1px 0px rgba(255, 215, 0, 0.3);
}

.info-card p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    padding: 3rem 0 1.5rem;
    position: relative;
    border-top: 4px solid #ffd700;
}

.footer:before {
    content: "🎰 ♠ ♥ ♦ ♣ 🎲 💎 ⭐";
    position: absolute;
    top: 20px;
    left: -100%;
    font-size: 1.5rem;
    opacity: 0.1;
    animation: floatSymbols 40s linear infinite;
    white-space: nowrap;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: gold;
    font-size: 1.2rem;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.3);
}

.footer-section p {
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: gold;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.3);
    transform: translateX(3px);
}

.footer-bottom {
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* Blog Section */
.blog-section {
    padding: 3rem 0;
    background: #fef7ed;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 4px 4px rgba(0,0,0,0.1), 8px 8px rgba(255, 215, 0, 0.2);
    border: 3px solid #2d3748;
    transition: all 0.3s ease;
    transform: rotate(-0.5deg);
    height: auto;
    display: flex;
    flex-direction: column;
}

.blog-card:nth-child(2n) {
    transform: rotate(0.5deg);
}

.blog-card:hover {
    transform: translateY(-6px) rotate(0deg);
    box-shadow: 6px 6px rgba(0,0,0,0.15), 12px 12px rgba(255, 215, 0, 0.3);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    min-width: 80px;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.blog-date,
.blog-category {
    font-size: 0.8rem;
    color: #718096;
}

.blog-category {
    background: #e6fffa;
    color: #234e52;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-weight: 500;
}

.blog-title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #2d3748;
    line-height: 1.4;
}

.blog-excerpt {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-link {
    align-self: flex-start;
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.blog-link:after {
    content: "→";
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: #764ba2;
}

.blog-link:hover:after {
    margin-left: 0.75rem;
}

.sidebar-link {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    display: inline-block;
    margin-top: 0.5rem;
}

.sidebar-link:after {
    content: "→";
    margin-left: 0.3rem;
    transition: all 0.3s ease;
}

.sidebar-link:hover {
    color: #764ba2;
}

.sidebar-link:hover:after {
    margin-left: 0.5rem;
}

.categories-list {
    list-style: none;
    padding: 0;
}

.categories-list li {
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px dashed rgba(226, 232, 240, 0.5);
}

.categories-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.categories-list a {
    color: #4a5568;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.categories-list a:hover {
    color: #667eea;
    transform: translateX(5px);
}

.categories-list a.active {
    color: #667eea;
    font-weight: 600;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .hero {
        padding: 1.5rem 0 1rem 0;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }
    
    .hero-stats {
        gap: 1rem;
        margin-top: 1rem;
        flex-wrap: wrap;
    }
    
    .stat {
        min-width: 80px;
        padding: 0.8rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1.5rem 0 0.5rem 0;
    }
    
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .hero-stats {
        gap: 0.5rem;
        margin-top: 0.5rem;
    }
    
    .stat {
        min-width: 70px;
        padding: 0.6rem 0.4rem;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}
.back-to-blog {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    margin-left: 1rem;
}

.back-to-blog:hover {
    color: gold;
    transform: translateX(-3px);
}

.article-footer {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 2px dashed rgba(226, 232, 240, 0.5);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: #e6fffa;
    color: #234e52;
    padding: 0.3rem 0.6rem;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 2px solid #38b2ac;
    transition: all 0.3s ease;
    box-shadow: 2px 2px rgba(0,0,0,0.1);
    transform: rotate(-1deg);
}

.tag:nth-child(2n) {
    transform: rotate(1deg);
}

.article-share {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.share-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.share-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 4px 4px rgba(0,0,0,0.1), 8px 8px rgba(255, 215, 0, 0.2);
    border: 3px solid #2d3748;
    transform: rotate(0.3deg);
}

.sidebar-widget h3 {
    margin-bottom: 1rem;
    color: #2d3748;
    font-size: 1.2rem;
    text-shadow: 1px 1px 0px rgba(255, 215, 0, 0.3);
}

.popular-post {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px dashed rgba(226, 232, 240, 0.5);
}

.popular-post:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.popular-post h4 {
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-size: 1rem;
}

.popular-post p {
    font-size: 0.9rem;
    color: #4a5568;
    margin: 0 0 0.5rem 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    padding: 1rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    border-top: 3px solid #ffd700;
    z-index: 10000;
    display: none !important;
    animation: slideUp 0.5s ease-out;
}

.cookie-banner.show {
    display: block !important;
}

@keyframes slideUp {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-direction: column;
    text-align: center;
}

.cookie-text h3 {
    margin: 0 0 0.5rem;
    color: gold;
    font-size: 1.1rem;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.3);
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
}

.cookie-text a {
    color: gold;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-text a:hover {
    color: #ffed4e;
}

.cookie-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-actions .btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    white-space: nowrap;
    min-width: auto;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    backdrop-filter: blur(5px);
    padding: 1rem;
}

.cookie-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 5px 5px rgba(0,0,0,0.2), 10px 10px rgba(255, 215, 0, 0.3);
    border: 3px solid #2d3748;
    transform: rotate(-0.5deg);
    animation: modalAppear 0.3s ease-out;
}

@keyframes modalAppear {
    0% {
        transform: scale(0.8) rotate(-0.5deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotate(-0.5deg);
        opacity: 1;
    }
}

.cookie-modal-header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 2px dashed rgba(255, 215, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h3 {
    margin: 0;
    color: #2d3748;
    font-size: 1.3rem;
    text-shadow: 1px 1px 0px rgba(255, 215, 0, 0.3);
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.6rem;
    color: #718096;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    background: #f7fafc;
    color: #e53e3e;
    transform: rotate(90deg);
}

.cookie-modal-body {
    padding: 1rem 1.5rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    transform: rotate(-0.3deg);
}

.cookie-category:nth-child(2n) {
    transform: rotate(0.3deg);
}

.cookie-category:hover {
    transform: rotate(0deg);
    border-color: gold;
    box-shadow: 2px 2px rgba(255, 215, 0, 0.2);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.3rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cookie-category h4 {
    margin: 0;
    color: #2d3748;
    font-size: 1rem;
}

.cookie-category p {
    margin: 0;
    color: #4a5568;
    font-size: 0.8rem;
    line-height: 1.5;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e0;
    transition: 0.3s;
    border-radius: 24px;
    border: 2px solid #2d3748;
    box-shadow: 2px 2px rgba(0,0,0,0.1);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    border: 1px solid #2d3748;
}

input:checked + .toggle-slider {
    background-color: gold;
}

input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

input:disabled + .toggle-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 1rem 1.5rem 1.5rem;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    border-top: 2px dashed rgba(255, 215, 0, 0.3);
    flex-wrap: wrap;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, gold 0%, #ffed4e 100%);
    border-radius: 6px;
    border: 2px solid #2d3748;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ffed4e 0%, gold 100%);
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px) rotate(-1deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotate(-0.5deg);
    }
}

.casino-card {
    animation: fadeInUp 0.6s ease forwards;
}

.casino-card:nth-child(1) { animation-delay: 0.1s; }
.casino-card:nth-child(2) { animation-delay: 0.2s; }
.casino-card:nth-child(3) { animation-delay: 0.3s; }
.casino-card:nth-child(4) { animation-delay: 0.4s; }
.casino-card:nth-child(5) { animation-delay: 0.5s; }
    line-height: 1.2;
.casino-card:nth-child(6) { animation-delay: 0.6s; }

/* Mobile Optimizations */
@media (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 1rem;
    }
    
    /* Navigation */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        border-radius: 0 0 20px 20px;
        border: 3px solid #2d3748;
        border-top: none;
        box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.2);
        transform: rotate(-0.5deg);
        z-index: 999;
    }
    
    .nav-menu.show {
        display: flex;
    }
    
    .nav-link {
        color: #2d3748;
        padding: 0.75rem;
        border-radius: 10px;
        margin-bottom: 0.5rem;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(255, 215, 0, 0.1);
        color: #667eea;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Logo */
    .logo {
        font-size: 1.1rem;
    }
    
    /* Hero */
    .hero {
        padding: 1.5rem 0;
    }
    
    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .hero-stats {
        gap: 0.8rem;
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .stat {
        padding: 0.8rem 1rem;
        border-radius: 8px;
        min-width: 70px;
        flex: 0 1 auto;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
        font-size: 1.1rem;
        margin-bottom: 0.1rem;
    
    /* Page Hero */
    .page-hero {
        font-size: 0.65rem;
        line-height: 1;
    }
    
    .page-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    /* Casino Hero */
    .casino-hero {
        padding: 2rem 0;
    }
    
    .casino-hero-content {
        text-align: center;
    }
    
    .casino-hero-info {
        flex-direction: column;
        text-align: center;
    }
    
    .casino-logo-large img {
        width: 70px;
        height: 70px;
    }
    
    .casino-hero-title {
        font-size: 1.8rem;
    }
    
    .casino-hero-rating {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Bonus Card */
    .bonus-card {
        padding: 1.25rem;
        max-width: 100%;
    }
    
    .bonus-amount {
        font-size: 1.3rem;
    }
    
    /* Sections */
    .rating-section,
    .info-section,
    .methodology-section,
    .rating-process,
    .transparency-section,
    .responsible-content,
    .contacts-section,
    .blog-section {
        padding: 2.5rem 0;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    /* Casino Grid */
    .casino-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .casino-card {
        padding: 1.25rem;
    }
    
    .casino-highlights {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .casino-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    /* Grids */
    .details-grid,
    .pros-cons,
    .content-grid,
    .contacts-grid,
    .methodology-grid,
    .process-steps,
    .transparency-content,
    .principles-grid,
    .tools-grid,
    .help-resources,
    .info-cards,
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Main Content */
    .main-content,
    .details-main {
        padding: 1.5rem;
    }
    
    .main-content h2,
    .review-section h2 {
        font-size: 1.5rem;
    }
    
    .main-content h3,
    .review-section h3 {
        font-size: 1.2rem;
        margin: 1.5rem 0 0.75rem;
    }
    
    /* Contact Methods */
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .contact-icon {
        width: auto;
    }
    
    /* Form */
    .form-container {
        padding: 1.5rem;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
    
    .cookie-actions {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .cookie-actions .btn {
        flex: 1;
        min-width: 100px;
    }
    
    .cookie-modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    /* Blog */
    .blog-layout {
        grid-template-columns: 1fr;
    }
    
    .blog-card {
        flex-direction: column;
    }
    
    .blog-image {
        width: 100%;
        height: 200px;
    }
    
    .blog-content {
        padding: 1.25rem;
    }
    
    .blog-title {
        font-size: 1.1rem;
    }
    
    .article-footer {
        flex-direction: column;
        gap: 1rem;
    }
    
    .article-share {
        justify-content: flex-start;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 0.75rem;
    }
    
    /* Typography */
    .hero-title {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }
    
    .page-title,
    .casino-hero-title {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    /* Bonus */
    .bonus-amount {
        font-size: 1.2rem;
    }
    
    /* Cards */
    .casino-card,
    .methodology-item,
    .process-step,
    .transparency-item,
    .info-card,
    .main-content,
    .form-container {
        padding: 1rem;
    }
    
    /* Icons and Numbers */
    .methodology-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    /* Text */
    .methodology-item h3,
    .process-step h3,
    .transparency-item h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .methodology-item p,
    .process-step p {
        font-size: 0.85rem;
    }
    
    .methodology-item li {
        font-size: 0.7rem;
        gap: 0.6rem;
        margin-top: 0.8rem;
    }
    
    /* Contact */
        padding: 0.6rem 0.8rem;
        border-radius: 6px;
        min-width: 60px;
    }
    
    .contact-icon {
    }
    
    /* Blog */
    .blog-content {
        padding: 1rem;
    }
    
    .blog-title {
        font-size: 1rem;
    }
    
    .blog-excerpt {
        font-size: 0.9rem;
    }
}

/* Tablet Optimizations */
@media (min-width: 769px) and (max-width: 1024px) {
    .casino-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .methodology-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .transparency-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .details-grid {
        grid-template-columns: 2fr 1fr;
    }
    
    .content-grid {
        grid-template-columns: 2fr 1fr;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .blog-layout {
        grid-template-columns: 2fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .casino-hero-content {
        flex-direction: row;
        text-align: left;
    }
    
    .casino-hero-info {
        flex-direction: row;
        text-align: left;
    }
    
    .cookie-content {
        flex-direction: row;
        text-align: left;
    }
}

/* Desktop Optimizations */
@media (min-width: 1025px) {
    .casino-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .methodology-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .transparency-content {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tools-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .help-resources {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .details-grid {
        grid-template-columns: 2fr 1fr;
    }
    
    .content-grid {
        grid-template-columns: 2fr 1fr;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .blog-layout {
        grid-template-columns: 2fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .casino-hero-content {
        flex-direction: row;
        text-align: left;
    }
    
    .casino-hero-info {
        flex-direction: row;
        text-align: left;
    }
    
    .cookie-content {
        flex-direction: row;
        text-align: left;
    }
    
    .pros-cons {
        grid-template-columns: 1fr 1fr;
    }
    
    .casino-highlights {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .blog-card {
        flex-direction: row;
        align-items: stretch;
    }
    
    .blog-image {
        width: 30%;
        min-width: 200px;
        height: auto;
    }
    
    .blog-content {
        flex-grow: 1;
        padding: 1.5rem;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .casino-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .info-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}