/*
Theme Name: TotoVIP Luxury
Theme URI: https://totovipgame.pro
Author: Seondelondel
Author URI: https://totovipgame.pro
Description: Premium luxury casino theme dengan warna merah gelap dan emas gelap
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: totovip-luxury
*/

/* ============================================
   COLOR PALETTE
   ============================================
   Primary Red: #6B0000 (Dark Red)
   Secondary Red: #8B0000 (Crimson Dark)
   Accent Red: #A52A2A (Brown Red)
   Primary Gold: #B8860B (Dark Goldenrod)
   Secondary Gold: #C9A961 (Muted Gold)
   Accent Gold: #D4AF37 (Deep Gold)
   Background: #0d0000 (Almost Black Red)
   Text Gold: #E5C579 (Light Gold)
   ============================================ */

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

body {
    font-family: 'Roboto', 'Arial Black', 'Helvetica', sans-serif;
    background: linear-gradient(135deg, #0d0000 0%, #1a0000 100%);
    color: #E5C579;
    line-height: 1.6;
    font-weight: 500;
}

/* ============================================
   HEADER STYLES
   ============================================ */

.site-header {
    background: linear-gradient(to bottom, #1a0000, #6B0000);
    border-bottom: 3px solid #B8860B;
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: linear-gradient(to right, #6B0000, #8B0000, #6B0000);
    border-bottom: 2px solid #C9A961;
    padding: 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

/* Logo Section */
.logo-section {
    background: linear-gradient(135deg, #8B0000 0%, #6B0000 100%);
    padding: 20px 40px;
    border-right: 2px solid #B8860B;
    min-width: 200px;
    text-align: center;
}

.site-logo {
    font-size: 32px;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.5);
    letter-spacing: 3px;
    text-decoration: none;
    font-family: 'Impact', 'Arial Black', sans-serif;
    text-transform: uppercase;
}

/* Main Navigation */
.main-navigation {
    flex: 1;
    display: flex;
    align-items: center;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    width: 100%;
}

.main-navigation li {
    flex: 1;
    position: relative;
    display: flex;
    align-items: stretch;
}

.main-navigation a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 20px;
    color: #FFD700;
    text-decoration: none;
    text-align: center;
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-right: 1px solid #B8860B;
    background: linear-gradient(to bottom, #8B0000, #6B0000);
    transition: all 0.3s ease;
    font-family: 'Arial Black', 'Impact', sans-serif;
    height: 100%;
    min-height: 70px;
}

.main-navigation a:hover {
    background: linear-gradient(to bottom, #A52A2A, #8B0000);
    color: #FFFFFF;
    box-shadow: inset 0 0 15px rgba(184, 134, 11, 0.5);
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    border-left: 2px solid #B8860B;
}

.auth-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 60px;
    min-width: 200px;
    font-weight: 900;
    font-size: 22px;
    letter-spacing: 3px;
    color: #B8860B;
    height: 100%;
    min-height: 85px;
}

.auth-buttons .btn-login {
    background: linear-gradient(135deg, #B8860B 0%, #1a1a1a 30%, #0d0d0d 50%, #1a1a1a 70%, #B8860B 100%);
    border-right: 1px solid #B8860B;
    position: relative;
    overflow: hidden;
}

.auth-buttons .btn-login::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(184, 134, 11, 0.4), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

.auth-buttons .btn-register {
    background: linear-gradient(135deg, #B8860B 0%, #1a1a1a 30%, #0d0d0d 50%, #1a1a1a 70%, #B8860B 100%);
    position: relative;
    overflow: hidden;
}

.auth-buttons .btn-register::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(184, 134, 11, 0.4), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite 1.5s;
}

@keyframes shimmer {
    0% {
        transform: rotate(45deg) translate(-100%, -100%);
    }
    100% {
        transform: rotate(45deg) translate(100%, 100%);
    }
}

.auth-buttons a:hover {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 50%, #D4AF37 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.8), 0 0 25px rgba(212, 175, 55, 0.6);
    color: #8B6914;
}

/* ============================================
   BANNER SECTION
   ============================================ */

.site-banner {
    background: linear-gradient(to right, #DAA520, #FFD700, #DAA520);
    padding: 15px 0;
    text-align: center;
    border-bottom: 3px solid #B8860B;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.4);
}

.banner-text {
    font-size: 22px;
    font-weight: 900;
    color: #1a0000;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5), 0 0 10px rgba(255, 215, 0, 0.3);
    font-family: 'Impact', 'Arial Black', sans-serif;
}

/* ============================================
   GAME MENU SECTION
   ============================================ */

.game-menu {
    background: linear-gradient(to bottom, #6B0000, #4B0000);
    border-bottom: 3px solid #B8860B;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.game-menu-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.game-menu-item {
    position: relative;
    overflow: hidden;
}

.game-menu-item a {
    display: block;
    padding: 25px 20px;
    text-align: center;
    text-decoration: none;
    font-weight: 900;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-right: 2px solid #B8860B;
    transition: all 0.4s ease;
    position: relative;
    font-family: 'Impact', 'Arial Black', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.game-menu-item:last-child a {
    border-right: none;
}

.game-menu-item a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    transition: left 0.5s ease;
}

.game-menu-item a:hover::before {
    left: 100%;
}

.game-menu-item:nth-child(1) a {
    background: linear-gradient(135deg, #6B0000, #4B0000);
    color: #FFD700;
}

.game-menu-item:nth-child(2) a {
    background: linear-gradient(135deg, #8B0000, #6B0000);
    color: #FFD700;
}

.game-menu-item:nth-child(3) a {
    background: linear-gradient(135deg, #6B0000, #4B0000);
    color: #FFD700;
}

.game-menu-item:nth-child(4) a {
    background: linear-gradient(135deg, #6B0000, #4B0000);
    color: #FFD700;
}

.game-menu-item:nth-child(5) a {
    background: linear-gradient(135deg, #6B0000, #4B0000);
    color: #FFD700;
}

.game-menu-item a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.5);
    color: #FFFFFF;
}

/* ============================================
   CATEGORY MENU SECTION
   ============================================ */

.category-menu {
    background: linear-gradient(to bottom, #4B0000, #3B0000);
    border-bottom: 2px solid #B8860B;
    padding: 0;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
}

.category-menu-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0;
}

.category-menu-item {
    position: relative;
    overflow: hidden;
}

.category-menu-item a {
    display: block;
    padding: 18px 15px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-right: 1px solid #B8860B;
    transition: all 0.3s ease;
    position: relative;
    background: linear-gradient(135deg, #5B0000, #4B0000);
    color: #E5C579;
    font-family: 'Arial Black', 'Impact', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.category-menu-item:last-child a {
    border-right: none;
}

.category-menu-item a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(229, 197, 121, 0.2), transparent);
    transition: left 0.4s ease;
}

.category-menu-item a:hover::before {
    left: 100%;
}

.category-menu-item a:hover {
    background: linear-gradient(135deg, #6B0000, #5B0000);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.4);
    color: #FFD700;
}

/* ============================================
   MAIN CONTENT
   ============================================ */

.site-content {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
}

.content-area {
    background: linear-gradient(135deg, #1a0000, #2a0000);
    border: 2px solid #B8860B;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.entry-title {
    color: #FFD700;
    font-size: 32px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    border-bottom: 3px solid #B8860B;
    padding-bottom: 15px;
}

.entry-content {
    color: #E5C579;
    font-size: 16px;
    line-height: 1.8;
}

/* ============================================
   ARTICLE TYPOGRAPHY & CONTENT HIERARCHY
   ============================================ */

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    color: #FFD700;
    font-weight: 900;
    line-height: 1.3;
    margin-top: 32px;
    margin-bottom: 16px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.entry-content h1 {
    font-size: 32px;
    border-bottom: 3px solid #B8860B;
    padding-bottom: 12px;
    margin-top: 0;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.entry-content h2 {
    font-size: 28px;
    border-bottom: 2px solid #C9A961;
    padding-bottom: 10px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.entry-content h3 {
    font-size: 24px;
    border-left: 4px solid #B8860B;
    padding-left: 16px;
    margin-bottom: 16px;
}

.entry-content h4 {
    font-size: 20px;
    color: #D4AF37;
    margin-bottom: 14px;
}

.entry-content h5 {
    font-size: 18px;
    color: #C9A961;
    margin-bottom: 12px;
}

.entry-content h6 {
    font-size: 16px;
    color: #E5C579;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.entry-content p {
    margin-bottom: 20px;
    color: #E5C579;
    font-size: 16px;
    line-height: 1.8;
}

.entry-content p:last-child {
    margin-bottom: 0;
}

.entry-content a {
    color: #FFD700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.entry-content a:hover {
    color: #FFFFFF;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.entry-content ul,
.entry-content ol {
    margin: 20px 0;
    padding-left: 40px;
    color: #E5C579;
}

.entry-content ul li,
.entry-content ol li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.entry-content ul li::marker {
    color: #B8860B;
    font-size: 1.2em;
}

.entry-content ol li::marker {
    color: #B8860B;
    font-weight: 700;
}

.entry-content ul ul,
.entry-content ul ol,
.entry-content ol ul,
.entry-content ol ol {
    margin: 8px 0;
    padding-left: 30px;
}

.entry-content blockquote {
    margin: 30px 0;
    padding: 20px 30px;
    border-left: 5px solid #B8860B;
    background: linear-gradient(135deg, rgba(107, 0, 0, 0.3), rgba(139, 0, 0, 0.2));
    border-radius: 5px;
    color: #FFD700;
    font-style: italic;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.entry-content blockquote p {
    margin-bottom: 10px;
}

.entry-content blockquote p:last-child {
    margin-bottom: 0;
}

.entry-content strong,
.entry-content b {
    color: #FFD700;
    font-weight: 700;
}

.entry-content em,
.entry-content i {
    color: #D4AF37;
    font-style: italic;
}

.entry-content code {
    background: rgba(107, 0, 0, 0.4);
    color: #FFD700;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.entry-content pre {
    background: rgba(13, 0, 0, 0.8);
    border: 2px solid #B8860B;
    border-radius: 5px;
    padding: 20px;
    overflow-x: auto;
    margin: 20px 0;
}

.entry-content pre code {
    background: none;
    padding: 0;
    color: #E5C579;
    font-size: 14px;
    line-height: 1.6;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: rgba(26, 0, 0, 0.5);
    border: 2px solid #B8860B;
    border-radius: 5px;
    overflow: hidden;
}

.entry-content table thead {
    background: linear-gradient(135deg, #6B0000, #8B0000);
}

.entry-content table th {
    padding: 15px;
    text-align: left;
    color: #FFD700;
    font-weight: 700;
    border-bottom: 2px solid #B8860B;
}

.entry-content table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(184, 134, 11, 0.3);
    color: #E5C579;
}

.entry-content table tr:last-child td {
    border-bottom: none;
}

.entry-content table tr:hover {
    background: rgba(107, 0, 0, 0.3);
}

.entry-content hr {
    margin: 30px 0;
    border: none;
    border-top: 2px solid #B8860B;
    opacity: 0.6;
}

/* Mobile Typography Adjustments */
@media (max-width: 768px) {
    .entry-content h1 {
        font-size: 26px;
    }
    
    .entry-content h2 {
        font-size: 22px;
    }
    
    .entry-content h3 {
        font-size: 20px;
    }
    
    .entry-content h4 {
        font-size: 18px;
    }
    
    .entry-content h5 {
        font-size: 16px;
    }
    
    .entry-content h6 {
        font-size: 14px;
    }
    
    .entry-content p {
        font-size: 15px;
    }
    
    .entry-content ul,
    .entry-content ol {
        padding-left: 25px;
    }
    
    .entry-content blockquote {
        padding: 15px 20px;
        margin: 20px 0;
    }
    
    .entry-content table {
        font-size: 14px;
    }
    
    .entry-content table th,
    .entry-content table td {
        padding: 10px;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: linear-gradient(to top, #0d0000, #1a0000);
    border-top: 3px solid #B8860B;
    padding: 40px 20px 20px;
    margin-top: 60px;
    box-shadow: 0 -4px 20px rgba(184, 134, 11, 0.3);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-info {
    color: #C9A961;
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-copyright {
    color: #B8860B;
    font-size: 13px;
    padding-top: 20px;
    border-top: 1px solid #B8860B;
}

/* ============================================
   BUTTONS & ELEMENTS
   ============================================ */

.btn-primary {
    background: linear-gradient(135deg, #B8860B, #DAA520);
    color: #1a0000;
    padding: 12px 30px;
    border: 2px solid #FFD700;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #DAA520, #FFD700);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(218, 165, 32, 0.5);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .header-container {
        flex-direction: column;
    }
    
    .logo-section {
        width: 100%;
        border-right: none;
        border-bottom: 2px solid #B8860B;
    }
    
    .main-navigation ul {
        flex-wrap: wrap;
    }
    
    .main-navigation li {
        flex: 0 0 50%;
    }
    
    .game-menu-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-menu-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-navigation li {
        flex: 0 0 100%;
    }
    
    .auth-buttons {
        width: 100%;
        border-left: none;
        border-top: 2px solid #B8860B;
    }
    
    .game-menu-container {
        grid-template-columns: 1fr;
    }
    
    .category-menu-container {
        grid-template-columns: 1fr;
    }
    
    .banner-text {
        font-size: 16px;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .site-content {
        padding: 0 15px;
        margin: 20px auto;
    }
    
    .content-area {
        padding: 20px 15px;
    }
    
    .logo-section {
        padding: 15px 20px;
    }
    
    .site-logo {
        font-size: 24px;
        letter-spacing: 2px;
    }
    
    .main-navigation a {
        padding: 20px 15px;
        font-size: 14px;
        letter-spacing: 1px;
        min-height: auto;
    }
    
    .auth-buttons a {
        padding: 20px 30px;
        font-size: 18px;
        letter-spacing: 2px;
        min-height: auto;
        min-width: auto;
        width: 50%;
    }
    
    .game-menu-item a {
        padding: 20px 15px;
        font-size: 15px;
        letter-spacing: 1.5px;
    }
    
    .category-menu-item a {
        padding: 15px 12px;
        font-size: 13px;
        letter-spacing: 1px;
    }
    
    .banner-text {
        font-size: 14px;
        letter-spacing: 0.5px;
        padding: 0 10px;
    }
    
    .entry-title {
        font-size: 24px;
        margin-bottom: 15px;
        padding-bottom: 12px;
    }
}
