@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');
:root {
    --primary: #ff6b35;
    --primary-dark: #e55a2b;
    --secondary: #1a1a2e;
    --accent: #ffd700;
    --dark: #0f0f1a;
    --light: #f8f9fa;
    --gray: #6c757d;
    --success: #28a745;
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --gradient-dark: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
    --shadow: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-lg: 0 25px 60px rgba(0,0,0,0.25);
    --radius: 16px;
    --radius-sm: 8px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Outfit', sans-serif;
    background: var(--dark);
    color: var(--light);
    line-height: 1.7;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}
a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15,15,26,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo img {
    width: 85px;
    height: 85px;
    border-radius: 10px;
}
.logo span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
nav {
    display: flex;
    align-items: center;
    gap: 30px;
}
nav a {
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    position: relative;
    padding: 5px 0;
}
nav a:hover {
    color: var(--primary);
}
nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}
nav a:hover::after {
    width: 100%;
}
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}
.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--light);
    border-radius: 3px;
    transition: all 0.3s ease;
}
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    background: var(--gradient-dark);
    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="50" cy="50" r="1" fill="%23ff6b35" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    animation: float 20s linear infinite;
}
@keyframes float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50px); }
}
.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #fff 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-text p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 35px;
    max-width: 500px;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}
.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 10px 30px rgba(255,107,53,0.3);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,107,53,0.4);
}
.btn-secondary {
    background: transparent;
    color: var(--light);
    border: 2px solid rgba(255,255,255,0.2);
}
.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.hero-image {
    position: relative;
}
.hero-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    z-index: -1;
}
section {
    padding: 100px 0;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.section-header p {
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin: 0 auto;
}
.slots-grid {
    display: grid;
    gap: 30px;
}
.slot-card {
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius);
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 150px 1fr auto;
    gap: 30px;
    align-items: center;
}
.slot-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,107,53,0.3);
    box-shadow: var(--shadow);
}
.slot-image {
    width: 150px;
    height: 150px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.slot-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slot-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.slot-info p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 15px;
    font-size: 0.95rem;
}
.slot-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.feature-tag {
    background: rgba(255,107,53,0.1);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}
.slot-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.slot-actions .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
}
.content-section {
    background: rgba(255,255,255,0.02);
}
.content-block {
    max-width: 900px;
    margin: 0 auto;
}
.content-block h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary);
}
.content-block h3 {
    font-size: 1.5rem;
    margin: 40px 0 20px;
}
.content-block p {
    margin-bottom: 20px;
    color: rgba(255,255,255,0.8);
}
.content-block ul, .content-block ol {
    margin: 20px 0;
    padding-left: 25px;
}
.content-block li {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.8);
}
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: rgba(255,255,255,0.02);
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.data-table th, .data-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.data-table th {
    background: rgba(255,107,53,0.1);
    color: var(--primary);
    font-weight: 600;
}
.data-table tr:hover {
    background: rgba(255,255,255,0.02);
}
.info-card {
    background: rgba(255,107,53,0.05);
    border-left: 4px solid var(--primary);
    padding: 25px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 30px 0;
}
.chart-container {
    background: rgba(255,255,255,0.02);
    padding: 30px;
    border-radius: var(--radius);
    margin: 30px 0;
}
.bar-chart {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.bar-item {
    display: grid;
    grid-template-columns: 120px 1fr 60px;
    align-items: center;
    gap: 15px;
}
.bar-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}
.bar-track {
    height: 24px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    overflow: hidden;
}
.bar-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 12px;
    transition: width 0.5s ease;
}
.bar-value {
    font-weight: 600;
    color: var(--primary);
}
.related-articles {
    background: rgba(255,255,255,0.02);
    padding: 40px;
    border-radius: var(--radius);
    margin: 50px 0;
}
.related-articles h3 {
    margin-bottom: 25px;
    font-size: 1.3rem;
}
.related-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.related-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-sm);
    color: rgba(255,255,255,0.8);
    transition: all 0.3s ease;
}
.related-list a:hover {
    background: rgba(255,107,53,0.1);
    color: var(--primary);
}
.related-list a::before {
    content: '→';
    color: var(--primary);
}
.author-box {
    display: flex;
    gap: 25px;
    align-items: center;
    padding: 30px;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius);
    margin: 50px 0;
    border: 1px solid rgba(255,255,255,0.05);
}
.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}
.author-info p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    margin-bottom: 10px;
}
.author-info a {
    color: var(--primary);
    font-weight: 500;
}
.author-info a:hover {
    text-decoration: underline;
}
footer {
    background: var(--secondary);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}
.footer-brand p {
    color: rgba(255,255,255,0.6);
    margin: 20px 0;
    font-size: 0.95rem;
}
.footer-nav h4, .footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--primary);
}
.footer-nav ul {
    list-style: none;
}
.footer-nav li {
    margin-bottom: 12px;
}
.footer-nav a {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}
.footer-nav a:hover {
    color: var(--primary);
}
.footer-contact p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    margin-bottom: 10px;
}
.responsible-gaming {
    background: rgba(255,107,53,0.05);
    padding: 25px;
    border-radius: var(--radius-sm);
    margin-bottom: 40px;
    border: 1px solid rgba(255,107,53,0.2);
}
.responsible-gaming h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1rem;
}
.responsible-gaming p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}
.age-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,107,53,0.1);
    padding: 8px 16px;
    border-radius: 20px;
    color: var(--primary);
    font-weight: 600;
}
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    z-index: 999;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    transform: translateY(-5px);
}
.back-to-top svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}
.page-hero {
    padding: 150px 0 80px;
    background: var(--gradient-dark);
    text-align: center;
}
.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}
.page-hero p {
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary);
}
.about-text p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
}
.contact-form {
    background: rgba(255,255,255,0.03);
    padding: 40px;
    border-radius: var(--radius);
}
.contact-form h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    color: var(--light);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}
.form-group textarea {
    min-height: 150px;
    resize: vertical;
}
.author-page {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}
.author-sidebar {
    text-align: center;
}
.author-sidebar img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 25px;
    border: 4px solid var(--primary);
}
.author-sidebar h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.author-sidebar .title {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 20px;
}
.author-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
}
.stat-item {
    background: rgba(255,255,255,0.03);
    padding: 15px;
    border-radius: var(--radius-sm);
}
.stat-item span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}
.stat-item small {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}
.author-main h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}
.author-main p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
}
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}
.error-content h1 {
    font-size: 8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.error-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.error-content p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 30px;
}
.content-image {
    margin: 30px 0;
    border-radius: var(--radius);
    overflow: hidden;
}
.content-image img {
    width: 100%;
}
.content-image figcaption {
    padding: 15px;
    background: rgba(255,255,255,0.03);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    text-align: center;
}
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 2.8rem;
    }
    .hero-text p {
        max-width: 100%;
    }
    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }
    .slot-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .slot-image {
        margin: 0 auto;
    }
    .slot-actions {
        flex-direction: row;
        justify-content: center;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-content {
        grid-template-columns: 1fr;
    }
    .author-page {
        grid-template-columns: 1fr;
    }
    .author-sidebar {
        max-width: 400px;
        margin: 0 auto;
    }
}
@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        background: var(--secondary);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.3s ease;
    }
    nav.active {
        transform: translateY(0);
        opacity: 1;
    }
    .mobile-toggle {
        display: flex;
    }
    .hero-text h1 {
        font-size: 2.2rem;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .page-hero h1 {
        font-size: 2.2rem;
    }
    .related-list {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
    .author-box {
        flex-direction: column;
        text-align: center;
    }
    .data-table {
        display: block;
        overflow-x: auto;
    }
    .bar-item {
        grid-template-columns: 80px 1fr 50px;
    }
    .bar-label {
        font-size: 0.8rem;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    .hero {
        padding: 100px 0 60px;
    }
    .hero-text h1 {
        font-size: 1.8rem;
    }
    section {
        padding: 60px 0;
    }
    .btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
    .slot-card {
        padding: 20px;
    }
    .slot-image {
        width: 120px;
        height: 120px;
    }
    .error-content h1 {
        font-size: 5rem;
    }
}
@media (min-width: 300px) and (max-width: 359px) {
    .hero-text h1 {
        font-size: 1.5rem;
    }
    .logo span {
        font-size: 1.2rem;
    }
    .btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
}
