/* General Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0d0d0d; /* Dark cyberpunk background */
    color: #eeeeee;
}


.content {
    padding: 20px;
    text-align: center;
}

h1, h2 {
    color: #ff00ff; /* Neon magenta headings */
    text-shadow: 0 0 10px #ff00ff, 0 0 20px #00fff0; /* Dual neon glow */
}

/* Premium Card Section */
.premium-card-section {
    padding: 50px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Dynamic column count */
    gap: 20px; /* Consistent gap between cards */
    justify-content: center;
    border: 2px solid #00fff0;
    border-radius: 10px;
    background: #121212; /* Subtle dark background */
    box-shadow: 0 0 20px #00fff0; /* Outer neon glow */
}

/* Premium Card */
.premium-card {
    position: relative;
    background: #1a1a1a; /* Darker background for cards */
    border: 2px solid #ff00ff; /* Neon magenta border */
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 auto; /* Center the card horizontally */
}

.premium-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #ff00ff, 0 0 25px #00fff0; /* Dual neon hover effect */
}

/* Slider */
.premium-slider {
    position: relative;
    width: 100%;
    padding-top: 133.33%; /* Maintain aspect ratio */
    overflow: hidden;
    background-color: #000;
}

.premium-slider .premium-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.premium-slider .premium-slide.active {
    opacity: 1;
}

/* Profile Top Section */
.premium-profile-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #ff00ff; /* Neon magenta */
    color: #0d0d0d; /* Dark text for contrast */
    font-size: 0.9em;
    font-weight: bold;
}

/* Name and Price */
.premium-name-info {
    color: #00fff0; /* Neon cyan */
    font-weight: bold;
}

.price-info {
    background-color: #00fff0;
    color: #0d0d0d;
    padding: 5px 10px;
    border-radius: 3px;
    box-shadow: 0 0 10px #00fff0;
}

/* Top Left Details */
.premium-top-left-info {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 5;
}

.premium-detail {
    background-color: #ff00ff;
    color: #0d0d0d;
    padding: 3px 8px;
    font-size: 0.85em;
    font-weight: bold;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.premium-detail:hover {
    background-color: #00fff0;
    color: #000;
}

/* Footer */
.premium-profile-footer {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background-color: #ff00ff;
    color: #0d0d0d;
    font-weight: bold;
}

.premium-location-info,
.premium-type-info {
    color: #00fff0;
}

/* Contact Icons */
.contact-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.icon-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2em;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.call-button {
    background-color: #25D366;
}

.whatsapp-button {
    background-color: #4CAF50;
}

.email-button {
    background-color: #FF5722;
}

.telegram-button {
    background-color: #0088cc;
}

.icon-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px #00fff0;
}
/* View Profile Button */
.view-profile-button a {
    display: inline-block;
    background-color: #00fff0;
    color: #0d0d0d;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.view-profile-button a:hover {
    background-color: #ff00ff;
    color: #fff;
}

/* Fully Responsive Design */
@media (max-width: 1200px) {
    .premium-card-section {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Keep 2-3 cards per row on smaller screens */
    }
}

@media (max-width: 768px) {
    .premium-card-section {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); /* Ensure two cards per row on smaller screens */
    }
}

@media (max-width: 480px) {
    .premium-card-section {
        grid-template-columns: 1fr; /* Single column layout for small screens */
    }
}

/* View Counter Box */
.view-counter {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;  /* Use flexbox to align items vertically */
    flex-direction: column; /* Stack items vertically */
    align-items: flex-start;  /* Align content to the left */
    gap: 10px;  /* Space between the elements */
    z-index: 5;
}

/* Profile Views Box */
.view-counter .views-box {
    background: rgba(255, 255, 255, 0.2); /* Semi-transparent white */
    backdrop-filter: blur(1px); /* Glass effect */
    color: #000000; /* Black text */
    padding: 5px;
    font-size: 0.9em;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid #000000;
    width: auto;
}

/* Trending Icon Box */
.view-counter .trending-box {
    background: rgba(255, 255, 255, 0.2); /* Semi-transparent white */
    backdrop-filter: blur(1px); /* Glass effect */
    color: #ff5722; /* Orange text */
    padding: 5px;
    font-size: 0.9em;
    font-weight: bold;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    width: auto;
    border: 1px solid #ff5722;
    transition: all 0.3s ease-in-out;
}

/* Hover Effect for Trending Box */
.trending-box:hover {
    background-color: #ff5722; /* Full orange background */
    color: #fff; /* White text */
    transform: scale(1.1); /* Slight zoom effect */
    box-shadow: 0 4px 8px rgba(255, 87, 34, 0.8);
}

/* Verified Badge Box */
.view-counter .verified-box {
    background: #4285F4; /* Blue background for verified */
    color: white; /* White text */
    padding: 5px;
    font-size: 0.7em;
    font-weight: bold;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    width: auto;
    border: 1px solid #4285F4; /* Blue border for verified */
}

/* Animation for Fire Icon in Trending Box */
.trending-box i {
    animation: pulse 1s infinite;
}

/* Keyframe Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}
