:root {
    --oz-gold: #FFD700;
    --oz-amber: #F59E0B;
    --oz-deep-purple: #1E0A3C;
    --oz-royal-purple: #4C1D95;
    --oz-neon-pink: #EC4899;
    --oz-electric-blue: #3B82F6;
    --oz-emerald: #10B981;
    --oz-dark-bg: #0F0A1F;
    --oz-card-bg: #1A1033;
    --oz-text: #F8FAFC;
    --oz-text-muted: #94A3B8;
    --oz-gradient-1: linear-gradient(135deg, #1E0A3C 0%, #4C1D95 50%, #1E0A3C 100%);
    --oz-gradient-gold: linear-gradient(135deg, #FFD700 0%, #F59E0B 50%, #FFD700 100%);
    --oz-gradient-btn: linear-gradient(135deg, #F59E0B 0%, #FFD700 100%);
    --oz-shadow: 0 10px 40px rgba(0,0,0,0.4);
    --oz-glow: 0 0 30px rgba(255,215,0,0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--oz-dark-bg);
    color: var(--oz-text);
    line-height: 1.7;
    min-height: 100vh;
}

.oz-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--oz-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--oz-amber);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.oz-header {
    background: var(--oz-gradient-1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: var(--oz-shadow);
    border-bottom: 2px solid var(--oz-gold);
}

.oz-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.oz-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.oz-logo img {
    width: 88px;
    height: 88px;
    border-radius: 8px;
    box-shadow: var(--oz-glow);
}

.oz-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--oz-gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.oz-nav {
    display: flex;
    align-items: center;
}

.oz-nav-toggle {
    display: none;
    background: transparent;
    border: 2px solid var(--oz-gold);
    color: var(--oz-gold);
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.2rem;
}

.oz-nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    flex-wrap: wrap;
}

.oz-nav-menu li a {
    display: block;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 500;
    color: var(--oz-text);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.oz-nav-menu li a:hover,
.oz-nav-menu li a.active {
    background: var(--oz-gold);
    color: var(--oz-deep-purple);
}

.oz-hero {
    background: var(--oz-gradient-1);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.oz-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="50" cy="50" r="2" fill="%23FFD700" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    animation: sparkle 20s linear infinite;
}

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

.oz-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.oz-hero-content h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    background: var(--oz-gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.oz-hero-content p {
    font-size: 1.1rem;
    color: var(--oz-text-muted);
    margin-bottom: 30px;
    max-width: 500px;
}

.oz-hero-image img {
    border-radius: 16px;
    box-shadow: var(--oz-shadow);
    max-height: 400px;
    object-fit: cover;
    width: 100%;
}

.oz-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.oz-btn-primary {
    background: var(--oz-gradient-btn);
    color: var(--oz-deep-purple);
    box-shadow: var(--oz-glow);
}

.oz-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,215,0,0.4);
    color: var(--oz-deep-purple);
}

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

.oz-btn-secondary:hover {
    background: var(--oz-gold);
    color: var(--oz-deep-purple);
}

.oz-section {
    padding: 80px 0;
}

.oz-section-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.oz-section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--oz-gradient-gold);
    margin: 15px auto 0;
    border-radius: 2px;
}

.oz-slots-grid {
    display: grid;
    gap: 30px;
}

.oz-slot-card {
    background: var(--oz-card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--oz-shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,215,0,0.1);
}

.oz-slot-card:hover {
    transform: translateY(-5px);
    border-color: var(--oz-gold);
    box-shadow: var(--oz-glow);
}

.oz-slot-card-inner {
    display: grid;
    grid-template-columns: 150px 1fr auto;
    gap: 25px;
    padding: 25px;
    align-items: center;
}

.oz-slot-image img {
    width: 150px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
}

.oz-slot-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--oz-gold);
}

.oz-slot-info p {
    color: var(--oz-text-muted);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.oz-slot-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.oz-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.oz-badge-rtp {
    background: rgba(16,185,129,0.2);
    color: var(--oz-emerald);
}

.oz-badge-feature {
    background: rgba(236,72,153,0.2);
    color: var(--oz-neon-pink);
}

.oz-slot-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.oz-slot-actions .oz-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
}

.oz-content {
    background: var(--oz-card-bg);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(255,215,0,0.1);
}

.oz-content h2 {
    font-size: 1.6rem;
    margin: 30px 0 15px;
    color: var(--oz-gold);
}

.oz-content h2:first-child {
    margin-top: 0;
}

.oz-content h3 {
    font-size: 1.3rem;
    margin: 25px 0 12px;
    color: var(--oz-amber);
}

.oz-content p {
    color: var(--oz-text-muted);
    margin-bottom: 15px;
}

.oz-content ul, .oz-content ol {
    margin: 15px 0 15px 25px;
    color: var(--oz-text-muted);
}

.oz-content li {
    margin-bottom: 8px;
}

.oz-table-wrapper {
    overflow-x: auto;
    margin: 25px 0;
    border-radius: 12px;
    border: 1px solid rgba(255,215,0,0.2);
}

.oz-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.oz-table th,
.oz-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255,215,0,0.1);
}

.oz-table th {
    background: var(--oz-royal-purple);
    color: var(--oz-gold);
    font-weight: 600;
    white-space: nowrap;
}

.oz-table tr:hover td {
    background: rgba(255,215,0,0.05);
}

.oz-table td {
    color: var(--oz-text-muted);
}

.oz-chart {
    background: var(--oz-deep-purple);
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
}

.oz-chart-bar {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
}

.oz-chart-label {
    width: 120px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.oz-chart-track {
    flex: 1;
    height: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    overflow: hidden;
}

.oz-chart-fill {
    height: 100%;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: width 1s ease;
}

.oz-chart-fill-gold {
    background: var(--oz-gradient-gold);
    color: var(--oz-deep-purple);
}

.oz-chart-fill-emerald {
    background: var(--oz-emerald);
    color: white;
}

.oz-chart-fill-pink {
    background: var(--oz-neon-pink);
    color: white;
}

.oz-image-block {
    margin: 30px 0;
    text-align: center;
}

.oz-image-block img {
    border-radius: 12px;
    margin: 0 auto;
    max-height: 350px;
    object-fit: cover;
}

.oz-image-block figcaption {
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--oz-text-muted);
    font-style: italic;
}

.oz-author-box {
    background: var(--oz-gradient-1);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    gap: 25px;
    align-items: center;
    margin-top: 40px;
    border: 2px solid var(--oz-gold);
}

.oz-author-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--oz-gold);
}

.oz-author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--oz-gold);
}

.oz-author-info p {
    color: var(--oz-text-muted);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.oz-related {
    background: var(--oz-card-bg);
    border-radius: 16px;
    padding: 30px;
    margin: 40px 0;
}

.oz-related h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--oz-gold);
}

.oz-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.oz-related-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: var(--oz-deep-purple);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.oz-related-item:hover {
    transform: translateX(5px);
    background: var(--oz-royal-purple);
}

.oz-related-item img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.oz-related-item span {
    font-weight: 500;
    color: var(--oz-text);
}

.oz-footer {
    background: var(--oz-gradient-1);
    padding: 60px 0 30px;
    border-top: 2px solid var(--oz-gold);
}

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

.oz-footer-col h4 {
    font-size: 1.2rem;
    color: var(--oz-gold);
    margin-bottom: 20px;
}

.oz-footer-col ul {
    list-style: none;
}

.oz-footer-col ul li {
    margin-bottom: 12px;
}

.oz-footer-col ul li a {
    color: var(--oz-text-muted);
}

.oz-footer-col ul li a:hover {
    color: var(--oz-gold);
}

.oz-footer-col p {
    color: var(--oz-text-muted);
    font-size: 0.95rem;
}

.oz-footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.oz-footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 6px;
}

.oz-responsible {
    background: rgba(255,215,0,0.1);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    border-left: 4px solid var(--oz-gold);
}

.oz-responsible h5 {
    color: var(--oz-gold);
    margin-bottom: 10px;
    font-size: 1rem;
}

.oz-responsible p {
    font-size: 0.9rem;
    color: var(--oz-text-muted);
}

.oz-footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,215,0,0.2);
}

.oz-footer-bottom p {
    color: var(--oz-text-muted);
    font-size: 0.9rem;
}

.oz-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--oz-gradient-btn);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    border: none;
    box-shadow: var(--oz-glow);
}

.oz-scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.oz-scroll-top:hover {
    transform: translateY(-5px);
}

.oz-scroll-top svg {
    width: 24px;
    height: 24px;
    fill: var(--oz-deep-purple);
}

.oz-form {
    max-width: 600px;
}

.oz-form-group {
    margin-bottom: 20px;
}

.oz-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--oz-text);
}

.oz-form-group input,
.oz-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(255,215,0,0.2);
    border-radius: 10px;
    background: var(--oz-deep-purple);
    color: var(--oz-text);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.oz-form-group input:focus,
.oz-form-group textarea:focus {
    outline: none;
    border-color: var(--oz-gold);
    box-shadow: 0 0 15px rgba(255,215,0,0.2);
}

.oz-form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.oz-contact-info {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.oz-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--oz-deep-purple);
    border-radius: 12px;
}

.oz-contact-item svg {
    width: 24px;
    height: 24px;
    fill: var(--oz-gold);
    flex-shrink: 0;
}

.oz-contact-item span {
    color: var(--oz-text-muted);
}

.oz-author-page {
    text-align: center;
    padding: 40px;
}

.oz-author-page .oz-author-avatar {
    margin: 0 auto 25px;
}

.oz-author-page .oz-author-avatar img {
    width: 180px;
    height: 180px;
}

.oz-author-page h2 {
    font-size: 2rem;
    color: var(--oz-gold);
    margin-bottom: 10px;
}

.oz-author-page .oz-author-role {
    color: var(--oz-amber);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.oz-author-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.oz-stat {
    text-align: center;
}

.oz-stat-num {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--oz-gold);
}

.oz-stat-label {
    color: var(--oz-text-muted);
    font-size: 0.9rem;
}

.oz-404 {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.oz-404 h1 {
    font-size: 8rem;
    font-weight: 800;
    background: var(--oz-gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.oz-404 h2 {
    font-size: 2rem;
    margin: 20px 0;
    color: var(--oz-text);
}

.oz-404 p {
    color: var(--oz-text-muted);
    margin-bottom: 30px;
    max-width: 500px;
}

@media (max-width: 992px) {
    .oz-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .oz-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .oz-hero-image {
        order: -1;
    }
    
    .oz-slot-card-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .oz-slot-image img {
        margin: 0 auto;
        width: 200px;
        height: 150px;
    }
    
    .oz-slot-badges {
        justify-content: center;
    }
    
    .oz-slot-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .oz-nav-toggle {
        display: block;
    }
    
    .oz-nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--oz-deep-purple);
        flex-direction: column;
        padding: 20px;
        gap: 5px;
        border-bottom: 2px solid var(--oz-gold);
    }
    
    .oz-nav-menu.active {
        display: flex;
    }
    
    .oz-nav-menu li a {
        text-align: center;
        padding: 15px;
    }
    
    .oz-header-inner {
        position: relative;
    }
    
    .oz-section {
        padding: 50px 0;
    }
    
    .oz-content {
        padding: 25px;
    }
    
    .oz-author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .oz-table th,
    .oz-table td {
        padding: 12px 15px;
    }
    
    .oz-footer-grid {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .oz-logo-text {
        font-size: 1.2rem;
    }
    
    .oz-btn {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .oz-slot-actions {
        flex-direction: column;
    }
    
    .oz-related-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .oz-scroll-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

.oz-error-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.oz-error-content h1 {
    font-size: clamp(80px, 20vw, 180px);
    color: var(--oz-gold);
    line-height: 1;
    margin: 0;
    text-shadow: 0 0 30px rgba(255,215,0,0.3);
}

.oz-error-content h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--oz-text);
    margin: 20px 0;
}

.oz-error-content > p {
    color: var(--oz-text-muted);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 30px;
}

.oz-error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.oz-error-links {
    background: var(--oz-card-bg);
    border-radius: 16px;
    padding: 30px;
    max-width: 400px;
    margin: 0 auto;
}

.oz-error-links h3 {
    color: var(--oz-gold);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.oz-error-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.oz-error-links li {
    margin: 10px 0;
}

.oz-error-links a {
    color: var(--oz-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.oz-error-links a:hover {
    color: var(--oz-gold);
}

.oz-tips-list {
    margin: 25px 0;
}

.oz-tip-item {
    background: var(--oz-card-bg);
    border-left: 4px solid var(--oz-gold);
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 0 8px 8px 0;
}

.oz-tip-item strong {
    color: var(--oz-gold);
}

@media (max-width: 350px) {
    .oz-container {
        padding: 0 15px;
    }
    
    .oz-hero {
        padding: 40px 0;
    }
    
    .oz-logo img {
        width: 40px;
        height: 40px;
    }
}
