:root {
    --gold: #ffd700;
    --gold-dark: #b8860b;
    --gold-light: #fff8dc;
    --black: #000000;
    --black-light: #1a1a1a;
    --white: #ffffff;
    --red: #b22222;
    --shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    --text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--black);
    color: var(--white);
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(184, 134, 11, 0.1) 0%, transparent 55%),
        radial-gradient(circle at 75% 75%, rgba(184, 134, 11, 0.1) 0%, transparent 55%);
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.top-header {
  width: 100%;
  background: linear-gradient(90deg, #000000, #111111);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  box-shadow: 0 2px 6px rgba(255, 215, 0, 0.25);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.header-left {
  display: flex;
  align-items: center;
}

.header-logo {
  height: 100px;
  width: auto;
  border-radius: 8px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-form input {
  background-color: #222;
  color: #fff;
  border: 1px solid #444;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 18px;
  outline: none;
  cursor: text;
  width: 250px;
  height: 50px;
  transition: all 0.3s;
}
.header-form input:hover {
  background-color: #333;
  border-color: #e6b400;
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 14px;
  color: #fff;
  height: 50px;
  width: 100px;
}

.header-btn.daftar {
  background-color: #d92323;
}

.header-btn.masuk {
  background-color: #f4b400;
  color: #000;
}

.header-btn:hover {
  opacity: 0.8;
}

.mobile-buttons {
  display: none;
  flex-direction: column;
  gap: 10px;
  width: 90%;
  margin: 20px auto;
}

.mobile-btn {
  display: block;
  text-align: center;
  padding: 10px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s;
}

.mobile-btn.daftar {
  background-color: #c00;
  color: #fff;
}
.mobile-btn.masuk {
  background-color: #e6b400;
  color: #000;
}
.mobile-btn:hover {
  opacity: 0.9;
}

.mobile-login-buttons {
  display: none;
}

.mobile-login-section {
  display: none;
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-btn {
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 14px;
  color: #fff;
  font-weight: bold;
  transition: all 0.3s;
  text-align: center;
}
.header-btn.daftar {
  background-color: #c00;
}
.header-btn.masuk {
  background-color: #e6b400;
  color: #000;
}
.header-btn:hover {
  opacity: 0.8;
}

.header-input {
  background-color: #222;
  color: #aaa;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s;
}
.header-input:hover {
  background-color: #333;
  color: #fff;
}

.header-btn {
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 14px;
  color: #fff;
  font-weight: bold;
  transition: all 0.3s;
}
.header-btn.daftar {
  background-color: #c00;
}
.header-btn.masuk {
  background-color: #e6b400;
  color: #000;
}
.header-btn:hover {
  opacity: 0.8;
}

header {
    text-align: center;
    padding: 10px 0;
    border-bottom: 2px solid var(--gold);
    margin-bottom: 0px;
    position: relative;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
    border-radius: 0 0 10px 10px;
    background: linear-gradient(to bottom, var(--black-light), var(--black));
}

header h1 {
    font-size: 1.8rem;
    color: var(--gold);
    text-shadow: var(--text-shadow), 0 0 10px rgba(255, 215, 0, 0.5);
    margin-bottom: 0px;
    letter-spacing: 1px;
    transform: perspective(500px) rotateX(10deg);
}

header p {
    font-size: 1 rem;
    color: var(--gold-light);
    max-width: 800px;
    margin: 0 auto;
    text-shadow: var(--text-shadow);
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 500px;
    margin-top: 135px;
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

.slides {
    display: flex;
    width: 500%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    width: 20%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.slide-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 20px;
    max-width: 80%;
}

.slide-content h2 {
    color: var(--gold);
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: var(--text-shadow);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-shadow: var(--text-shadow);
}

.slide-btn {
    background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
    color: var(--black);
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: var(--shadow), 0 0 10px rgba(255, 215, 0, 0.5);
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-dot.active {
    background-color: var(--gold);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 10px;
    margin-top: 30px;
}

.product-card {
    background: linear-gradient(145deg, var(--black-light), var(--black));
    border: 1px solid var(--gold);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow), 0 0 15px rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform: perspective(500px) rotateY(0deg);
}

.product-card::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover {
    transform: perspective(500px) rotateY(5deg) translateY(-5px);
    box-shadow: var(--shadow), 0 0 25px rgba(255, 215, 0, 0.3);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.product-card h3 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 1.4rem;
    text-shadow: var(--text-shadow);
}

.product-card p {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 15px;
    text-shadow: var(--text-shadow);
}

.btn {
    display: inline-block;
    background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
    color: var(--black);
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: var(--shadow), 0 0 10px rgba(255, 215, 0, 0.5);
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
}

.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: left 0.5s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow), 0 0 20px rgba(255, 215, 0, 0.8);
}

.btn:hover::before {
    left: 100%;
}

.btn-vip {
    background: linear-gradient(to bottom, #ff4500, #8b0000);
    box-shadow: var(--shadow), 0 0 10px rgba(255, 69, 0, 0.5);
}

.btn-vip:hover {
    box-shadow: var(--shadow), 0 0 20px rgba(255, 69, 0, 0.8);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.795);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.5s ease;
}

.modal-content {
    background: linear-gradient(180deg, #00000081 0%, #ffffff8a 100%);
    border: 2px solid var(--gold);
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    position: relative;
    animation: scaleIn 0.5s ease;
    transform: perspective(1000px) rotateX(0deg);
}

.modal-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 2rem;
    font-weight: bold;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.7);
    position: relative;
    overflow: hidden;
}

.modal-logo img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    z-index: 1;
    position: relative;
    background: var(--black);
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.6);
}

.modal-logo::after {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: conic-gradient(transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: rotate 3s linear infinite;
}

.modal-logo span {
    z-index: 1;
    background: var(--black);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal h2 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 1.8rem;
    text-shadow: var(--text-shadow);
}

.modal p {
    color: var(--white);
    margin-bottom: 25px;
    text-shadow: var(--text-shadow);
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* --- DUMAWIN INDONESIA SECTION --- */
.dumawin-info {
  background: #0c0c0c;
  color: #fff;
  padding: 60px 20px;
}

.dumawin-info .title {
  font-size: 26px;
  font-weight: 700;
  color: #fdd835;
  text-align: center;
  margin-bottom: 20px;
}

.dumawin-info .desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
  color: #ccc;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

.feature {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: #1a1a1a;
  border-radius: 12px;
  padding: 20px;
  transition: 0.3s;
}

.feature:hover {
  background: #222;
  transform: translateY(-5px);
}

.feature i {
  color: #fdd835;
  font-size: 28px;
}

.feature h4 {
  color: #fff;
  margin-bottom: 6px;
  font-size: 16px;
}

.feature p {
  color: #bbb;
  font-size: 14px;
  line-height: 1.5;
}

/* --- FOOTER SECTION --- */
.dumawin-info {
  background: #0c0c0c;
  color: #fff;
  padding: 60px 20px;
}

.dumawin-info .title {
  font-size: 26px;
  font-weight: 700;
  color: #fdd835;
  text-align: center;
  margin-bottom: 20px;
}

.dumawin-info .desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
  color: #ccc;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

.feature {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: #1a1a1a;
  border-radius: 12px;
  padding: 20px;
  transition: 0.3s;
}

.feature:hover {
  background: #222;
  transform: translateY(-5px);
}

.feature i {
  color: #fdd835;
  font-size: 26px;
}

.feature h4 {
  color: #fff;
  margin-bottom: 6px;
  font-size: 15px;
}

.feature p {
  color: #bbb;
  font-size: 13px;
  line-height: 1.5;
}

.dumawin-footer {
  background: #ffae00;
  color: #000;
  padding-top: 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
  padding: 0 20px 40px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #2600ff;
  text-decoration: none;
  text-shadow: 1px 1px 2px #000;
}

.footer-col a:hover {
  text-decoration: underline;
}

.btn-bantuan {
  background: #ffffff;
  color: #fdd835;
  padding: 8px 14px;
  border-radius: 8px;
  display: inline-block;
  transition: 0.3s;
  font-size: 14px;
  font-weight: bold;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.btn-bantuan:hover {
  background: #b4b4b4;
}

.footer-col img {
  vertical-align: middle;
  margin-right: 6px;
}

.socials a {
  color: #ffffff;
  font-size: 18px;
  margin-right: 12px;
  transition: 0.3s;
  text-shadow: 1px 1px 3px #000;
}

.socials a:hover {
  color: #ff0000;
}

.footer-bottom {
  background: #0c0c0c;
  color: #ccc;
  text-align: center;
  padding: 20px;
  font-size: 13px;
}

.footer-bottom ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

.footer-bottom a {
  color: #ffae00;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.animate-slide {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease-out;
}

.animate-slide.visible {
    opacity: 1;
    transform: translateY(0);
}


@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { transform: scale(0.8) perspective(1000px) rotateX(-10deg); opacity: 0; }
    to { transform: scale(1) perspective(1000px) rotateX(0deg); opacity: 1; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .banner-slider {
        position: relative;
        width: 100%;
        height: 500px;
        margin-top: 0px;
        margin-bottom: 40px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
    }

    .desktop-only {
        display: none !important;
    }
    .mobile-only {
        display: flex !important;
    }

    .mobile-login-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 15px;
    }

    .mobile-login-section input {
        width: 100%;
        padding: 10px;
        border-radius: 8px;
        border: 1px solid #444;
        font-size: 14px;
        text-align: left;
        background: #111;
        color: #fff;
        transition: all 0.3s ease;
        cursor: text;
    }

    .mobile-login-section input:focus {
        border-color: #f5d76e;
        background: #222;
        box-shadow: 0 0 8px #f5d76e;
    }

    .btn-daftar, .btn-masuk {
        width: 100%;
        padding: 10px;
        text-align: center;
        border-radius: 8px;
        font-weight: bold;
        text-decoration: none;
        display: block;
        transition: 0.3s;
    }

    .btn-daftar {
        background-color: #d60000;
        color: #fff;
    }

    .btn-daftar:hover {
        background-color: #ff3b3b;
    }

    .btn-masuk {
        background-color: #ffcc00;
        color: #000;
    }

    .btn-masuk:hover {
        background-color: #ffe066;
    }

    .header-input,
    .header-btn {
        font-size: 13px;
        padding: 5px 10px;
        width: auto;
    }

    .banner-slider {
        position: relative;
        width: 100%;
        height: 200px;
        margin-bottom: 40px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
    }

    header h1 {
        font-size: 1rem;
    }
    
    .slide-content h2 {
        color: var(--gold);
        font-size: 1.2rem;
        margin-bottom: 0px;
        text-shadow: var(--text-shadow);
    }

    .slide-content p {
        font-size: 0.7rem;
        margin-bottom: 0px;
        text-shadow: var(--text-shadow);
    }

    header p {
        font-size: 0.6rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 10px;
    }

    .product-card {
        padding: 10px;
        border-radius: 8px;
    }

    .product-image {
        height: 120px;
    }

    .product-card h3 {
        font-size: 1rem;
    }

    .product-card p {
        font-size: 0.75rem;
    }

    .btn {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .dumawin-info {
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        margin-right: calc(-50vw + 50%) !important;
        background: linear-gradient(180deg, #0c0c0c 0%, #ffae00 100%);
        border-radius: 0 !important;
        padding: 30px 18px !important;
    }

    .dumawin-info .title {
        font-size: 22px;
    }

    .dumawin-info .desc {
        font-size: 13px;
        line-height: 1.5;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature {
        padding: 15px;
        border-radius: 10px;
    }

    .feature i {
        font-size: 22px;
    }

    .feature h4 {
        font-size: 14px;
    }

    .feature p {
        font-size: 12px;
    }

    .dumawin-footer {
        width: 100vw !important;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        border-radius: 0 !important;
    }

    .dumawin-footer .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .dumawin-footer .footer-box {
        border-radius: 10px;
        padding: 12px;
        text-align: center;
    }

    .dumawin-footer .footer-box h4 {
        font-size: 0.95rem;
    }

    .dumawin-footer .footer-box p,
    .dumawin-footer .footer-box a {
        font-size: 0.8rem;
    }

    .dumawin-footer .social-icons a {
        font-size: 1rem;
        margin: 0 4px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-card {
        padding: 8px;
    }

    .product-image {
        height: 100px;
    }

    .product-card h3 {
        font-size: 0.9rem;
    }

    .product-card p {
        font-size: 0.7rem;
    }

    .btn {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}

