  <style amp-custom>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #000000 url(https://i.gyazo.com/e7e3cc48a12f2858e9e897eaa56a7aa7.jpg) no-repeat center center;
            color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
        }


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

        .header {
            background: linear-gradient(0deg, #252525, #000000);
            backdrop-filter: blur(20px);
            box-shadow: 0 0 8px 7px rgb(255, 208, 0);
            padding: 1rem 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        .nav-menu {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-link {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            color: gold;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 8px;
            background: rgb(0, 0, 0);
            border: 1px solid rgb(61, 61, 61)
        }

        .hamburger span {
            width: 24px;
            height: 2px;
            background: #ffd900;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        .sidebar {
            background: linear-gradient(0deg, #4a4a4a, #000000);
            border-right: 1px solid rgba(234, 51, 51, 0.3);
        }

        .sidebar-content {
            padding: 2rem;
        }

        .sidebar-nav {
            list-style: none;
            margin-top: 2rem;
        }

        .sidebar-nav li {
            margin-bottom: 1rem;
        }

        .sidebar-nav a {
            color: #ffffff;
            text-decoration: none;
            padding: 1rem;
            display: block;
            border-radius: 12px;
            transition: all 0.3s ease;
            border-bottom: 1px solid;
        }

        .sidebar-nav a:hover {
            background: rgba(184, 6, 6, 0.2);
            border-color: rgba(234, 51, 51, 0.4);
        }

        .sidebar-auth {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .auth-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn-spinner {
            position: relative;
            padding: 5px 20px;
            color: white;
            background: #111;
            border: none;
            border-radius: 10px;
            overflow: hidden;
            z-index: 1;
            text-decoration: none;
            font-size: larger;
        }

        .btn-spinner:hover {
            background-color: gold;
            transform: translateY(-3px);
        }

        .btn-spinner::before {
            content: "";
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            background: conic-gradient(#ff0, #f00, #0ff, #ff0);
            z-index: -1;
            border-radius: 15px;
            transition: all 0.3s ease;
            animation: spin-border 2s linear infinite;
        }

        .btn-spinner::after {
            content: "";
            position: absolute;
            top: 3px;
            left: 3px;
            right: 3px;
            bottom: 3px;
            background: rgb(39 39 39);
            z-index: -1;
            border-radius: 10px;
        }

        @keyframes spin-border {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .main-content {
            margin-top: 80px;
            padding: 2rem 0;
        }

        .hero-section {
            padding: 20px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 48px;
            font-weight: 800;
            background: linear-gradient(135deg, #d4b800, #fade0f, #f8e004);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            text-shadow: 0 0 30px rgb(234 230 51 / 30%);
            text-align: center;
        }

        .hero-subtitle {
            font-size: 19px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2rem;
            line-height: 1.6;
            text-align: justify;
        }

        .hero-subtitle a {
            text-decoration: none;
            color: rgba(255, 255, 255, 0.8);
        }

        .hero-subtitle a:hover {
            color: gold;
        }

        .coloksgp-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            justify-content: center;
            justify-items: center;
        }

        .coloksgp-card {
            background-color: #ffe100;
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 1.5rem;
            width: 200px;
            text-align: center;
        }

        .coloksgp-image amp-img {
            width: 100%;
            height: 150px;
            border-radius: 15px;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #ffffff;
        }

        .coloksgp-price {
            font-weight: 700;
            text-align: center;
            background-color: rgb(185, 8, 0);
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid #ffe100;

        }

        .coloksgp-price:hover {
            border-radius: 5px;
            background-color: rgb(175, 0, 0);
            transform: translateY(-3px);
        }

        .coloksgp-price a {
            text-decoration: none;
            color: white;
        }

        .stats-section {
            background: linear-gradient(0deg, #ffe100, rgb(255, 217, 0), #dba800);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 0 8px 1px red;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            text-align: center;
        }

        .stat-item h3 {
            font-size: 2.5rem;
            font-weight: 800;
            color: rgb(214, 0, 0);
            margin-bottom: 0.5rem;
        }

        .stat-item p {
            color: rgba(0, 0, 0, 0.8);
            font-weight: 500;
        }

        .center-section {
            padding: 20px 0;
        }

        .center-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            align-items: center;
        }

        .floating-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .floating-card {
            background-color: #252525;
            backdrop-filter: blur(20px);
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .floating-card:nth-child(3) {
            grid-column: 1 / -1;
        }

        .card-image amp-img {
            width: 100%;
            border-radius: 12px;
            margin-bottom: 1rem;
            display: flex;
            border: 1px solid gold;
        }

        .card-image2 amp-img {
            width: 100%;
            border-radius: 8px;
            margin-bottom: 1rem;
            display: flex;
            border: 1px solid gold;
        }

        .center-content h2 {
            font-size: 40px;
            font-weight: 700;
            color: gold;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .center-content p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1.5rem;
            line-height: 1.7;
            text-align: justify;
        }

        .center-content a {
            text-decoration: none;
            color: rgba(255, 255, 255, 0.8);
        }

        .center-content a:hover {
            color: gold;
        }

        .collection-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .create-section {
            padding: 20px 0;
            text-align: center;
            background: radial-gradient(circle at center, rgba(147, 51, 234, 0.1) 0%, transparent 70%);
        }

        .create-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .create-section h2 {
            font-size: 40px;
            font-weight: 700;
            color: gold;
            margin-bottom: 1.5rem;
            border-radius: 12px;
            padding: 20px;
        }

        .create-section p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2rem;
            line-height: 1.7;
            text-align: justify;
        }

        .create-content a {
            text-decoration: none;
            color: rgba(255, 255, 255, 0.8);
        }

        .create-content a:hover {
            color: red;
        }

        .artist-card {
            background-color: rgb(0, 0, 0);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 1rem;
            max-width: 1367px;
            margin: 0 auto;
            box-shadow: 0 0 8px 2px gold;
        }

        .images amp-img {
            width: 100%;
            border-radius: 12px;
            border: 1px solid gold;
            margin: auto;
        }

        .newsletter-section {
            padding: 20px 0;
            background-color: rgb(0, 0, 0);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            margin: auto;
            text-align: center;
            max-width: 1376px;
            box-shadow: 0 0 8px 2px rgb(255, 230, 0);
        }

        .newsletter-section h2 {
            padding: 15px 10px;
            color: gold;
            border-radius: 12px;
        }

        .faq-item {
            border-bottom: 1px solid rgb(133, 132, 132);
            margin-bottom: 15px;
            border-radius: 12px;
            position: relative;
        }

        .faq-item input {
            display: none;
        }

        .faq-item input:checked+.faq-question::after {
            content: "-";
            transform: rotate(180deg);
        }

        .faq-item input:checked~.faq-answer {
            max-height: 200px;
            padding: 15px 10px;
            background: rgb(20, 20, 20);
            border-left: 3px solid white;
            border-radius: 5px;
        }

        .faq-question {
            display: block;
            padding: 10px;
            font-size: 18px;
            font-family: verdana;
            font-weight: bold;
            color: #ffffff;
            cursor: pointer;
            position: relative;
        }

        .faq-question::after {
            content: "+";
            position: absolute;
            right: 20px;
            font-size: 18px;
            color: white;
            transition: transform 0.3s;
        }


        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 15px;
            color: #9e9797;
            font-size: 14px;
            letter-spacing: 1px;
            font-family: helvetica;
        }

        .footer {
            background: linear-gradient(176deg, #000000, #4d4d4d);
            backdrop-filter: blur(20px);
            padding: 20px 10px;
            margin-top: 20px;
            box-shadow: 0 0 8px 7px rgb(255, 196, 0);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 15px;
        }

        .footer-section h3 {
            color: #ffffff;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: rgb(255, 255, 255);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: gold;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-icon amp-img {
            width: 40px;
            height: 40px;
            background: goldenrod;
            border: 1px solid rgba(234, 191, 51, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            color: #ffffff;
            transform: translateY(-2px);
            border-radius: 50%;
            box-shadow: 0 10px 15px gold;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.5);
            padding-top: 12px;
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-follow {
            padding: 10px;
            color: goldenrod;
        }

        @media (max-width: 1024px) {
            .container {
                padding: 0 1.5rem;
            }

            .hero-content h1 {
                font-size: 3rem;
            }

            .hero-container {
                gap: 3rem;
            }

            .stats-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 1.5rem;
            }

            .center-container {
                gap: 3rem;
            }

        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .hero-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .coloksgp-cards {
                display: flex;
                justify-content: center;
                flex-wrap: wrap;
            }

            .center-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .floating-cards {
                grid-template-columns: 1fr;
            }

            .floating-card:nth-child(3) {
                grid-column: 1;
            }

            .footer-content {
                grid-template-columns: 1fr, 1fr, 1fr;
                gap: 15px;
            }

            .auth-buttons {
                width: 100%;
                justify-content: center;
                display: none;
            }

            .coloksgp-image amp-img {
                width: 130px;
                height: 130px;
                margin: auto;

            }

            .coloksgp-image {
                margin-bottom: 10px;
            }

            .stat-item h3 {
                font-size: 38px;
            }

            .center-content h2,
            .create-section h2,
            .newsletter-section h2 {
                font-size: 38px;
            }
        }

        @media (max-width: 425px) {
            .container {
                padding: 0 1rem;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .stats-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 1rem;
            }

            .social-icons {
                justify-content: center;
                display: grid;
            }

            .faq-question {
                font-size: 13px;
            }

            .faq-answer {
                font-size: 12px;
            }

            .center-content h2,
            .create-section h2,
            .newsletter-section h2 {
                font-size: 24px;
            }

            .hero-subtitle {
                font-size: 16px;
            }

            .coloksgp-cards {
                margin: auto;
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
                justify-content: center;
                padding: 10px;
                width: 178px;
                display: grid;
            }

            .coloksgp-cards amp-img {
                width: 120px;
                height: 120px;
                margin: 0 auto;
                display: block;
            }

            .stat-item h3 {
                font-size: 25px;
            }

            .stat-item p {
                font-size: 12px;
            }

            .hero-content {
                font-size: 15px;
            }

            .coloksgp-card {
                padding: 20px;
            }
        }

        @media (max-width: 375px) {
            .hero-content h1 {
                font-size: 1.8rem;
            }

            .coloksgp-card {
                width: 150px;
                padding: 1rem;
            }

            .create-section h2 {
                font-size: 24px;
            }

            .coloksgp-image amp-img {
                width: 100px;
                height: 100px;
            }

            .footer {
                font-size: 12px;
            }

            .collection-info {
                font-size: 11px;
            }
        }

        @media (max-width: 320px) {
            .container {
                padding: 0 0.75rem;
            }

            .hero-content h1 {
                font-size: 1.6rem;
            }

            .coloksgp-cards amp-img {
                flex-direction: column;
                align-items: center;
                margin: auto;
            }

            .footer-content {
                font-size: 12px;
                gap: 10px;
            }

            .coloksgp-card {
                width: 120px;
                padding: 19px;
            }

            .coloksgp-image amp-img {
                width: auto;
                height: 80px;
            }

        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes glow {

            0%,
            100% {
                text-shadow: 0 0 20px rgba(234, 222, 51, 0.3);
            }

            50% {
                text-shadow: 0 0 30px rgba(236, 215, 22, 0.671);
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .fade-in {
            animation: fadeInUp 0.8s ease forwards;
        }

        .slide-in {
            animation: slideInLeft 0.8s ease forwards;
        }

        .glow-text {
            animation: glow 2s ease-in-out infinite;
        }

        .float-animation {
            animation: float 3s ease-in-out infinite;
        }

        .hero-image-wrapper {
            max-width: 300px;
            margin: 0 auto 20px auto;
        }

        .decorated-image {
            position: relative;
            max-width: 300px;
            margin: 0 auto 20px auto;
            border-radius: 20%;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.4); /* efek glow keemasan */
        }

        .decorated-image .image-border {
            position: absolute;
            top: -8px;
            left: -8px;
            right: -8px;
            bottom: -8px;
            border: 4px solid gold;
            border-radius: 20%;
            z-index: 1;
            box-shadow: 0 0 8px 70px rgb(255, 208, 0);
        }

        .decorated-image amp-img {
            border-radius: 20%;
            position: relative;
            z-index: 2;
        }

        .decorated-image .image-glow {
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 120%;
            height: 20px;
            background: radial-gradient(ellipse at center, rgba(255,255,255,0.2) 0%, transparent 70%);
            z-index: 0;
        }
    </style>