/* Index Page Specific Styles - The Mystery Of Java Island */

/* Game Development Tools */
.game-tools {
    margin-top: 60px;
    text-align: center;
}

.tools-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.tools-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #f093fb);
    border-radius: 2px;
}

.tools-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.tool-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 120px;
    max-width: 140px;
}

.tool-card:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.tool-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: brightness(1.2) contrast(1.1);
}

.tool-card:hover .tool-logo {
    transform: scale(1.1);
}

.tool-card h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.tool-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tools-container {
        gap: 15px;
    }
    
    .tool-card {
        min-width: 100px;
        max-width: 110px;
        padding: 20px 15px;
    }
    
    .tool-logo {
        width: 45px;
        height: 45px;
    }
    
    .tool-card h4 {
        font-size: 0.9rem;
    }
    
    .tool-card p {
        font-size: 0.7rem;
    }
}

/* Requirements Section */
.requirements-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.requirements-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.requirements-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.requirements-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.requirements-card h3 i {
    color: #16a085;
    font-size: 1.2rem;
}

.requirements-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirements-card li {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 12px;
    padding-left: 15px;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
}

.requirements-card li:before {
    content: ">";
    position: absolute;
    left: 0;
    color: #16a085;
    font-weight: bold;
}

.requirements-card strong {
    color: #fff;
    font-weight: 600;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .hero-section {
        height: 100vh;
        min-height: 600px;
        background-attachment: scroll;
        background-size: cover;
        background-position: center;
    }
    
    .hero-content {
        padding: 0 20px;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 20px;
        line-height: 1.1;
    }
    
    .hero-content h2 {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .btn-get-started {
        padding: 12px 30px;
        font-size: 1rem;
        margin: 0 auto;
    }
    
    .download-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .merchandise-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
    }
    
    .hero-content h2 {
        font-size: clamp(0.8rem, 4vw, 1rem);
        padding: 0 5px;
    }
    
    .btn-get-started {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Hero Platform Logos */
.platform-logos {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    justify-content: center;
}

.platform-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 100px;
}

.platform-logo:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.platform-logo i {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 5px;
}

.platform-logo span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 1rem;
}

.btn-platform-download {
    display: inline-block;
    background: linear-gradient(135deg, #16a085, #27ae60);
    color: white;
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-platform-download:hover {
    background: linear-gradient(135deg, #27ae60, #16a085);
    transform: translateY(-2px);
}

/* Download Sections */
.download-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.download-info h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.download-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.download-requirements {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
}

.download-requirements h3 {
    color: #16a085;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.download-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.download-requirements li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.download-requirements li:before {
    content: ">";
    position: absolute;
    left: 0;
    color: #16a085;
    font-weight: bold;
}

.download-actions {
    display: flex;
    justify-content: center;
}

.download-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 350px;
    transition: all 0.3s ease;
}

.download-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.download-icon {
    font-size: 3rem;
    color: #16a085;
    margin-bottom: 20px;
}

.download-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.download-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.download-size {
    color: #16a085;
    font-weight: 600;
    margin-bottom: 25px;
}

.btn-download-primary {
    display: inline-block;
    background: linear-gradient(135deg, #16a085, #27ae60);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-download-primary:hover {
    background: linear-gradient(135deg, #27ae60, #16a085);
    transform: translateY(-2px);
}

/* Merchandise Section */
.merchandise-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
}

.merchandise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.merchandise-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.merchandise-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.merchandise-image {
    height: 200px;
    overflow: hidden;
}

.merchandise-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.merchandise-card:hover .merchandise-image img {
    transform: scale(1.05);
}

.merchandise-info {
    padding: 25px;
}

.merchandise-info h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.merchandise-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.merchandise-price {
    color: #16a085;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-merchandise {
    display: inline-block;
    background: linear-gradient(135deg, #16a085, #27ae60);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-merchandise:hover {
    background: linear-gradient(135deg, #27ae60, #16a085);
    transform: translateY(-2px);
}

.merchandise-footer {
    text-align: center;
    margin-top: 50px;
}

.btn-view-all {
    display: inline-block;
    background: transparent;
    color: #16a085;
    padding: 12px 30px;
    text-decoration: none;
    border: 2px solid #16a085;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: #16a085;
    color: white;
}

.no-merchandise {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

/* About Section Styles */
.about-section {
    padding: 100px 0;
    background: linear-gradient(to right, #ffffff 60%, #e8f5e6 100%);
    color: #343a40;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-text .section-title {
    color: #2c3e50;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1;
}

.about-subtitle {
    color: #16a085;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.1;
}

.about-text p {
    color: #5d6d7e;
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: left;
    font-weight: 400;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text p b {
    color: #2c3e50;
    font-weight: 700;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 100vh;
    background: url('../../image/The\ Mye\ \(2\).png') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.0);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    padding: 0 20px;
}

.hero-title {
    color: white;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
    letter-spacing: -1px;
}

.btn-get-started {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px var(--shadow-green);
    border: 2px solid var(--primary-green);
}

.btn-get-started:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--shadow-green);
    background: linear-gradient(135deg, var(--accent-green), var(--primary-green));
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 25px;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green);
    background: rgba(76, 175, 80, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    transition: all 0.3s ease;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Styles */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #bdc3c7;
    margin: 0;
}

/* Contact Section Styles */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(to right, #ffffff 60%, #e8f5e6 100%);
    color: #343a40;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.1);
}

.contact-form-wrapper .section-title {
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #16a085;
    background: white;
    box-shadow: 0 0 0 3px rgba(22, 160, 133, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-send {
    background: linear-gradient(135deg, #16a085, #1abc9c);
    color: rgb(24, 24, 24);
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(22, 160, 133, 0.3);
}

.btn-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 160, 133, 0.4);
    background: linear-gradient(135deg, #1abc9c, #16a085);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(44, 62, 80, 0.08);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(44, 62, 80, 0.12);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #16a085, #1abc9c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-details p {
    color: #5d6d7e;
    font-size: 1rem;
    margin: 0;
}

/* News Section Styles */
.news-section {
    padding: 100px 0;
    background: linear-gradient(to right, #ffffff 60%, #e8f5e6 100%);
    color: #343a40;
}

.news-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.news-text {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.1);
}

.section-title-news {
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.news-description {
    color: #5d6d7e;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: center;
}

.news-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-news {
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

.btn-hubungi {
    background: linear-gradient(135deg, #16a085, #1abc9c);
    color: white;
    box-shadow: 0 5px 15px rgba(22, 160, 133, 0.3);
}

.btn-hubungi:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 160, 133, 0.4);
    background: linear-gradient(135deg, #1abc9c, #16a085);
}

.btn-cek-produk {
    background: transparent;
    color: #16a085;
    border: 2px solid #16a085;
    box-shadow: 0 5px 15px rgba(22, 160, 133, 0.2);
}

.btn-cek-produk:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 160, 133, 0.3);
    background: #16a085;
    color: white;
}

.news-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.1);
}

.news-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-image:hover img {
    transform: scale(1.05);
}

/* Marketplace Section Styles */
.marketplace-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #16a085, #1abc9c);
    color: white;
}

.marketplace-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.marketplace-text {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.1);
}

.section-title-marketplace {
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
}

.marketplace-description {
    color: #5d6d7e;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: center;
}

.marketplace-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-marketplace {
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

.btn-hubungi-marketplace {
    background: #2c3e50;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-hubungi-marketplace:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    background: #34495e;
}

.btn-cek-produk-marketplace {
    background: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.btn-cek-produk-marketplace:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    background: white;
    color: #2c3e50;
}

.marketplace-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.1);
}

.marketplace-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.marketplace-image:hover img {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
        background: linear-gradient(to right, #ffffff 70%, #e8f5e6 100%);
    }
    
    .about-content {
        padding: 0 20px;
    }
    
    .about-text .section-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .about-subtitle {
        font-size: 1.6rem;
        text-align: center;
        margin-bottom: 25px;
    }
    
    .about-text p {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .contact-form-wrapper .section-title {
        font-size: 1.8rem;
    }
    
    .contact-info {
        gap: 20px;
    }
    
    .contact-item {
        padding: 20px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: rgba(10, 26, 10, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        transition: left 0.3s ease;
        gap: 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* News Section Styles for Index */
.news-section .news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.news-section .news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-section .news-card:hover {
    transform: translateY(-5px);
}

.news-section .news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-section .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-section .news-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #16a085;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.news-section .news-date {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
}

.news-section .news-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-section .news-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-section .news-title a {
    color: #2c3e50;
    text-decoration: none;
}

.news-section .news-title a:hover {
    color: #16a085;
}

.news-section .news-excerpt {
    color: #5d6d7e;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.news-section .news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 0.85rem;
    color: #5d6d7e;
}

.news-section .news-meta i {
    color: #16a085;
    margin-right: 5px;
}

@media (max-width: 992px) {
    .news-section .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .news-section .news-grid {
        grid-template-columns: 1fr;
    }
}

/* Buy Button Styles */
.btn-beli {
    display: block;
    width: 100%;
    padding: 12px 20px;
    margin-top: 15px;
    background: #25d366;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-beli:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-beli i {
    margin-right: 8px;
}

.btn-beli.disabled {
    background: #64748b;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-beli.disabled:hover {
    background: #64748b;
    transform: none;
    box-shadow: none;
}
