/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  background: #000;
  color: #fff;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 30px 15px;
}

/* Full blurred background */
.background {
  background: url("images/Picture.JPG") no-repeat center center;
  background-size: cover;
  filter: blur(22px) brightness(0.6);
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -1;
}

/* Card */
.card {
  background: linear-gradient(to bottom, #000000, #000000, #000000); /* red → black */
  border-radius: 20px;
  max-width: 1000px;   /* WIDE layout */
  width: 100%;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.65);
  text-align: center;
  position: relative;
}

/* Header */
.header {
  position: relative;
  padding-top: 50px; /* space for profile image at top */
}

.overlay-gradient { display: none; }

.profile-info {
  position: relative;
  bottom: auto;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  margin-bottom: 20px;
}

/* Profile image */
.profile-img {
  width: clamp(90px, 18vw, 350px);
  height: clamp(90px, 18vw, 350px);
  border-radius: 50%;
  border: 4px solid #fff;
  object-fit: cover;
}

/* Name */
.name {
  margin-top: 10px;
  font-size: clamp(18px, 3vw, 32px);
  font-weight: 600;
}
.name .verified { 
  color: #1d9bf0; 
  font-size: clamp(18px, 3vw, 32px); 
}

/* Username */
.username {
  font-size: clamp(14px, 2vw, 22px);
  color: #aaa;
  margin-top: 6px;
  display: block;
}

/* Social icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 25px 0 25px 0;
  flex-wrap: nowrap;
}

.social-icons a {
  flex: 1;
  max-width: 60px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: clamp(25px, 3vw, 30px);
  text-decoration: none;
  transition: transform 0.3s ease;
}
.social-icons a:hover { transform: scale(1.1); }

/* Icon colors */
.insta { background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.x { background: #000; }
.youtube { background: #ff0000; }
.telegram { background: #0088cc; }
.gift { background: #ff69b4; }
.bestfans { background: #a00050; }
.onlyfans { background: #0198f0; }
.onlyfans { background: #0793e4; }


/* Single Link Card */
.links-grid {
  display: block;
  padding: 0 20px 10px;
}
.link-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.45);
  margin: 20px auto;
  max-width: 900px;   /* max size for PC */
  width: 100%;        /* fills mobile width */
}
.link-card img {
  width: 100%;
  max-height: 600px;
  aspect-ratio: 3 / 2;   /* keeps ratio */
  object-fit: cover;
  display: block;
  border-radius: 14px;
}
.link-card p {
  position: absolute;
  bottom: 20px;
  left: 0; right: 0;
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0px 2px 6px rgba(0,0,0,0.9);
}

/* Footer */
.footer {
  font-size: 15px;
  color: #888;
  padding: 20px 0;
}
.footer a {
  color: #aaa;
  text-decoration: none;
  margin: 0 6px;
}
.footer a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 768px) {
  .card { max-width: 95%; }
  .profile-img { width: 110px; height: 110px; }
  .name { font-size: 22px; }
  .username { font-size: 14px; }

  /* FIXED gap */
  .social-icons { 
    margin: clamp(16px, 4vh, 30px) 0 20px 0; 
  }
  /* Link card stays proportional */
  .link-card { max-width: 100%; }
  .link-card img { max-height: none; }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: -150px;
  left: 0;
  right: 0;
  background: rgba(20, 20, 20, 0.95);
  color: #fff;
  padding: 15px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2000;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
  transition: bottom 0.5s ease-in-out;
}
.cookie-banner.show { bottom: 0; }
.cookie-banner p { margin: 0; flex: 1; }
.cookie-banner a { color: #1d9bf0; text-decoration: underline; }
.cookie-buttons {
  display: flex;
  gap: 10px;
  margin-left: 15px;
}
.cookie-buttons button {
  background: #1d9bf0;
  border: none;
  padding: 8px 14px;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 14px;
}
.cookie-buttons button:hover { background: #0d6efd; }
#reject-cookies { background: #444; }
#reject-cookies:hover { background: #666; }

/* Exclusive Links Fix */
.exclusive-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
}

.exclusive-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #000; /* black background */
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  transition: 0.3s ease;
}

.exclusive-links a i {
  font-size: 16px;
}

.exclusive-links a:hover {
  background-color: #ff69b4; /* pink hover */
  color: #fff;
}

