/* ========================================
   MOBILE-FIRST RESPONSIVE DESIGN
   Base styles: Mobile (320px+)
   Progressive enhancement with min-width queries
======================================== */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
}

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

/* ===== HERO SECTION - MOBILE FIRST ===== */
.hero {
  height: 95vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #474747 0%, #0e0c0c 30%);
  overflow: hidden;
  min-height: 500px;
}

.hero-birds {
  position: absolute;
  top: 1px;
  z-index: 11;
  opacity: 0;
  transition: all 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-birds.slide-in {
  left: 1px;
  opacity: 1;
}

.hero-birds.slide-out {
  left: -220px;
  opacity: 0;
}

.birds-image {
  width: 180px;
  height: auto;
  object-fit: contain;
  max-width: 90vw;
}

.hero-bird-corner {
  position: absolute;
  top: 10px;
  right: -200px;
  z-index: 12;
  opacity: 0;
  transition: all 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-bird-corner.slide-in {
  right: 5px;
  opacity: 1;
}

.hero-bird-corner.slide-out {
  right: -200px;
  opacity: 0;
}

.bird-corner-image {
  width: 200px;
  height: auto;
  object-fit: contain;
  max-width: 90vw;
}

.hero-logo {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 10;
  opacity: 0;
  transition: all 1.2s ease-out;
}

.hero-logo.appear {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.logo-white {
  width: 250px;
  height: auto;
  object-fit: contain;
  max-width: 85vw;
}

.hero-tiles {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.tiles-image {
  width: 100%;
  height: 100px;
  display: block;
  object-fit: cover;
  min-height: 60px;
}

/* ===== HERO ORDER BUTTON - MOBILE ===== */
.hero-order-button {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
}

.order-now-button {
  display: inline-block;
  padding: 12px 25px;
  background: #fcfcfc;
  color: #000000;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.order-now-button:hover {
  background: #e02b00;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 48, 8, 0.5);
}

/* ===== SCROLL ANIMATIONS ===== */
/* Progressive enhancement: show by default, hide only when JS is enabled */
.scroll-animate {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.8s ease;
}

/* Only hide when JavaScript is available */
.js-enabled .scroll-animate {
  opacity: 0;
  transform: translateX(-50px);
}

.js-enabled .scroll-animate.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== SECTION STYLING - MOBILE ===== */
section {
  padding: 50px 0;
  position: relative;
}

.section-title {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 30px;
  color: #d4af37;
  font-weight: 700;
}

/* ===== MENU SECTION - MOBILE ===== */
.menu-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.menu-category {
  margin-bottom: 40px;
}

.category-title {
  font-size: 1.4rem;
  color: #d4af37;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 30px;
}

.menu-item {
  background: rgba(26, 26, 26, 0.8);
  border-radius: 15px;
  padding: 18px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.menu-item:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.menu-item.special {
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.1) 0%,
    rgba(26, 26, 26, 0.8) 50%
  );
  border-color: rgba(212, 175, 55, 0.4);
}

.menu-item-content h4 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.menu-item-content p {
  color: #cccccc;
  margin-bottom: 12px;
  font-size: 0.8rem;
}

.price {
  font-size: 1rem;
  color: #d4af37;
  font-weight: 600;
}

.menu-order-button {
  display: block;
  width: 100%;
  max-width: 250px;
  margin: 20px auto 0;
  padding: 12px 25px;
  background: #ff3008;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

.menu-order-button:hover {
  background: #e02b00;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 48, 8, 0.3);
}

/* ===== ABOUT SECTION - MOBILE ===== */
.about-section {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.about-content {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.about-text {
  font-size: 0.9rem;
  color: #cccccc;
  margin-bottom: 25px;
  line-height: 1.5;
}

.doordash-integration {
  margin-top: 35px;
  padding: 20px;
  background: rgba(26, 26, 26, 0.6);
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.doordash-integration h3 {
  font-size: 1.4rem;
  color: #d4af37;
  margin-bottom: 12px;
}

.doordash-integration p {
  color: #cccccc;
  margin-bottom: 20px;
  font-size: 0.85rem;
}

.doordash-button {
  display: inline-block;
  padding: 8px 18px;
  background: #ff3008;
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.8rem;
}

.doordash-button:hover {
  background: #e02b00;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 48, 8, 0.3);
}

/* ===== ORDER SECTION - MOBILE ===== */
.order-section {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  padding: 50px 0;
  text-align: center;
}

/* ===== GALLERY SECTION - MOBILE ===== */
.gallery-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  padding: 50px 0;
}

.gallery-subtitle {
  text-align: center;
  font-size: 0.9rem;
  color: #cccccc;
  margin-bottom: 40px;
  font-style: italic;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background: rgba(26, 26, 26, 0.8);
  border: 2px solid rgba(212, 175, 55, 0.2);
  transition: all 0.4s ease;
  width: 100%;
  height: 250px;
}

.gallery-item:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.gallery-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  color: #ffffff;
  padding: 20px 15px 15px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h4 {
  font-size: 1.2rem;
  color: #d4af37;
  margin-bottom: 6px;
  font-weight: 600;
}

.gallery-overlay p {
  font-size: 0.8rem;
  color: #cccccc;
  line-height: 1.3;
}

/* ===== CONTACT SECTION - MOBILE ===== */
.contact-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  max-width: 100%;
  margin: 0 auto;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  text-align: center;
  padding: 10px;
  background: transparent;
}

.contact-item h4 {
  font-size: 1.2rem;
  color: #d4af37;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-item p {
  color: #ffffff;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ===== GOOGLE MAPS - MOBILE ===== */
.google-maps {
  margin: 20px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.google-maps iframe {
  width: 100%;
  height: 250px;
  border: none;
  filter: invert(90%) hue-rotate(180deg) saturate(0.8) brightness(0.9);
}

/* ===== BOTTOM NAVIGATION - MOBILE ===== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  justify-content: center;
  padding: 12px 0;
  z-index: 15000;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #999999;
  margin: 0 8px;
  transition: all 0.3s ease;
  font-size: 0.6rem;
}

.nav-item svg {
  width: 16px;
  height: 16px;
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
  color: #d4af37;
  transform: translateY(-2px);
}

.nav-item:hover svg,
.nav-item.active svg {
  color: #d4af37;
  transform: scale(1.1);
}

/* ========================================
   RESPONSIVE DESIGN - DEVICE-SPECIFIC QUERIES
   Targeting exact device sizes and resolutions
======================================== */

/* ===== MOBILE XS (iPhone SE - 375px) ===== */
@media (min-width: 375px) {
  .container {
    padding: 0 18px;
  }

  .hero-birds {
    top: 1px;
    left: -11px;
  }

  .hero-birds.slide-in {
    left: 1px;
  }

  .hero-bird-corner {
    top: 12px;
  }

  .hero-bird-corner.slide-in {
    right: 1px;
  }

  .birds-image {
    width: 180px;

  }

  .bird-corner-image {
    width: 180px;
  }

  .logo-white {
    width: 280px;
  }
}

/* ===== MOBILE M (iPhone 14 - 390px) ===== */
@media (min-width: 390px) {
  .hero-birds {
    top: 1px;
  }

  .hero-birds.slide-in {
    left: 1px;
  }

  .hero-bird-corner {
    top: 1px;
  }

  .hero-bird-corner.slide-in {
    right: 1px;
  }

  .birds-image {
    width: 190px;
  }

  .bird-corner-image {
    width: 200px;
  }

  .logo-white {
    width: 300px;
  }
}

/* ===== MOBILE L (Galaxy S22 - 412px) ===== */
@media (min-width: 412px) {
  .container {
    padding: 0 20px;
  }

  .section-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .category-title {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }

  /* Hero Section */
  .hero {
    min-height: 550px;
  }

  .hero-birds {
    top: 1px;
  }

  .hero-birds.slide-in {
    left: 1px;
  }

  .hero-birds.slide-out {
    left: -280px;
  }

  .birds-image {
    width: 200px;
  }

  .hero-bird-corner {
    top: 1px;
  }

  .hero-bird-corner.slide-in {
    right: 1px;
  }

  .hero-bird-corner.slide-out {
    right: -300px;
  }

  .bird-corner-image {
    width: 200px;
  }

  .hero-logo {
    top: 38%;
  }

  .logo-white {
    width: 320px;
  }

  .tiles-image {
    height: 140px;
  }

  .order-now-button {
    padding: 12px 30px;
    font-size: 1rem;
  }

  /* Content Sections */
  section {
    padding: 60px 0;
  }

  .menu-item {
    padding: 20px;
  }

  .menu-item-content h4 {
    font-size: 1.25rem;
  }

  .menu-item-content p {
    font-size: 0.85rem;
  }

  .price {
    font-size: 1.05rem;
  }

  .about-text {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .doordash-integration {
    padding: 25px;
    margin-top: 40px;
  }

  .doordash-integration h3 {
    font-size: 1.5rem;
  }

  .gallery-overlay {
    padding: 25px 20px 20px;
  }

  .gallery-overlay h4 {
    font-size: 1.3rem;
  }

  .gallery-overlay p {
    font-size: 0.85rem;
  }

  /* Navigation */
  .nav-item {
    margin: 0 12px;
    font-size: 0.65rem;
  }

  .nav-item svg {
    width: 18px;
    height: 18px;
  }
}

/* ===== TABLET (iPad Air Portrait - 768px) ===== */
@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    max-width: 768px;
    padding: 0 25px;
  }

  .section-title {
    font-size: 2.5rem;
    margin-bottom: 45px;
  }

  .category-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  /* Hero Section */
  .hero {
    min-height: 600px;
  }

  .hero-birds {
    top: 1px;
  }

  .hero-birds.slide-in {
    left: 1px;
  }

  .hero-birds.slide-out {
    left: -350px;
  }

  .birds-image {
    width: 350px;
  }

  .hero-bird-corner {
    top: 1px;
  }

  .hero-bird-corner.slide-in {
    right: 1px;
  }

  .hero-bird-corner.slide-out {
    right: -400px;
  }

  .bird-corner-image {
    width: 400px;
  }

  .hero-logo {
    top: 45%;
  }

  .logo-white {
    width: 450px;
  }

  .tiles-image {
    height: 180px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

/* ===== TABLET PRO (iPad Pro Landscape - 1024px) ===== */
@media (min-width: 1024px) and (max-width: 1365px) {
  .container {
    max-width: 1024px;
    padding: 0 30px;
  }

  .section-title {
    font-size: 2.8rem;
    margin-bottom: 50px;
  }

  .category-title {
    font-size: 2rem;
    margin-bottom: 35px;
  }

  /* Hero Section */
  .hero {
    min-height: 550px;
  }

  .hero-birds {
    top: 1px;
  }

  .hero-birds.slide-in {
    left: 1px;
  }

  .hero-birds.slide-out {
    left: -450px;
  }

  .birds-image {
    width: 420px;
  }

  .hero-bird-corner {
    top: 1px;
  }

  .hero-bird-corner.slide-in {
    right: 1px;
  }

  .hero-bird-corner.slide-out {
    right: -480px;
  }

  .bird-corner-image {
    width: 450px;
  }

  .hero-logo {
    top: 40%;
  }

  .logo-white {
    width: 500px;
  }

  .tiles-image {
    height: 250px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

/* ===== LAPTOP M (1366px Standard) ===== */
@media (min-width: 1366px) and (max-width: 1439px) {
  .container {
    max-width: 1366px;
    padding: 0 35px;
  }

  .section-title {
    font-size: 3.2rem;
    margin-bottom: 55px;
  }

  /* Hero Section */
  .hero {
    min-height: 700px;
  }

  .hero-birds {
    top: 1px;
  }

  .hero-birds.slide-in {
    left: 1px;
  }

  .hero-birds.slide-out {
    left: -500px;
  }

  .birds-image {
    width: 480px;
  }

  .hero-bird-corner {
    top: 1px;
  }

  .hero-bird-corner.slide-in {
    right: 1px;
  }

  .hero-bird-corner.slide-out {
    right: -520px;
  }

  .bird-corner-image {
    width: 500px;
  }

  .hero-logo {
    top: 30%;
  }

  .logo-white {
    width: 550px;
  }

  .tiles-image {
    height: 280px;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
}

/* ===== LAPTOP S (MacBook 13" - 1440px) ===== */
@media (min-width: 1440px) and (max-width: 1919px) {
  .container {
    max-width: 1440px;
    padding: 0 40px;
  }

  .section-title {
    font-size: 3.5rem;
    margin-bottom: 60px;
  }

  /* Hero Section */
  .hero {
    min-height: 750px;
  }

  .hero-birds {
    top: 1px;
  }

  .hero-birds.slide-in {
    left: 1px;
  }

  .hero-birds.slide-out {
    left: -550px;
  }

  .birds-image {
    width: 520px;
  }

  .hero-bird-corner {
    top: 1px;
  }

  .hero-bird-corner.slide-in {
    right: 1px;
  }

  .hero-bird-corner.slide-out {
    right: -560px;
  }

  .bird-corner-image {
    width: 540px;
  }

  .hero-logo {
    top: 28%;
  }

  .logo-white {
    width: 600px;
  }

  .tiles-image {
    height: 320px;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
  }
}

/* ===== DESKTOP HD (1920x1080) ===== */
@media (min-width: 1920px) and (max-width: 2559px) {
  .container {
    max-width: 1920px;
    padding: 0 50px;
  }

  .section-title {
    font-size: 4rem;
    margin-bottom: 70px;
  }

  /* Hero Section */
  .hero {
    min-height: 800px;
  }

  .hero-birds {
    top: 1px;
  }

  .hero-birds.slide-in {
    left: 1px;
  }

  .hero-birds.slide-out {
    left: -650px;
  }

  .birds-image {
    width: 600px;
  }

  .hero-bird-corner {
    top: 1px;
  }

  .hero-bird-corner.slide-in {
    right: 1px;
  }

  .hero-bird-corner.slide-out {
    right: -650px;
  }

  .bird-corner-image {
    width: 620px;
  }

  .hero-logo {
    top: 25%;
  }

  .logo-white {
    width: 700px;
  }

  .tiles-image {
    height: 400px;
  }

  .gallery-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
  }

  section {
    padding: 100px 0;
  }
}

/* ===== DESKTOP WQHD (2560x1440) ===== */
@media (min-width: 2560px) and (max-width: 3839px) {
  .container {
    max-width: 2560px;
    padding: 0 60px;
  }

  .section-title {
    font-size: 4.5rem;
    margin-bottom: 80px;
  }

  /* Hero Section */
  .hero {
    min-height: 900px;
  }

  .hero-birds {
    top: 1px;
  }

  .hero-birds.slide-in {
    left: 1px;
  }

  .hero-birds.slide-out {
    left: -800px;
  }

  .birds-image {
    width: 750px;
  }

  .hero-bird-corner {
    top: 1px;
  }

  .hero-bird-corner.slide-in {
    right: 1px;
  }

  .hero-bird-corner.slide-out {
    right: -800px;
  }

  .bird-corner-image {
    width: 770px;
  }

  .hero-logo {
    top: 22%;
  }

  .logo-white {
    width: 800px;
  }

  .tiles-image {
    height: 500px;
  }

  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 45px;
  }

  section {
    padding: 120px 0;
  }
}

/* ===== DESKTOP UHD/4K (3840x2160) ===== */
@media (min-width: 3840px) {
  .container {
    max-width: 3840px;
    padding: 0 80px;
  }

  .section-title {
    font-size: 6rem;
    margin-bottom: 100px;
  }

  /* Hero Section */
  .hero {
    min-height: 1200px;
  }

  .hero-birds {
    top: 1px;
  }

  .hero-birds.slide-in {
    left: 1px;
  }

  .hero-birds.slide-out {
    left: -1200px;
  }

  .birds-image {
    width: 1100px;
  }

  .hero-bird-corner {
    top: 1px;
  }

  .hero-bird-corner.slide-in {
    right: 1px;
  }

  .hero-bird-corner.slide-out {
    right: -1200px;
  }

  .bird-corner-image {
    width: 1150px;
  }

  .hero-logo {
    top: 20%;
  }

  .logo-white {
    width: 1200px;
  }

  .tiles-image {
    height: 700px;
  }

  .gallery-grid {
    grid-template-columns: repeat(8, 1fr);
    gap: 60px;
  }

  section {
    padding: 150px 0;
  }

  .menu-grid {
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 50px;
  }
}

/* ===== iPad Pro Portrait (1024x1366) ===== */
@media (min-width: 1024px) and (max-width: 1366px) and (orientation: portrait) {
  .container {
    max-width: 1024px;
    padding: 0 40px;
  }

  .hero-birds {
    top: 40px;
  }

  .hero-birds.slide-in {
    left: 1px;
  }

  .hero-bird-corner {
    top: 1px;
  }

  .hero-bird-corner.slide-in {
    right: 1px;
  }

  .birds-image {
    width: 450px;
  }

  .bird-corner-image {
    width: 470px;
  }

  .logo-white {
    width: 520px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
}

/* ===== ACCESSIBILITY & PERFORMANCE ===== */
@media (prefers-contrast: high) {
  .hero-overlay {
    background: rgba(0, 0, 0, 0.7);
  }

  .menu-item {
    border-color: rgba(253, 253, 253, 0.8);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ===== LANDSCAPE ORIENTATION ADJUSTMENTS ===== */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    height: 100vh;
    min-height: 400px;
  }

  .hero-birds {
    top: 15%;
  }

  .hero-logo {
    top: 45%;
  }

  .tiles-image {
    height: 60px;
  }

  section {
    padding: 40px 0;
  }

  .section-title {
    margin-bottom: 30px;
  }
}

/* ===== HIGH RESOLUTION DISPLAYS ===== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .birds-image,
  .bird-corner-image,
  .logo-white,
  .tiles-image {
    image-rendering: -webkit-optimize-contrast;
  }
}
