* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #e7f0f2;
}

.container {
    flex: 1;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.head, .priceList {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 10px;
}

.background {
    width: 100%;
    height: 200px;
    background-image: linear-gradient(45deg, #333, #555), url('sampul.jpg');
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    position: relative;
}

.background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}


.profile-container {
    position: absolute;
    top: 125px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
    transition: all 0.3s ease;
}

.profile-container:hover {
    transform: translateX(-50%) translateY(-5px);
}

.profile {
    overflow: hidden;
    width: 150px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: linear-gradient(45deg, #555, #333), url("profile.jpg");
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    object-fit: cover;
}

.status {
    background-color: #FFEB3B;
    padding: 5px 15px;
    text-align: center;
    font-size: 14px;
    border-radius: 20px;
    font-weight: bold;
    color: #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    white-space: nowrap;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.info {
    margin: auto;
    margin-top: 150px;
    text-align: center;
    max-width: 80%;
    position: relative;
    z-index: 1;
}

.username {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.bio {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    padding: 0 20px;
    max-width: 500px;
    margin: 0 auto 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    color: #555;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #333;
    transform: translateY(-3px);
}

.body {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    flex: 1;
}

.sections {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.section {
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #eee;
    color: #555;
}

.section:hover {
    background-color: #ddd;
}

.section.active {
    background-color: #333;
    color: white;
    font-weight: bold;
}

.post {
    width: 100%;
    aspect-ratio: 3/4;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.post::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    border-radius: 0 0 10px 10px;
}

.footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
    font-size: 14px;
}

.feed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.video-info {
    padding: 12px;
}

.video-title {
    font-weight: bold;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 13px;
}

.video-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: #666;
}

.video-placeholder i {
    font-size: 50px;
    color: #ff4757;
    margin-bottom: 15px;
}

/* YouTube Brand Colors */
.social-links .youtube:hover {
    color: #ff4757;
}

.social-links .instagram:hover {
    color: #e1306c;
}

.social-links .tiktok:hover {
    color: #000000;
}

/* Loading Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading {
    border: 4px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    border-top: 4px solid #ff4757;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

/* Price List Section */
.price-section {
    background-color: #f9f9f9;
    padding: 50px 20px;
    margin-top: 30px;
}

.priceList {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.title {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.cards-container {
    gap: 25px;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.priceList .card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.priceList .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.menu {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.priceList .menu {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.priceList .price {
    font-size: 24px;
    font-weight: bold;
    color: #ff4757;
    text-align: center;
    margin-bottom: 20px;
}

.priceList .list ul {
    list-style-type: none;
    margin-bottom: 25px;
    flex-grow: 1;
}

.priceList .list li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.priceList .list li:before {
    content: "✓";
    color: #2ed573;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.priceList .button {
    background-color: #333;
    color: white;
    padding: 12px;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.priceList .button:hover {
    background-color: #ff4757;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cards-container {
        grid-template-columns: 1fr;
    }
    
    .priceList .card {
        padding: 20px;
    }
}

/* Style untuk video player */
.video-player {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.video-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 12px;
    background: #fff;
    border-radius: 0 0 8px 8px;
}

.video-thumbnail .duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 12px;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    cursor: pointer;
    overflow: hidden;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-thumbnail:hover .play-button {
    opacity: 1;
}

.play-button i {
    color: white;
    font-size: 24px;
    margin-left: 3px;
}

.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 12px;
}

.video-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.video-card iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}



.price {
    font-size: 24px;
    font-weight: bold;
    color: #ff4757;
    margin-bottom: 15px;
}

.button {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.button:hover {
    background-color: #ff4757;
}

.card-ornament {
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}


/* Optional hover effect */
.card-ornament:hover lottie-player {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .info {
        margin: auto;
        margin-top: 100px;
    }
    .profile {
        width: 120px;
    }
    
    .sections {
        gap: 10px;
    }
    
    .section {
        padding: 6px 15px;
        font-size: 14px;
    }
    
    .feed {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
}

#whatsapp-order {
    background-color: #7289d9;
    color: #fff;
}

#x-order {
    background-color: #14171A;
    color: #F5F8FA;
}
#kof-order {
    background-color: #FF6433;
    color: #F5F8FA;
}


#whatsapp-order:hover, #x-order:hover {
    background-color: #ff4757;
}