
/* =========================================
   1. CSS Reset & Variables
   ========================================= */
:root {
    /* Color Palette - Dark Gaming Theme */
    --bg-body: #0f111a;
    --bg-card: #1a1d29;
    --bg-header: rgba(26, 29, 41, 0.95);
    
    --primary: #ff4757; /* Bright Red */
    --primary-hover: #ff6b81;
    --accent: #ffd32a; /* Gold/Yellow */
    
    --text-main: #f1f2f6;
    --text-secondary: #a4b0be;
    --text-muted: #57606f;
    
    --border-color: rgba(255, 255, 255, 0.1);
    
    /* Typography */
    --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-size-base: 16px;
    
    /* Spacing & Sizes */
    --container-width: 1200px;
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 2rem;
    --header-height: 80px;
    
    /* Effects */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 20px rgba(255, 71, 87, 0.4);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
}

ul {
    list-style: none;
}

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

/* =========================================
   2. Layout & Container
   ========================================= */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-content {
    margin-top: 2rem;
    flex: 1;
}

/* =========================================
   3. Header Styling
   ========================================= */
.site-header {
    background-color: var(--bg-header);
    backdrop-filter: blur(10px);
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.site-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.site-branding {
    display: flex;
    align-items: center;
}

/* Logotype Placeholder Styling */
.site-logotype {
    width: 150px;
    height: 40px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
}

.site-logotype::after {
    content: 'AZINO 777';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* Header Search Form */
.mob-search .search-form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 0.25rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.mob-search .search-form:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(255, 71, 87, 0.2);
}

.search-form__text {
    background: transparent;
    border: none;
    color: var(--text-main);
    padding: 0.5rem 1rem;
    outline: none;
    width: 200px;
}

.search-form__submit {
    background: var(--primary);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.search-form__submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border: 2px solid white;
    border-radius: 50%;
}

.search-form__submit::after {
    content: '';
    position: absolute;
    top: 60%;
    left: 60%;
    width: 6px;
    height: 2px;
    background: white;
    transform: rotate(45deg);
}

.search-form__submit:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
}

/* Hamburger Menu */
.mob-hamburger {
    display: none; /* Hidden on desktop by default as per modern patterns, visible on mobile */
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.mob-hamburger span, 
.mob-hamburger span::before, 
.mob-hamburger span::after {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    position: absolute;
    transition: var(--transition);
}

.mob-hamburger span { top: 50%; transform: translateY(-50%); }
.mob-hamburger span::before { content: ''; top: -8px; }
.mob-hamburger span::after { content: ''; bottom: -8px; }

/* =========================================
   4. Main Content Styling
   ========================================= */
.content-area {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-main);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.entry-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    background: linear-gradient(45deg, #fff, var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
}

h3.wp-block-heading {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--accent);
    border-left: 4px solid var(--primary);
    padding-left: 1rem;
    margin-top: 3rem;
}

/* Paragraphs */
p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Images */
figure.wp-block-image {
    margin: 2rem 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    position: relative;
}

figure.wp-block-image img {
    width: 100%;
    transition: transform 0.5s ease;
}

figure.wp-block-image:hover img {
    transform: scale(1.05);
}

/* Lists */
.wp-block-list {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.wp-block-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
}

.wp-block-list li::before {
    content: '➤';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.9rem;
}

/* =========================================
   5. Interactive Elements (Buttons)
   ========================================= */
.wp-block-buttons {
    display: flex;
    justify-content: center;
    margin: 2.5rem 0;
}

.btn-box {
    position: relative;
    z-index: 1;
}

.btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--primary) 0%, #ff6b81 100%);
    color: white !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(255, 71, 87, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 71, 87, 0.5);
}

.btn:hover::before {
    left: 100%;
}

.btn:active {
    transform: translateY(-1px);
}

/* Separators */
.page-separator, .header-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    margin: 2rem 0;
}

/* =========================================
   6. Comments Section
   ========================================= */
.comments-area {
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.comments-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.comments-title::before {
    content: '';
    display: block;
    width: 5px;
    height: 24px;
    background: var(--accent);
    border-radius: 2px;
}

.comment-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comment-box {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.comment-box:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

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

.comment-avatar img {
    border-radius: 50%;
    border: 2px solid var(--primary);
    padding: 2px;
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.comment-meta {
    display: flex;
    flex-direction: column;
}

.comment-author {
    font-weight: 700;
    color: var(--text-main);
    font-style: normal;
}

.comment-time {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.comment-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.comment-footer {
    margin-top: 1rem;
    display: flex;
    justify-content: flex-end;
}

.comment-reply-link {
    font-size: 0.85rem;
    color: var(--accent);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    border-bottom: 1px dashed transparent;
}

.comment-reply-link:hover {
    border-bottom-color: var(--accent);
}

/* =========================================
   7. Accessibility (Screen Reader)
   ========================================= */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* =========================================
   8. Responsive Design
   ========================================= */

/* Tablet & Mobile */
@media (max-width: 992px) {
    :root {
        --header-height: 70px;
    }
}

@media (max-width: 768px) {
    .site-header-inner {
        padding: 0 1rem;
    }

    .mob-hamburger {
        display: block;
        order: 3;
    }

    .mob-search {
        display: none; /* Hide standard search on mobile or move to menu */
    }
    
    .content-area {
        padding: 1.5rem 1rem;
    }

    .entry-title {
        font-size: 1.8rem;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }

    .wp-block-buttons {
        width: 100%;
        display: block;
    }
    
    .btn-box {
        width: 100%;
    }
    
    .comment-header {
        flex-wrap: wrap;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .site-logotype {
        width: 120px;
    }
    
    h3.wp-block-heading {
        font-size: 1.3rem;
    }
}
