/* ═══════════════════════════════════════════════════════════════════════════
   AUNZPOKIES.COM - AU/NZ Casino Comparison Theme
   Unique Design: Australian Gold & Kiwi Black
   Version: 1.0.0 | Build: 2024
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
    /* Australian Colors */
    --au-gold: #FFD700;
    --au-green: #00843D;
    --au-dark: #012169;
    
    /* New Zealand Colors */
    --nz-black: #000000;
    --nz-red: #CC0000;
    --nz-silver: #C0C0C0;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --light-grey: #F5F5F5;
    --mid-grey: #CCCCCC;
    --dark-grey: #333333;
    --text-dark: #1A1A1A;
    
    /* Accent Colors */
    --success: #28A745;
    --warning: #FFC107;
    --danger: #DC3545;
    --info: #17A2B8;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESET & BASE STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--light-grey);
}

/* ═══════════════════════════════════════════════════════════════════════════
   HEADER & NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════ */

.header {
    background: linear-gradient(135deg, var(--au-dark) 0%, var(--nz-black) 100%);
    color: var(--white);
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--au-gold);
    display: flex;
    align-items: center;
    gap: 10px;
}

.flag-indicator {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
}

.flag-indicator.au {
    border-left: 4px solid var(--au-gold);
    border-right: 4px solid var(--au-green);
}

.flag-indicator.nz {
    border-left: 4px solid var(--nz-red);
    border-right: 4px solid var(--nz-silver);
}

.nav-menu {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--au-gold);
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.hero {
    background: linear-gradient(135deg, var(--au-green) 0%, var(--au-dark) 100%);
    color: var(--white);
    padding: 3rem 20px;
    text-align: center;
}

.hero.nz-theme {
    background: linear-gradient(135deg, var(--nz-black) 0%, var(--nz-red) 100%);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MAIN CONTAINER
   ═══════════════════════════════════════════════════════════════════════════ */

.container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 20px;
}

.content-section {
    background: var(--white);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* ═══════════════════════════════════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════════════════ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--dark-grey);
}

h1 { font-size: 2.5rem; color: var(--au-dark); }
h2 { font-size: 2rem; color: var(--au-dark); border-bottom: 3px solid var(--au-gold); padding-bottom: 0.5rem; }
h3 { font-size: 1.5rem; color: var(--au-green); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

a {
    cursor: pointer;
    color: var(--au-dark);
    text-decoration: underline;
    transition: color 0.3s;
}

a:hover {
    color: var(--au-gold);
}

/* ═══════════════════════════════════════════════════════════════════════════
   CASINO COMPARISON TABLE
   ═══════════════════════════════════════════════════════════════════════════ */

.casino-comparison {
    margin: 2rem 0;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--au-dark) 0%, var(--au-green) 100%);
    color: var(--white);
}

.comparison-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--mid-grey);
}

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

.casino-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--au-dark);
}

.bonus-highlight {
    background: linear-gradient(135deg, var(--au-gold) 0%, var(--warning) 100%);
    color: var(--dark-grey);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
}

.cta-button {
    cursor: pointer;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--success);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s;
    border: 2px solid var(--success);
}

.cta-button:hover {
    background: var(--white);
    color: var(--success);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.info-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--au-dark);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s;
    margin-left: 0.5rem;
}

.info-button:hover {
    background: var(--au-green);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SOCIAL SHARING
   ═══════════════════════════════════════════════════════════════════════════ */

.social-share {
    background: var(--light-grey);
    padding: 1rem;
    border-radius: 4px;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-share-label {
    font-weight: 600;
    color: var(--dark-grey);
}

.social-buttons {
    display: flex;
    gap: 10px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s;
}

.social-btn.facebook { background: #3B5998; }
.social-btn.twitter { background: #1DA1F2; }
.social-btn.linkedin { background: #0077B5; }
.social-btn.whatsapp { background: #25D366; }
.social-btn.reddit { background: #FF4500; }

.social-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* ═══════════════════════════════════════════════════════════════════════════
   CARDS & GRID LAYOUTS
   ═══════════════════════════════════════════════════════════════════════════ */

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.card {
    background: var(--white);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.card-title {
    font-size: 1.3rem;
    color: var(--au-dark);
    margin-bottom: 0.5rem;
}

.card-content {
    color: var(--dark-grey);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════════
   LISTS & CONTENT ELEMENTS
   ═══════════════════════════════════════════════════════════════════════════ */

ul, ol {
    margin: 1rem 0 1rem 2rem;
}

li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(0, 132, 61, 0.1) 100%);
    border-left: 4px solid var(--au-gold);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.info-box {
    background: rgba(23, 162, 184, 0.1);
    border-left: 4px solid var(--info);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.warning-box {
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid var(--warning);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */

.footer {
    background: linear-gradient(135deg, var(--dark-grey) 0%, var(--au-dark) 100%);
    color: var(--white);
    padding: 2rem 20px;
    margin-top: 4rem;
}

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

.footer-links {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--au-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

.copyright {
    margin-top: 1rem;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
    }
    
    .social-share {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════════════════════════════ */

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

.au-theme { border-left: 4px solid var(--au-gold); }
.nz-theme { border-left: 4px solid var(--nz-red); }

/* ═══════════════════════════════════════════════════════════════════════════
   END OF STYLESHEET
   ═══════════════════════════════════════════════════════════════════════════ */
