/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  
}

/* Body and Container */
body {
   margin: 0;
  padding: 0;
  background: url('/images/main-imgs/background-img.png') no-repeat center center fixed;
  background-size: cover;   /* ✅ Covers entire screen */
  background-attachment: fixed; /* ✅ Stays fixed on scroll */
  height: 100vh;            /* ✅ Full height viewport */
  width: 100%;              /* ✅ Full width */
  color: #babdbf;
  overflow-x: hidden;
  border-radius: 0;         /* ✅ No rounded corners */
}


.container {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}


.verified-icon {
  width: 16px;               /* Small tick size */
  height: 16px;
  vertical-align: middle;    /* Align with text */
  margin-right: 5px;         /* Space after tick */
  border-radius: 50%;        /* 🔥 Perfect circle */
  object-fit: cover;         /* Keep image ratio */
}


/* Background Image */
.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('background.jpg') center/cover no-repeat;

  filter: brightness(70%);
  z-index: -1;
}

  /* Container */
.profile-buttons {
  position: relative;
}

/* Common styles for both buttons */
.profile-buttons .subscribe-btn,
.profile-buttons .share-btn {
  display: inline-flex;
  align-items: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: normal;
  background-color: #f5f5f5;
  color: #616161;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Subscribe button */
.profile-buttons .subscribe-btn {
  position: absolute;
  top: 15px;
  right: 155px;
  padding: 8px 16px;
  border-radius: 25px;
}

/* Share button */
.profile-buttons .share-btn {
  position: absolute;
  top: 15px;
  margin-left: 220px; /* your original position */
  padding: 10px 12px;
  border-radius: 50%;
}

/* Hover effects */
.profile-buttons .subscribe-btn:hover,
.profile-buttons .share-btn:hover {
  background-color: #e0e0e0;
}

/* Bell icon gap */
#bellIcon {
  margin-right: 8px;
  transition: transform 0.3s ease;
}

.vibrate {
  animation: vibrate 0.4s linear;
}

@keyframes vibrate {
  0% { transform: rotate(0deg); }
  20% { transform: rotate(-15deg); }
  40% { transform: rotate(15deg); }
  60% { transform: rotate(-15deg); }
  80% { transform: rotate(15deg); }
  100% { transform: rotate(0deg); }
}

.vibrate {
  animation: vibrate 0.4s ease;
}




/* Profile Section */
.profile {
  margin-top: 100px;
  text-align: center;
}

.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  
}

.profile h2 {
  margin-top: 10px;
  font-size: 1.5rem;
}

.verified {
  color: #4da6ff;
  


}

.title {
  font-size: 1rem;
  margin-top: 5px;
}
/* Container */
.links {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  width: 90%;
  max-width: 550px; 
  margin-left: auto;
  margin-right: auto;
  font-family: Arial, sans-serif; /* ✅ Arial font applied */
}

/* Links */
.links a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #141e2d;
  padding: 16px 16px 16px 60px; /* extra left padding for image */
  margin: 8px 0;
  border-radius: 30px;
  color: #babdbf;
  font-weight: normal; /* ✅ Normal font weight */
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  font-family: Arial, sans-serif; /* ✅ Arial font applied */
}

/* Image styling */
.links a img {
  position: absolute;
  left: 16px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

/* Text inside link */
.links a .link-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Arial, sans-serif; /* ✅ Arial font applied */
}

.links a .link-text span {
  font-size: 16px;
  font-weight: normal; /* ✅ Normal weight */
}

.links a .link-text small {
  font-size: 12px;
  color: #9fa3a6;
  font-weight: normal;
}

/* Hover effect */
.links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}



/* Hover: lift up */
.links a:hover {
  transform: translateY(-5px);          /* Lifts up */
  box-shadow: 0 8px 15px rgba(0,0,0,0.3); /* Adds shadow */
}

  /* Cookie bar container */
  .cookie-bar {
    position: fixed;
    bottom: 20px;           /* distance from bottom */
    left: 25%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #3a3a3a;  /* dark gray background */
    color: white;
    padding: 12px 20px;
    width: 90%;             /* responsive width */
    max-width: 900px;
    border-radius: 25px;    /* fully rounded corners */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    font-family: Arial, sans-serif;
    font-size: 14px;
    z-index: 1000;
  }

  /* Text inside bar */
  .cookie-bar p {
    margin: 0;
    flex: 1;
    line-height: 1.4;
  }

  .cookie-bar a {
    color: #b8d4ff; /* link color */
    text-decoration: underline;
  }

  .cookie-buttons {
  display: flex;
  gap: 10px;
  margin-left: 20px;
}

/* Shared styles for both buttons */
.cookie-buttons button {
  padding: 8px 16px;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Reject button */
#reject-btn {
  background-color: #555;    /* dark gray */
  color: #fff;
}

#reject-btn:hover {
  background-color: #777;    /* slightly lighter on hover */
}

/* Accept button */
#accept-btn {
  background-color: #141e2d; /* green */
  color: #fff;
}

#accept-btn:hover {
  background-color: #141e2d ; /* slightly darker green on hover */
}


/* Responsive */
@media (max-width: 600px) {
  .profile-pic {
    width: 100px;
    height: 100px;
  }
  .links a {
    font-size: 14px;
  }
}
    

/* Cards layout */
.cards-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 600px;
  margin-bottom: 70px;
}

/* Card styling */
.card {
  background: #5a5555;
  border-radius: 30px;
  padding: 20px;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
       
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Title and description */
.card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
}

.card p {
  margin: 0;
  font-size: 16px;
  color: #ddd;
}

.info-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 14px;
  color: #ccc;
}

/* Card button */
.action-btn {
  width: 90%;
  background: #bcbcbc;
  border: none;
  border-radius: 30px;
  padding: 12px;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
  transition: transform 0.2s ease;
  margin: 0 auto;
}

.action-btn:hover {
  transform: scale(1.05);
}

/* MODAL STYLES */
.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: #fff;
  padding: 20px;
  width: 400px;
  border-radius: 15px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 28px;
  cursor: pointer;
}

/* Form elements */
form input, form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 14px;
}

textarea {
  resize: none;
  height: 70px;
}

.upload-btn {
  background: #000;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

/* Payment buttons */
.paypal-btn {
  background: #ffcc00;
  border: none;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
}

.later-btn {
  background: #0070ba;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
}

.link-btn {
  background: #25d366;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
}

/* -------------------------------
   Video Wrapper (your original)
--------------------------------*/
.video-wrapper {
  width: 100%;
  max-width: 900px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  background: #000;
  padding: 5px;
  border: 2px solid #444;
  position: relative; /* ✅ Needed for absolute positioning */
}

#player {
  width: 100%;
  height: 100%; /* ✅ Fill container height */
  border-radius: 20px;
  object-fit: cover; /* Optional: crop if needed */
}

/* -------------------------------
   Plyr Overrides
--------------------------------*/

/* ✅ Always pin controls at bottom */
.plyr__controls {
  position: absolute !important;
  bottom: 0 !important;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.6); /* semi-transparent bar */
  border-radius: 0 0 20px 20px;   /* match rounded video bottom */
  box-sizing: border-box;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  transition: none !important; /* stop sliding effect */
}

/* ✅ Progress bar inside bottom bar */
.plyr__controls .plyr__progress {
  flex: 1;
  margin: 0 10px;
}

/* ✅ Keep big play button centered */
.plyr__control--overlaid {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

/* ✅ Customize theme colors */
.plyr--full-ui input[type=range] {
  color: #ff9800; /* progress/volume color */
}

/* ✅ Prevent controls from fading out */
.plyr--full-ui.plyr--video .plyr__controls {
  opacity: 1 !important;
  visibility: visible !important;
}
.open-btn {
  background: #8e8e8e;
  border: none;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 18px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
}

.modal-content {
  background: white;
  width: 400px;
  margin: 50px auto;
  border-radius: 10px;
  overflow-y: auto;
  max-height: 90vh;
  position: relative;
}

.secure-bar {
  background: #f2f2f2;
  padding: 12px;
  text-align: center;
  color: #333;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
}

.close {
  position: absolute;
  right: 15px;
  top: 5px;
  font-size: 24px;
  cursor: pointer;
}

h2 {
  text-align: center;
  padding: 10px;
}

form {
  padding: 20px;
  text-align: left;
}

label {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: #444;
}

input, textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

textarea {
  resize: none;
  height: 70px;
}

.upload-btn,
.paypal-btn,
.later-btn,
.link-btn {
  width: 100%;
  padding: 10px;
  border: none;
  margin-top: 10px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.upload-btn { background: black; color: white; }
.paypal-btn { background: #FFC439; color: black; }
.later-btn { background: #0070ba; color: white; }
.link-btn { background: #30d158; color: white; }

.or-text {
  text-align: center;
  margin: 15px 0;
  font-size: 14px;
  color: #777;
}

.security-text {
  font-size: 12px;
  text-align: center;
  color: #777;
  margin-top: 10px;
}

.card-icons {
  text-align: center;
  margin-top: 10px;
}

.card-icons img {
  height: 28px;
  margin-right: 10px;
}




/* start popup code */




/* Popup Overlay */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

/* Popup Box */
.popup-box {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 90%;
  max-width: 450px;
  background: #131313;
  border-radius: 12px;
  padding: 25px;
  z-index: 1000;
  color: white;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  border: 1px solid #2a2a2a;
}

/* Show Animation */
.popup-show {
  display: block !important;
  opacity: 1 !important;
  transform: translate(-50%, -50%) scale(1) !important;
}

/* Close Button */
.popup-close {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
  color: #aaa;
}
.popup-close:hover { color: white; }

/* Inputs */
.popup-input, .file-upload-area input {
  width: 100%;
  margin-top: 12px;
  background: #1c1c1c;
  border: 1px solid #333;
  padding: 10px;
  color: white;
  border-radius: 6px;
}

.popup-input:focus {
  outline: none;
  border-color: #555;
}

/* Upload Area */
.file-upload-area label {
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}
.error-msg { color: red; font-size: 13px; }

/* Button */
.popup-btn {
  width: 100%;
  background: #00c853;
  border: none;
  color: black;
  padding: 12px;
  font-size: 16px;
  margin-top: 15px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}
.popup-btn:hover {
  background: #00e676;
}
/* Alert Message */
.popup-alert {
  display: none;
  background: #ff4d4d;
  color: white;
  padding: 10px 15px;
  border-radius: 6px;
  margin-bottom: 12px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
}


/* ✅ FULL RESPONSIVE FINAL FIX — All Devices */


/* ---------- Large Desktop / Wide Screens ---------- */
@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
    margin: auto;
  }
}


/* ---------- Normal Laptops / Desktops ---------- */
/* Default desktop code already correct — nothing to change */


  
/* ---------- Tablet & Medium Screens (769px – 1024px) ---------- */
@media (min-width: 769px) and (max-width: 1024px) {

  /* ✅ Move subscribe left but keep in top area */
  .profile-buttons .subscribe-btn {
    position: fixed !important;
    top: 12px !important;
    left: 15px !important;
    right: auto !important;
    z-index: 9999;
    padding: 8px 14px !important;
  }

  /* ✅ Share button on right */
  .profile-buttons .share-btn {
    position: fixed !important;
    top: 12px !important;
    right: 15px !important;
    left: auto !important;
    z-index: 9999;
  }

  /* ✅ Cookie bar center & sized nicely */
  .cookie-bar {
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 92% !important;
    justify-content: center !important;
    padding: 14px !important;
    text-align: center !important;
  }

  .cookie-buttons {
    gap: 12px !important;
    margin-left: 0 !important;
  }
}



/* ---------- Mobile Devices (0 – 768px) ---------- */
@media (max-width: 768px) {

  /* ✅ Mobile buttons top left & right */
  .profile-buttons .subscribe-btn {
    position: fixed !important;
    top: 10px !important;
    left: 10px !important;
    right: auto !important;
    z-index: 9999;
    padding: 7px 12px !important;
  }

  .profile-buttons .share-btn {
    position: fixed !important;
    top: 10px !important;
    right: 10px !important;
    left: auto !important;
    z-index: 9999;
    padding: 7px !important;
  }

  /* ✅ Space for buttons to avoid overlapping top */
  .profile {
    margin-top: 90px !important;
  }

  /* ✅ Cookie bar UI clean on mobile */
  .cookie-bar {
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 94% !important;
    flex-direction: column !important;
    text-align: center !important;
    gap: 10px !important;
    padding: 14px !important;
    border-radius: 16px !important;
    bottom: 12px !important;
  }

  .cookie-buttons {
    width: 100% !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-left: 0 !important;
  }

  .cookie-buttons button {
    width: 48% !important;
  }
}



/* ---------- Small Phones (0 – 480px) ---------- */
@media (max-width: 480px) {

  .profile-pic {
    width: 90px !important;
    height: 90px !important;
  }

  /* Buttons below stack 100% */
  .cookie-buttons button {
    width: 100% !important;
  }
}
/* ✅ Desktop & Laptop — cookie bar left but fully visible */
@media (min-width: 1025px) {
  .cookie-bar {
    left: 20px !important;          /* ⭐ Left space, NO center */
    transform: none !important;     /* ⭐ No translate center */
    bottom: 20px !important;        /* ⭐ Adjust if needed */
    width: auto !important;         /* ✅ Keep your width */
    max-width: none !important;     /* ✅ Prevent shrinking */
  }
}
/* ✅ OFFICIAL TOP BAR */
.official-topbar {
  width: 100%;
  background: #141e2d;
  padding: 12px 20px;
  text-align: center;
  border-radius: 15px;
   font-family: Arial, sans-serif; /* ✅ Arial font applied */
  position: sticky;
  top: 0;
  margin-top: 15px;
  z-index: 99999;
  border-bottom: 2px solid rgba(255,255,255,0.15);
}

.official-topbar p {
  font-size: 18px;
  font-weight: normal;
  color: #babdbf  ;
  margin: 0;
  font-family: Arial, sans-serif; /* ✅ Arial font applied */
  line-height: 1.4;
  letter-spacing: 0.3px;
}


/* ✅ LARGE LAPTOPS (1280px to 1920px) */
@media (max-width: 1920px) {
  .official-topbar p {
    font-size: 18px;
  }
}

/* ✅ STANDARD LAPTOPS / BIG TABLETS (1024px - 1280px) */
@media (max-width: 1280px) {
  .official-topbar p {
    font-size: 17px;
  }
}

/* ✅ TABLETS (768px - 1024px) */
@media (max-width: 1024px) {
  .official-topbar {
    padding: 12px 16px;
  }
  .official-topbar p {
    font-size: 16px;
  }
}

/* ✅ MEDIUM PHONES / SMALL TABLETS (600px - 768px) */
@media (max-width: 768px) {
  .official-topbar {
    padding: 10px 14px;
  }
  .official-topbar p {
    font-size: 15px;
  }
}

/* ✅ SMALL PHONES (480px - 600px) */
@media (max-width: 600px) {
  .official-topbar p {
    font-size: 14px;
  }
}

/* ✅ EXTRA SMALL PHONES (320px - 480px) */
@media (max-width: 480px) {
  .official-topbar p {
    font-size: 13px;
    line-height: 1.3;
  }
  .official-topbar {
    padding: 8px 10px;
  }
}

/* ✅ ULTRA SMALL (old phones 280px - 320px) */
@media (max-width: 320px) {
  .official-topbar p {
    font-size: 12px;
  }
}

.contact-btn {
  background: #141e2d;
  color: #babdbf;
   font-family: Arial, sans-serif; /* ✅ Arial font applied */
  margin-top: 10px;
  padding: 10px 18px;
  text-decoration: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  transition: 0.3s;
  white-space: nowrap;
}

.contact-btn:hover {
  opacity: 0.9;
}

/* Mobile responsive */
@media (max-width: 480px) {
  .contact-btn {
    padding: 10px 20px;
    font-size: 16px;
    width: 100%;
    text-align: center;
  }
}


