body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #001f3f;
  color: white;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #000;
}

.logo {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

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

.tagline {
  font-size: 1.3rem;
  margin-top: 10px;
}

.video-section {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 40px 0;
}

.video-player {
  width: 300px;
  max-width: 90%;
  border: 3px solid gold;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding: 40px;
}

.watch-card {
  background: #fff;
  color: #000;
  padding: 20px;
  border: 2px solid gold;
  border-radius: 12px;
  text-align: center;
  width: 200px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.watch-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

.gold-section {
  text-align: center;
  padding: 60px 20px;
}

.gold-section h2 {
  font-size: 2rem;
  color: gold;
  margin-bottom: 20px;
}

.gold-image {
  width: 250px;
  height: auto;
  margin: 20px auto;
  border: 2px solid gold;
  border-radius: 10px;
  display: block;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}
.gold-video {
  width: 300px;
  max-width: 100%;
  margin-top: 20px;
  border: 3px solid gold;
  border-radius: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.video-player {
  width: 300px;
  max-width: 100%;
  margin: 20px auto;
  display: block;
  border-radius: 10px;
  border: 2px solid gold;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
}

.gold-description {
  margin-top: 15px;
  font-size: 1rem;
  font-style: italic;
  color: #ddd;
}
.video-description {
  margin-top: 10px;
  font-size: 1rem;
  color: #ccc;
  font-style: italic;
  text-align: center;
}

.footer {
  background-color: #000;
  padding: 40px 20px;
  text-align: center;
  color: white;
}

.footer .socials a {
  color: gold;
  margin: 0 10px;
  text-decoration: none;
}

.footer .socials a:hover {
  text-decoration: underline;
}
/* ===== Mobile upgrade (drop in at end of file) ===== */

/* Base */
html,body{margin:0;padding:0}
body{font-family: system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial; color:#f7f8fb; background:#0b1220;}
img{max-width:100%; height:auto; display:block; border-radius:12px}

/* Layout helpers */
.container{max-width:1200px; margin:0 auto; padding:16px}
.section{padding:40px 0}

/* Navbar */
.navbar{position:sticky; top:0; z-index:10; background:rgba(11,18,32,.9); backdrop-filter: blur(8px); border-bottom:1px solid rgba(255,255,255,.08)}
.navbar .logo{height:42px}
.nav-links{display:flex; gap:14px; list-style:none; padding:0; margin:0}
.nav-links a{display:block; padding:10px 12px; border-radius:8px; color:#e8ecf8; text-decoration:none}
.nav-links a:hover{background:rgba(255,255,255,.08)}

/* Hero */
.hero{min-height:60vh; display:grid; place-items:center; text-align:center; background:linear-gradient(180deg,#0b1220,#0f1a2e)}
.hero h1{font-size:32px; margin:0 0 6px}
.tagline{color:#a7b0c2; max-width:720px; margin:0 auto}

/* Video */
.video-section{padding:0 16px}
.video-player{width:100%; max-width:900px; border-radius:14px; overflow:hidden}

/* Gallery cards */
.gallery{display:grid; gap:16px; padding:16px}
.watch-card{background:#101827; border:1px solid rgba(255,255,255,.08); border-radius:16px; padding:12px; box-shadow:0 10px 24px rgba(0,0,0,.25)}
.watch-card h3{margin:10px 0 8px; font-size:18px}
.watch-card p{color:#a7b0c2}

/* Gold section */
.gold-section{background:#0a0f1a; border-top:1px solid rgba(255,255,255,.08)}
.gold-image{width:100%; border-radius:16px}

/* Footer */
.footer{background:#0a0f1a; border-top:1px solid rgba(255,255,255,.08); padding:32px 16px}
.footer a{color:#b7c0d3}

/* Buttons */
.btn{display:inline-block; padding:12px 18px; border-radius:10px; border:1px solid rgba(255,255,255,.14); color:#111; background:linear-gradient(135deg,#d4af37,#f5e6a6); font-weight:600}

/* Responsive: tablet+ */
@media (min-width:768px){
  .hero h1{font-size:44px}
  .gallery{grid-template-columns:repeat(2,1fr)}
}
/* Responsive: desktop */
@media (min-width:1024px){
  .gallery{grid-template-columns:repeat(4,1fr)}
  .hero{min-height:72vh}
  /* ===== Luxury animated cards ===== */
:root{
  --gold1:#f4d481; --gold2:#d4af37; --ink:#0b1220; --panel:#0f1628;
}

.watch-card.fancy{
  position: relative;
  border-radius: 18px;
  background: var(--panel);
  padding: 14px;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(0,0,0,.35);
  transition: transform .25s ease, box-shadow .25s ease;
}

/* Animated gradient border */
.watch-card.fancy::before{
  content:"";
  position:absolute; inset:-2px;
  border-radius:20px;
  background: conic-gradient(from 0deg, var(--gold1), var(--gold2), var(--gold1));
  z-index:0;
  animation: spinBorder 6s linear infinite;
  filter: blur(0.3px);
}
.watch-card.fancy::after{
  content:"";
  position:absolute; inset:2px;
  border-radius:16px;
  background: var(--panel);
  z-index:1;
}

/* Content sits above the overlay */
.watch-card.fancy > *{ position:relative; z-index:2 }

/* Image */
.watch-card.fancy img{ width:100%; border-radius:12px }

/* Title with subtle gold glow */
.watch-card.fancy h3{
  margin:12px 0 6px;
  font-size:20px;
  line-height:1.25;
  text-shadow: 0 0 14px rgba(212,175,55,.35);
}

/* Body copy */
.watch-card.fancy p{ color:#b8c2d6; }

/* CTA button */
.btn.gold{
  display:inline-block; margin-top:10px;
  padding:12px 16px; border-radius:12px;
  background: linear-gradient(135deg, var(--gold1), var(--gold2));
  color:#111; font-weight:700; text-decoration:none;
  box-shadow: 0 10px 20px rgba(212,175,55,.35);
}

/* Hover / tap feel */
.watch-card.fancy:hover{ transform: translateY(-4px); box-shadow:0 18px 34px rgba(0,0,0,.45) }

/* Animated gold underlines for links with .link-gold */
.link-gold{ position:relative; text-decoration:none; color:#e8ecf8 }
.link-gold::after{
  content:""; position:absolute; left:0; bottom:-2px; height:2px; width:100%;
  background: linear-gradient(90deg,var(--gold1),var(--gold2));
  transform:scaleX(0); transform-origin:left; transition:transform .25s ease;
}
.link-gold:hover::after{ transform:scaleX(1) }

/* Border animation */
@keyframes spinBorder { 
    to { transform: rotate(360deg); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .watch-card.fancy::before { animation:none }
  .watch-card.fancy, .watch-card.fancy:hover{ transform:none }
}
