@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&family=Chewy&family=Righteous&family=Lilita+One&display=swap");

/* CSS Variables */
:root {
  --orange: #eac337;
  --orange-light: #ffd641;
  --orange-dark: #c9a00b;
  --orange-base: #e9c644;
  --black: #1a1a1a;
  --white: #ffffff;
  --dark-bg: #0f0f0f;
  --darker-bg: #0a0a0a;
  --gray: #333333;
  --gray-light: #666666;
  --font-main: "Nunito Sans", "Comic Neue", "Futura", "Inter", "Helvetica Neue",
    Arial, sans-serif;
  --font-main: "Baloo 2", "Chewy", "Righteous", "Lilita One", cursive,
    sans-serif;
  --gradient-primary: linear-gradient(135deg, #eac337 0%, #eac337 100%);
  --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  --gradient-bitcoin: linear-gradient(
    135deg,
    #eac337 0%,
    #eac337 50%,
    #eac337 100%
  );
  /* --gradient-orange: linear-gradient(
    135deg,
    #ff7200 0%,
    #ff6b35 50%,
    #e55a2b 100%
  ); */
  --gradient-orange: 0 0 30px rgba(237, 248, 84, 0.3);
  --shadow-glow: 0 0 30px rgba(237, 248, 84, 0.3);
  --shadow-strong: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Nunito Sans", "Comic Neue", "Futura", "Inter", "Helvetica Neue",
    Arial, sans-serif !important;
}

body {
  font-family: "Comic Neue", "Fredoka One", "Bungee", cursive, sans-serif !important;
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Force Futura font on all elements */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
button,
input,
textarea,
select {
  font-family: "Baloo 2", "Chewy", "Righteous", "Lilita One", cursive,
    sans-serif !important;
}

/* Specific targeting for headlines */
.section h2,
.hero-content h1,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Baloo 2", "Chewy", "Righteous", "Lilita One", cursive,
    sans-serif !important;
  font-weight: 700 !important;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  /* background: var(--gradient-orange); */
  z-index: 1000;
  padding: 1rem 0;
  /* box-shadow: 0 4px 20px rgba(89, 23, 23, 0.3); */
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

/* === Default (on hero): transparent === */
.navbar {
  background: rgba(0, 0, 0, 0); /* subtle transparency */
}

/* === After scroll: solid color === */
.navbar.scrolled {
  background: rgba(15, 15, 25, 0.9);
  backdrop-filter: blur(12px);
}

.nav-container {
  width: 100%;
  max-width: none;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.logo-img {
  height: 40px;
  width: auto;
}

.nav-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-size: 1.1rem;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-menu a:hover {
  color: var(--black);
  background: rgba(251, 225, 55, 0.989);
}

.buy-btn {
  background: var(--black);
  color: var(--orange);
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--orange);
  font-size: 1.1rem;
  font-family: "Baloo 2", "Chewy", "Righteous", "Lilita One", cursive,
    sans-serif !important;
}

.buy-btn:hover {
  background: var(--orange);
  color: var(--black);
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--white);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  background: url("background1.png") center/cover no-repeat;
  padding: 120px 2rem 80px;
  position: relative;
  overflow: hidden;
  padding-left: 6%;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 50% 50%,
      rgba(42, 40, 39, 0.1) 0%,
      transparent 70%
    ),
    rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.head-line-1 {
  font-size: 120%;
  display: block;
  color: var(--white);
  text-align: center;
  margin-bottom: -2%;
}

.hero-logo {
  height: 250px;
  width: auto;
  filter: drop-shadow(0 0 40px rgba(255, 245, 53, 0.6));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero-content p.desc {
  color: var(--white);
  margin-bottom: 2rem;
  font-weight: 10 !important;
  margin-top: 5%;
}

.hero-content p {
  font-size: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
  font-family: "Baloo 2", "Chewy", "Righteous", "Lilita One", cursive,
    sans-serif !important;
  font-weight: 600 !important;
}

.hero-actions {
  margin-top: 3rem;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.hero-address {
  margin: 0;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.2rem;
  font-family: "Baloo 2", "Chewy", "Righteous", "Lilita One", cursive,
    sans-serif !important;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.community-btn {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-glow);
}

.treasury-btn {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 2px solid var(--orange);
  backdrop-filter: blur(10px);
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 218, 53, 0.4);
}

.hero-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.hero-btn:hover::before {
  left: 100%;
}

/* Ticker Animation */
.ticker-container {
  background: var(--gradient-primary);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.ticker-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(245, 211, 0, 0.9) 0%,
    rgba(245, 211, 0, 0.9) 50%,
    rgba(245, 211, 0, 0.9) 100%
  );
  z-index: 1;
}

.ticker {
  display: inline-block;
  animation: scroll 45s linear infinite;
  position: relative;
  z-index: 2;
}

.ticker-text span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
}

.ticker-brand span {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--black);
}

.ticker-logo {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.ticker-logo img {
  height: 40px;
  width: auto;
}

.ticker-text img,
.ticker-brand img {
  height: 24px;
  width: auto;
  vertical-align: middle;
  margin: 0 0.5rem;
}

@keyframes scroll {
  0% {
    transform: translateX(100vw);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Sections */
.section {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.section:nth-child(odd) {
  background: linear-gradient(
    135deg,
    #eded33 0%,
    #ff6b35 5%,
    #1a1a1a 15%,
    #0f0f0f 100%
  );
}

.section:nth-child(even) {
  background: linear-gradient(
    45deg,
    #eded33 0%,
    #ff6b35 10%,
    #e55a2b 20%,
    #eded33 40%,
    #eded33 100%
  );
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(255, 107, 53, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(229, 90, 43, 0.1) 0%,
      transparent 60%
    ),
    linear-gradient(
      45deg,
      transparent 30%,
      rgba(255, 107, 53, 0.03) 50%,
      transparent 70%
    ),
    rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.section .container {
  position: relative;
  z-index: 2;
}

#pfp {
  background: url("background3.png") center/cover no-repeat,
    linear-gradient(135deg, #eded33 0%, #5c5d55 8%, #1a1a1a 25%, #0f0f0f 100%);
}

#socials {
  background: url("background6.png") center/cover no-repeat,
    linear-gradient(135deg, #eded33 0%, #666564 5%, #1a1a1a 15%, #0f0f0f 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 2rem;
  background: rgba(0, 0, 0, 0.8);
  padding: 1.5rem 2rem;
  border-radius: 16px;
  border: 2px solid var(--orange);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.section h2::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-primary);
  border-radius: 18px;
  z-index: -1;
}

.text-content p,
.section-content-vertical p {
  background: var(--gradient-orange);
  padding: 1.5rem;
  border-radius: 12px;
  border: 2px dashed var(--white);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  color: var(--white);
  font-family: "Baloo 2", "Chewy", "Righteous", "Lilita One", cursive,
    sans-serif !important;
  font-weight: 600 !important;
  font-size: 1.2rem;
}

.text-content ul {
  background: var(--gradient-orange);
  padding: 1.5rem;
  border-radius: 12px;
  border: 2px dashed var(--white);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
  position: relative;
  color: var(--white);
}

.social-intro {
  background: var(--gradient-orange);
  padding: 1.5rem;
  border-radius: 12px;
  border: 2px dashed var(--white);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(255, 114, 0, 0.4);
  margin-bottom: 2rem;
  color: var(--white);
  text-align: center;
}

.social-intro p {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  font-family: "Baloo 2", "Chewy", "Righteous", "Lilita One", cursive,
    sans-serif !important;
  font-weight: 600 !important;
  font-size: 1.2rem;
}

.section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.section-content-vertical {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: left;
}

.featured-image {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.section-image-featured {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
  border: 3px solid var(--orange);
  transition: all 0.3s ease;
}

.section-image-featured:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 80px rgba(255, 107, 53, 0.4);
}

.text-content {
  font-size: 1.1rem;
  line-height: 1.8;
}

.text-content p {
  margin-bottom: 1.5rem;
}

.text-content ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.text-content li {
  margin-bottom: 0.8rem;
}

.section-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-strong);
  border: 2px solid rgba(255, 228, 53, 0.3);
  transition: all 0.3s ease;
}

.section-image:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-glow);
}

/* PFP Studio */
.pfp-studio {
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed var(--white);
  border-radius: 16px;
  padding: 2rem;
  margin-top: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.upload-zone {
  text-align: center;
  margin-bottom: 2rem;
}

.upload-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(
    135deg,
    rgba(255, 245, 53, 0.1) 0%,
    rgba(226, 229, 43, 0.1) 100%
  );
  border: 2px dashed var(--orange);
  border-radius: 16px;
  padding: 1rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  max-width: 400px;
  margin: 0 auto;
}

.upload-card:hover {
  background: linear-gradient(
    135deg,
    rgba(176, 169, 38, 0.1) 0%,
    rgba(172, 174, 33, 0.1) 100%
  );
  border-color: var(--orange-light);
  transform: translateY(-2px);
}

.upload-title {
  font-size: 1.2rem;
  font-weight: 600;
  font-family: "Fredoka One", "Lilita One", "Bungee", "Righteous", cursive,
    sans-serif !important;
  color: var(--orange);
}

.upload-subtitle {
  color: var(--white);
  font-size: 0.9rem;
}

.editor-workspace {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.canvas-studio {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.canvas-frame {
  position: relative;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid var(--orange);
  box-shadow: var(--shadow-strong);
  margin: 0 auto;
}

.canvas-label {
  font-weight: 600;
  color: var(--orange);
  text-align: center;
  font-size: 1.1rem;
}

#pfpCanvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hat-overlay {
  position: absolute;
  top: 100px;
  left: 200px;
  width: 200px;
  height: auto;
  pointer-events: none;
  transform: translate(-50%, -50%);
  display: none;
}

.control-panel {
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 107, 53, 0.3);
}

.panel-header h4 {
  margin: 0;
  color: var(--orange);
  font-size: 1.2rem;
}

.control-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.control-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.control-item label {
  font-weight: 600;
  color: var(--orange);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.slider-container {
  position: relative;
}

.custom-slider {
  width: 100%;
  height: 8px;
  background: linear-gradient(
    to right,
    var(--gray-light) 0%,
    var(--gray-light) 100%
  );
  outline: none;
  border-radius: 4px;
  appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-slider::-webkit-slider-thumb {
  appearance: none;
  width: 24px;
  height: 24px;
  background: var(--gradient-primary);
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(230, 255, 1, 0.5);
  transition: all 0.3s ease;
}

.custom-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: var(--shadow-glow);
}

.slider-value {
  position: absolute;
  top: -30px;
  right: 0;
  background: var(--orange);
  color: var(--black);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.download-button {
  width: 100%;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  padding: 1rem;
  border-radius: 12px;
  font-weight: 600;
  font-family: "Baloo 2", "Chewy", "Righteous", "Lilita One", cursive,
    sans-serif !important;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

.download-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

.download-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.download-button:hover::before {
  left: 100%;
}

/* Token Address */
.token-address {
  /* margin: 2rem 0; */
}

.address-input {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 2px solid #eac337;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.address-input input {
  flex: 1;
  padding: 1rem;
  border: none;
  background: transparent;
  color: var(--white);
  font-family: "Baloo 2", "Chewy", "Righteous", "Lilita One", cursive,
    sans-serif !important;
  font-size: 1rem;
  outline: none;
}

.copy-btn {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  padding: 1rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-family: "Baloo 2", "Chewy", "Righteous", "Lilita One", cursive,
    sans-serif !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-size: 1rem;
}

.copy-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.copy-btn:hover {
  transform: translateY(-2px);
}

.copy-btn:hover::before {
  left: 100%;
}

.btn-icon {
  width: 20px;
  height: 20px;
}

/* Social Boxes */
.social-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.social-box {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 107, 53, 0.05) 100%
  );
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  border: 2px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-strong);
  position: relative;
  overflow: hidden;
}

.social-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 107, 53, 0.03) 50%,
    transparent 70%
  );
  z-index: 1;
}

.social-box > * {
  position: relative;
  z-index: 2;
}

.social-box:hover {
  border-color: var(--orange-light);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.social-box h3 {
  color: var(--orange);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.social-box p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
  font-size: 1.2rem;
  font-weight: 600;
}

.social-btn {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-family: "Baloo 2", "Chewy", "Righteous", "Lilita One", cursive,
    sans-serif !important;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
  font-size: 1.2rem;
}

.social-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

.social-btn:hover::before {
  left: 100%;
}

/* Footer */
.footer {
  background: var(--gradient-dark);
  border-top: 3px solid transparent;
  border-image: var(--gradient-primary) 1;
  padding: 2rem 0;
  text-align: center;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(255, 107, 53, 0.1) 0%,
    transparent 50%
  );
  z-index: 1;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.footer-logo {
  height: 40px;
  width: auto;
}

.footer p {
  opacity: 0.8;
}

.disclaimer {
  font-size: 0.9rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    padding: 100px 1rem 60px;
  }

  .hero-actions {
    margin-bottom: 3rem;
  }
  
  .hero-content {
  max-width: 430px !important;
  padding-right: 1px !important;
  }
  
  .address-input {
  max-width: 350px !important;
}

.address-input input {
  padding: 0 !important;
}

  .hero-logo {
    height: 180px;
  }

  .hero-content h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: var(--gradient-dark);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--shadow-strong);
    padding: 2rem 0;
    backdrop-filter: blur(20px);
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .section-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-image-featured {
    max-width: 100%;
  }

  .editor-workspace {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .canvas-frame {
    width: 100%;
    max-width: 350px;
    height: 350px;
  }

  .social-boxes {
    grid-template-columns: 1fr;
  }

  .ticker-text span {
    font-size: 1.2rem;
  }

  .ticker-brand span {
    font-size: 1rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animations */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.8s ease-out forwards;
}

.animate-in:nth-child(1) {
  animation-delay: 0.1s;
}
.animate-in:nth-child(2) {
  animation-delay: 0.2s;
}
.animate-in:nth-child(3) {
  animation-delay: 0.3s;
}
.animate-in:nth-child(4) {
  animation-delay: 0.4s;
}
.animate-in:nth-child(5) {
  animation-delay: 0.5s;
}
.animate-in:nth-child(6) {
  animation-delay: 0.6s;
}
.animate-in:nth-child(7) {
  animation-delay: 0.7s;
}
.animate-in:nth-child(8) {
  animation-delay: 0.8s;
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
