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

:root {
    --primary-color: #ff0000;
    --secondary-color: #000000;
    --text-color: #ffffff;
    --accent-color: #ff3333;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--secondary-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Styling - Hanya untuk Logo */
header {
    padding: 20px 0;
    display: flex;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    text-align: center;
}

#logo-img {
    max-width: 180px;
    height: auto;
    width: 100%;
}

/* Banner Section - Terpisah dari Header */
.banner-section {
    width: 100%;
    padding: 25px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05), rgba(0, 0, 0, 0.1));
}

.banner-wrapper {
    position: relative;
    width: 95%;
    max-width: 900px;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    border-radius: 15px;
    box-shadow: 
        0 0 20px rgba(255, 0, 0, 0.7),
        0 10px 30px rgba(0, 0, 0, 0.3);
    animation: borderPulse 3s infinite, float 6s ease-in-out infinite;
    margin: 0 auto;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    animation: zoomEffect 15s infinite alternate;
}

/* Hapus CSS banner-container yang lama */
.banner-container {
    display: none; /* Sembunyikan jika masih ada */
}

.banner-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 0, 0, 0) 0%,
        rgba(255, 0, 0, 0.3) 50%,
        rgba(255, 0, 0, 0) 100%
    );
    animation: shine 3s infinite;
    z-index: 1;
}

@keyframes borderPulse {
    0% {
        box-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 0, 0, 0.9), 0 0 40px rgba(255, 0, 0, 0.5);
    }
    100% {
        box-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

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

@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Main Content Spacing */
main {
    padding: 30px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero {
    text-align: center;
    padding: 40px 0;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
}

.highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 10px;
}

.hero h2 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 15px;
    color: var(--primary-color);
}

#cta-button {
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    padding: clamp(12px, 3vw, 15px) clamp(25px, 6vw, 40px);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    width: auto;
    max-width: 90%;
}

#cta-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}

#cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(255, 0, 0, 0.3);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

/* Content Sections - Pastikan berada di bawah hero */
.content-section {
    padding: clamp(30px, 5vw, 50px) 0;
    text-align: center;
    width: 100%;
    margin-top: 0;
}

.content-section h2 {
    color: var(--primary-color);
    margin-bottom: clamp(25px, 4vw, 35px);
    font-size: clamp(1.5rem, 4vw, 2rem);
}

.features {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 4vw, 30px);
    margin-top: clamp(25px, 4vw, 35px);
    padding: 0 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature {
    background: rgba(255, 0, 0, 0.1);
    padding: clamp(25px, 4vw, 35px);
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    width: 100%;
    text-align: center;
}

.feature h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: clamp(1.1rem, 3vw, 1.3rem);
}

.feature p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.6;
    margin: 0;
}

.slot-list {
    padding: clamp(30px, 5vw, 50px) 0;
    text-align: center;
    width: 100%;
    margin-top: 0;
}

.slot-list h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: clamp(1.5rem, 4vw, 2rem);
}

.slot-list ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.slot-list li {
    background: rgba(255, 0, 0, 0.1);
    padding: clamp(15px, 3vw, 18px);
    border-radius: 5px;
    border-left: 4px solid var(--primary-color);
    font-size: clamp(0.9rem, 2vw, 1rem);
    text-align: left;
    width: 100%;
}

/* Media Queries untuk Layout Vertikal */

/* Mobile Optimization untuk Banner */
@media (max-width: 768px) {
    .banner-section {
        padding: 20px 0;
    }
    
    .banner-wrapper {
        width: 98%;
        border-radius: 12px;
    }
    
    header {
        padding: 15px 0;
    }
    
    .hero {
        padding: 30px 15px;
        margin-bottom: 25px;
    }
    
    main {
        padding: 15px 0;
    }
    
    .content-section {
        padding: 25px 0;
    }
    
    .features {
        gap: 18px;
        padding: 0 10px;
    }
    
    .feature {
        padding: 20px;
    }
    
    .slot-list {
        padding: 25px 0;
    }
}

/* Mobile Landscape */
@media (max-width: 640px) {
    main {
        padding: 10px 0;
    }
    
    .hero {
        padding: 20px 0;
        margin-bottom: 10px;
    }
    
    .content-section {
        padding: 20px 0;
    }
    
    .features {
        gap: 15px;
        padding: 0 8px;
    }
    
    .feature {
        padding: 18px;
    }
    
    .slot-list {
        padding: 20px 0;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .banner-section {
        padding: 15px 0;
    }
    
    .banner-wrapper {
        width: 99%;
        border-radius: 10px;
        border-width: 2px;
    }
    
    header {
        padding: 12px 0;
    }
    
    .hero {
        padding: 25px 10px;
        margin-bottom: 20px;
    }
    
    #logo-img {
        max-width: 150px;
    }
    
    main {
        padding: 8px 0;
    }
    
    .content-section {
        padding: 18px 0;
    }
    
    .features {
        gap: 12px;
        padding: 0 5px;
    }
    
    .feature {
        padding: 15px;
    }
    
    .feature h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .feature p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .slot-list {
        padding: 18px 0;
    }
    
    .slot-list ul {
        padding: 0 10px;
        gap: 10px;
    }
    
    .slot-list li {
        padding: 12px;
        font-size: 0.9rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    main {
        padding: 5px 0;
    }
    
    .hero {
        padding: 12px 0;
        margin-bottom: 5px;
    }
    
    .content-section {
        padding: 15px 0;
    }
    
    .content-section h2 {
        font-size: 1.3rem;
        margin-bottom: 18px;
    }
    
    .features {
        gap: 10px;
        padding: 0 3px;
    }
    
    .feature {
        padding: 12px;
    }
    
    .feature h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .feature p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .slot-list {
        padding: 15px 0;
    }
    
    .slot-list h2 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .slot-list ul {
        padding: 0 5px;
        gap: 8px;
    }
    
    .slot-list li {
        padding: 10px;
        font-size: 0.85rem;
    }
}

footer {
    text-align: center;
    padding: 15px 0;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    opacity: 0.7;
}

/* Landscape Orientation untuk Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    header {
        padding: 5px 0;
    }
    
    #logo-img {
        max-width: 80px;
    }
    
    .banner-section {
        padding: 5px 0;
    }
    
    .banner-wrapper {
        max-width: 400px;
    }
    
    .hero {
        padding: 8px 0;
    }
    
    h1 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .hero h2 {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .hero p {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    #cta-button {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .content-section {
        padding: 10px 0;
    }
    
    .features {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 10px;
    }
    
    .feature {
        padding: 10px;
    }
    
    footer {
        padding: 5px 0;
    }
}

/* Optimasi untuk Touch Devices */
@media (hover: none) and (pointer: coarse) {
    #cta-button {
        /* Pastikan button cukup besar untuk touch */
        min-height: 44px;
        min-width: 44px;
    }
    
    .feature {
        /* Tambah padding untuk touch target */
        padding: 18px;
    }
    
    /* Matikan hover effects untuk touch devices */
    #cta-button:hover {
        transform: none;
        background-color: var(--primary-color);
    }
    
    .banner-wrapper:hover {
        transform: none;
    }
}

/* Dark Mode Support untuk Mobile */
@media (prefers-color-scheme: dark) {
    .feature {
        background: rgba(255, 0, 0, 0.15);
    }
    
    .slot-list li {
        background: rgba(255, 0, 0, 0.15);
    }
}

/* Reduced Motion untuk Accessibility */
@media (prefers-reduced-motion: reduce) {
    .banner-wrapper {
        animation: none;
    }
    
    .banner-image {
        animation: none;
    }
    
    #cta-button {
        animation: none;
    }
    
    .banner-wrapper::before {
        animation: none;
    }
}

/* Tambahan optimasi mobile untuk slot gacor */
.slot-recommendations {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 20px 0;
}

.slot-item {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.slot-item h4 {
    color: #ffd700;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.faq-section {
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.faq-item {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 215, 0, 0.1);
    border-left: 4px solid #ffd700;
    border-radius: 8px;
}

.faq-item h3 {
    color: #ffd700;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .slot-item {
        padding: 15px;
    }
    
    .faq-item {
        padding: 15px;
    }
    
    .slot-item h4 {
        font-size: 1.1em;
    }
}

/* SEO Hari Ke-2: Implementasi Lanjutan untuk Ranking #1 Google

## 📊 **Progress Hari Ke-2**

Berdasarki strategi yang telah diberikan sebelumnya, berikut adalah update implementasi untuk hari ke-2:

## 🎯 **Fokus Hari Ke-2: Technical SEO & Content Enhancement**

### 1. **Optimasi Page Speed & Core Web Vitals**

**Update untuk styles.css - Optimasi Performance:**
```css
/* Internal Links Styling */
.internal-links {
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(255, 51, 51, 0.05));
    border-radius: 20px;
    border: 2px solid rgba(255, 0, 0, 0.3);
}

.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.link-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.link-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.2);
}

.link-item h3 {
    margin-bottom: 15px;
}

.link-item h3 a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 600;
}

.link-item h3 a:hover {
    text-decoration: underline;
}

.link-item p a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
}

.link-item p a:hover {
    text-decoration: underline;
    color: #ffed4e;
}

/* Breadcrumb Navigation */
.breadcrumb {
    margin: 20px 0;
    padding: 15px 0;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0;
    margin: 0;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: '›';
    margin: 0 10px;
    color: var(--primary-color);
    font-weight: bold;
}

.breadcrumb a {
    color: #ffd700;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    background: rgba(255, 0, 0, 0.1);
    text-decoration: underline;
}

.breadcrumb li:last-child {
    color: var(--text-color);
    font-weight: 500;
}

/* Detailed Guide Styling */
.detailed-guide {
    margin: 40px 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.detailed-guide h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 2rem;
    text-align: center;
}

.detailed-guide h3 {
    color: #ffd700;
    margin: 30px 0 20px 0;
    font-size: 1.5rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 10px;
}

.detailed-guide h4 {
    color: var(--primary-color);
    margin: 20px 0 15px 0;
    font-size: 1.2rem;
}

.detailed-guide p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.detailed-guide a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px dotted #ffd700;
}

.detailed-guide a:hover {
    color: #ffed4e;
    text-decoration: underline;
    border-bottom: 1px solid #ffed4e;
}

.detailed-guide ol {
    padding-left: 20px;
    margin: 20px 0;
}

.detailed-guide ol li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Slot Detailed List */
.slot-detailed-list {
    display: grid;
    gap: 25px;
    margin: 25px 0;
}

.slot-detail {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.slot-detail h4 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.slot-detail p:first-of-type {
    background: rgba(255, 0, 0, 0.1);
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Provider List */
.provider-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.provider-item {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
}

.provider-item h4 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.3em;
}

/* Mobile Optimization untuk New Sections */
@media (max-width: 768px) {
    .link-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .link-item {
        padding: 20px;
    }
    
    .detailed-guide {
        padding: 25px;
    }
    
    .detailed-guide h2 {
        font-size: 1.5rem;
    }
    
    .detailed-guide h3 {
        font-size: 1.3rem;
    }
    
    .slot-detail {
        padding: 20px;
    }
    
    .provider-list {
        grid-template-columns: 1fr;
    }
    
    .breadcrumb {
        padding: 10px 0;
    }
    
    .breadcrumb li:not(:last-child)::after {
        margin: 0 5px;
    }
}

@media (max-width: 480px) {
    .link-item {
        padding: 15px;
    }
    
    .detailed-guide {
        padding: 20px;
    }
    
    .slot-detail {
        padding: 15px;
    }
    
    .provider-item {
        padding: 20px;
    }
}

/* =================================
   PERBAIKAN MOBILE & GALLERY DESIGN
   ================================= */

/* Gallery Grid Styling */
.slot-gallery {
    margin: 30px 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.slot-gallery h2 {
    text-align: center;
    color: #ffd700;
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.gallery-item {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.gallery-item h3 {
    color: #ffd700;
    margin: 15px 0 10px 0;
    font-size: 1.2rem;
}

.gallery-item p {
    color: #ffffff;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Trending Slots Styling */
.trending-slots {
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 20px;
    border: 2px solid rgba(255, 0, 0, 0.3);
}

.trending-slots h2 {
    text-align: center;
    color: #ffd700;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.trending-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.trending-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #ffd700;
}

.trending-item h3 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.trending-item ul {
    list-style: none;
    padding: 0;
}

.trending-item li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Local SEO Styling */
.local-seo {
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.local-seo h2 {
    text-align: center;
    color: #ffd700;
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.trust-factors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.trust-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.trust-item h4 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Voice Search Content */
.voice-search-content {
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.voice-search-content h2 {
    color: #ffd700;
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.voice-answers p {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.05);
    border-left: 3px solid #ffd700;
    border-radius: 8px;
}

.voice-answers strong {
    color: #ffd700;
    display: block;
    margin-bottom: 8px;
}

/* Mobile Optimization - Tablet */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .gallery-item {
        padding: 15px;
    }
    
    .gallery-item img {
        height: 150px;
    }
    
    .trending-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .trending-item {
        padding: 20px;
    }
    
    .trust-factors {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .trust-item {
        padding: 20px;
    }
    
    .slot-gallery h2,
    .trending-slots h2,
    .local-seo h2,
    .voice-search-content h2 {
        font-size: 1.5rem;
    }
    
    .slot-gallery,
    .trending-slots,
    .local-seo,
    .voice-search-content {
        padding: 20px;
        margin: 30px 0;
    }
}

/* Mobile Optimization - Phone */
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item {
        padding: 12px;
    }
    
    .gallery-item img {
        height: 120px;
    }
    
    .trending-item {
        padding: 15px;
    }
    
    .trust-item {
        padding: 15px;
    }
    
    .slot-gallery,
    .trending-slots,
    .local-seo,
    .voice-search-content {
        margin: 20px 0;
        padding: 15px;
    }
    
    .slot-gallery h2,
    .trending-slots h2,
    .local-seo h2,
    .voice-search-content h2 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .gallery-item h3 {
        font-size: 1.1rem;
    }
    
    .trending-item h3 {
        font-size: 1.2rem;
    }
    
    .trust-item h4 {
        font-size: 1.1rem;
    }
    
    .voice-answers p {
        padding: 12px;
        font-size: 0.9rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .gallery-item,
    .trending-item,
    .trust-item {
        padding: 10px;
    }
    
    .slot-gallery,
    .trending-slots,
    .local-seo,
    .voice-search-content {
        padding: 12px;
        margin: 15px 0;
    }
    
    .gallery-item img {
        height: 100px;
    }
    
    .slot-gallery h2,
    .trending-slots h2,
    .local-seo h2,
    .voice-search-content h2 {
        font-size: 1.2rem;
    }
}

/* Landscape Orientation Fix */
@media (max-height: 500px) and (orientation: landscape) {
    .slot-gallery,
    .trending-slots,
    .local-seo,
    .voice-search-content {
        margin: 15px 0;
        padding: 15px;
    }
    
    .gallery-item img {
        height: 80px;
    }
    
    .banner-section {
        padding: 3px 0;
    }
    
    .banner-wrapper {
        max-width: 350px;
        border-width: 2px;
    }
}
