:root {
  --primary-green: #ffff00;
  --dark-black: #000000;
  --white: #ffffff;
}

/* Reset and General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--primary-green);
  font-family: Arial, sans-serif;
  padding-top: 60px; /* Header height compensation */
}

/* Header Styles */
header {
  background-color: var(--primary-green);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-links a {
  color: var(--dark-black);
  text-decoration: none;
  margin-right: 20px;
  font-weight: bold;
  transition: opacity 0.3s;
}

.nav-links a:hover {
  opacity: 0.8;
}

.social-links a {
  color: var(--dark-black);
  margin-left: 15px;
  font-size: 1.2rem;
  transition: opacity 0.3s;
}

.social-links a:hover {
  opacity: 0.8;
}

/* Hero Section */
.hero-section {
  padding: 60px 0;
}

.logo-container {
  margin-bottom: 40px;
}

.main-logo {
  width: 300px;
  margin-bottom: 20px;
}

h1 {
  color: var(--dark-black);
  font-family: "Times New Roman", serif;
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

p {
  font-family: "Times New Roman", serif;
  color: var(--dark-black);
  font-weight: bold;
}

.launched-text {
  color: var(--dark-black);
  font-size: 1rem;
}

/* Contract Address Bar */
.contract-address {
  background: var(--white);
  padding: 15px;
  border: 4px solid black;
  border-radius: 8px;
  margin: 40px auto;
  max-width: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.contract-address span {
  color: var(--dark-black);
  font-weight: bold;
}

.contract-address input {
  border: none;
  background: transparent;
  width: 100%;
  text-align: center;
  color: var(--dark-black);
  cursor: pointer;
}

/* Bamboo Container */
.bamboo-container {
  position: relative;
  margin: 60px auto;
  max-width: 1000px;
}

.bamboo-image {
  width: 100%;
  height: auto;
}

.progress-markers {
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  padding: 0 40px;
}

.marker {
  color: var(--dark-black);
  font-size: 0.9rem;
  font-weight: bold;
}

/* Section Separator */
.section-separator {
  background-color: var(--dark-black);
  border-bottom: 0 solid #000;
  border-top: 3px solid #000;
  height: 56px;
  width: 100%;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links a {
    margin-right: 10px;
    font-size: 0.9rem;
  }

  .social-links a {
    margin-left: 10px;
    font-size: 1rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  .section-separator {
    height: 40px;
    width: 100%;
  }

  .contract-address {
    flex-direction: column;
    padding: 10px;
  }

  .contract-address input {
    width: 90%;
  }
}

/* About Section Styles */
.about-section {
  padding: 80px 0;
  background-color: var(--primary-green);
}

.about-section h2 {
  color: var(--dark-black);
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: bold;
  font-family: "Times New Roman", serif;
}

.image-container {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.section-image {
  width: 100%;
  height: auto;
}

/* Message Box Styles */
.message-box {
  width: 50%;
  background: white;
  border-radius: 20px;
  padding: 30px;
  position: relative;
  margin: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.message-box:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid white;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.message-box h3 {
  color: var(--dark-black);
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: bold;
  text-align: center;
}

.message-box p {
  color: var(--dark-black);
  font-family: "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .about-section {
    padding: 40px 0;
  }

  .about-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-family: "Times New Roman", serif;
  }

  .image-container {
    max-width: 200px;
    margin-bottom: 30px;
  }

  .message-box {
    width: 100%;
    margin: 20px 10px;
    padding: 20px;
  }

  .message-box h3 {
    font-size: 1.2rem;
  }

  .message-box p {
    font-size: 0.9rem;
  }

  /* Stack columns on mobile */
  .col-md-4 {
    margin-bottom: 30px;
  }

  /* Center align text on mobile */
  .text-center-mobile {
    text-align: center;
  }
}

/* Extra small devices */
@media (max-width: 576px) {
  .image-container {
    max-width: 150px;
  }

  .message-box {
    padding: 15px;
  }

  .message-box p {
    font-size: 0.8rem;
  }
}

/* .wtf-section {
  background-image: url("../images/ElonMusk2.jpg");
  min-height: 100vh;
  background-color: var(--primary-green);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wtf-section .container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Contract address container için yeni stiller */

.wtf-section {
  background-image: url("../images/ElonMusk2.jpg");
  min-height: 100vh;
  background-color: var(--primary-green);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wtf-section .container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.contract-address-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-30%, 80%) rotate(3deg);
  width: 100%;
  max-width: 600px;
  text-align: center;
}

.launched-text {
  color: var(--dark-black);
  font-size: 2.5rem;
  font-weight: bolder;
  margin-bottom: 1rem;
  white-space: nowrap;
}

.contract-address {
  background: #e9ebea;
  padding: 15px;
  border: 4px solid black;
  border-radius: 8px;
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
}

/* Responsive ayarlamalar */
@media (max-width: 1440px) {
  .contract-address-container {
    max-width: 500px;
  }

  .launched-text {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .contract-address-container {
    max-width: 400px;
    margin-left: -8%;
  }

  .launched-text {
    font-size: 1.8rem;
  }

  .contract-address {
    padding: 10px;
  }
}

@media (max-width: 576px) {
  .contract-address-container {
    max-width: 300px;
  }

  .launched-text {
    font-size: 1.5rem;
  }
}
*/

/* Info Box Styles */
.info-box {
  background: white;
  border-radius: 20px;
  padding: 30px;
  margin: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.info-box h2 {
  color: var(--dark-black);
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
  font-family: "Times New Roman", serif;
}

.info-box p {
  color: var(--dark-black);
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  margin: 0;
}

.info-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-box ul li {
  color: var(--dark-black);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: center;
  position: relative;
  padding-left: 20px;
}

.info-box ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--dark-black);
}

/* Center Image Styles */
.center-image-container {
  max-width: 400px;
  margin: 0 auto;
  padding: 20px;
}

.pundu-image {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.pundu-image:hover {
  transform: scale(1.05);
}

@media (min-width: 1400px) {
  .wtf-section {
    background-size: 100% 100%;
  }

  .contributors-section {
    background-size: 100% 100%;
  }

  .section-separator {
    height: 40px;
    width: 100%;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .wtf-section {
    min-height: 100vh;
    background-size: cover;
  }

  .contributors-section {
    background-size: 100% 100%;
  }

  .info-box {
    margin: 10px;
    padding: 20px;
  }

  .info-box h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: "Times New Roman", serif;
  }

  .info-box p,
  .info-box ul li {
    font-size: 0.9rem;
  }

  .center-image-container {
    max-width: 300px;
    padding: 10px;
    margin: 20px auto;
  }
}

/* Extra small devices */
@media (max-width: 576px) {
  .info-box {
    margin: 10px 0;
    padding: 15px;
  }

  .info-box h2 {
    font-size: 1.3rem;
    font-family: "Times New Roman", serif;
  }

  .info-box p,
  .info-box ul li {
    font-size: 0.8rem;
  }

  .center-image-container {
    max-width: 200px;
  }
}

/* Punduomics Section Styles */
.punduomics-section {
  padding: 80px 0;
  background-color: var(--primary-green);
}

/* Section Title */
.section-title {
  color: black !important;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.distribution-container-inclusive {
  display: flex;
  justify-content: space-between;
}

.elon-image1 {
  width: 590px;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .distribution-container-inclusive {
    flex-direction: column;
    gap: 20px;
  }
  .elon-image1 {
    width: 100%;
  }
}

/* Distribution Container */
.distribution-container {
  background-color: #000; /* Dark green background */
  border-radius: 30px;
  padding: 40px;
  margin-bottom: 60px;
  width: 50%;
  margin: 0 auto;
}

/* Distribution Items */
.distribution-item {
  background-color: white;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  border: 2px solid var(--dark-black);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.distribution-item p {
  color: var(--dark-black);
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0;
}

/* Bottom Content */
.bottom-content {
  margin-top: 60px;
}

/* Speech Bubbles */
.speech-bubbles {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.speech-bubble {
  background-color: white;
  border-radius: 20px;
  padding: 15px 25px;
  position: relative;
  text-align: center;
  border: 2px solid var(--dark-black);
}

/* Left speech bubble arrow */
.speech-bubble:first-child:before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 20px solid white;
  transform: translateY(-50%);
}

/* Right speech bubble arrow */
.speech-bubble:last-child:after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 20px solid white;
  transform: translateY(-50%);
}

.speech-bubble p {
  color: var(--dark-black);
  font-weight: bold;
  margin: 0;
  font-size: 1.1rem;
}

/* Images */
.image-container {
  max-width: 250px;
  margin: 0 auto;
}

.pundu-image,
.stamp-image {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.pundu-image:hover,
.stamp-image:hover {
  transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .punduomics-section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .distribution-container {
    padding: 20px;
    margin-bottom: 40px;
    width: 100%;
  }

  .distribution-item {
    padding: 15px;
  }

  .distribution-item p {
    font-size: 1rem;
  }

  .speech-bubble {
    padding: 10px 15px;
    margin: 10px 30px;
  }

  .speech-bubble p {
    font-size: 0.9rem;
  }

  .image-container {
    max-width: 180px;
    margin: 20px auto;
  }

  /* Adjust speech bubble arrows for mobile */
  .speech-bubble:before,
  .speech-bubble:after {
    display: none;
  }
}

/* Extra small devices */
@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }

  .distribution-container {
    padding: 15px;
    width: 100%;
  }

  .distribution-item p {
    font-size: 0.9rem;
  }

  .image-container {
    max-width: 150px;
  }
}

/* Contributors Section Styles */
.contributors-section {
  background-image: url("../images/shill-celon-background.jpg");
  min-height: 100vh;
  padding: 80px 0; /*yoruma alınabilir */
  background-color: var(--primary-green);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.contributors-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center center;
  filter: brightness(1);
  z-index: 0;
}

.contributors-section > * {
  position: relative;
  z-index: 1;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  color: white;
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 80px; /* Başlık ile içerik arası mesafeyi artırdım */
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.table-container {
  background: white;
  border-radius: 25px;
  padding: 20px;
  margin: 0 auto;
  max-width: 800px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.table-wrapper {
  max-height: 400px;
  overflow-y: auto;
}

/* Custom Scrollbar */
.table-wrapper::-webkit-scrollbar {
  width: 8px;
}

.table-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.table-wrapper::-webkit-scrollbar-thumb {
  background: var(--dark-black);
  border-radius: 4px;
}

/* Table Header */
.table-header {
  display: grid;
  grid-template-columns: 80px 1fr 1.5fr;
  padding: 15px 20px;
  background-color: var(--primary-green);
  border-radius: 15px;
  margin-bottom: 10px;
  position: sticky;
  top: 0;
  z-index: 1;
}

.header-cell {
  color: var(--dark-black);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Table Body */
.table-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.5fr;
  padding: 12px 20px;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.table-row:last-child {
  border-bottom: none;
}

/* Table Cells */
.body-cell {
  color: var(--dark-black);
  font-size: 1rem;
}

.body-cell.number {
  font-weight: bold;
}

.body-cell.amount {
  display: flex;
  align-items: center;
  gap: 8px;
}

.coin-icon {
  width: 20px;
  height: 20px;
}

.body-cell.address {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.address-link {
  color: var(--dark-black);
  text-decoration: none;
  font-family: monospace;
  font-size: 0.9rem;
}

.copy-btn {
  background: none;
  border: none;
  color: var(--dark-black);
  cursor: pointer;
  padding: 5px;
  font-size: 0.9rem;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.copy-btn:hover {
  opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }

  .table-header,
  .table-row {
    grid-template-columns: 60px 1fr 1.5fr;
    padding: 10px 15px;
  }

  .header-cell,
  .body-cell {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 2rem;
  }

  .table-header,
  .table-row {
    grid-template-columns: 40px 1fr 1.5fr;
    padding: 8px 10px;
  }

  .header-cell,
  .body-cell {
    font-size: 0.8rem;
  }

  .coin-icon {
    width: 16px;
    height: 16px;
  }
}

/* Footer Styles */
.site-footer {
  background-color: var(--dark-black);
  padding: 20px 0;
  color: white;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.footer-logo h2 {
  color: white;
  font-size: 2rem;
  margin: 0;
  font-family: "Times New Roman", serif;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  color: white;
  font-size: 1.5rem;
  transition: opacity 0.3s;
}

.footer-social a:hover {
  opacity: 0.7;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .contributors-section {
    padding: 40px 0;
  }

  .table-container {
    padding: 10px;
    margin: 0 10px;
  }

  .contributors-table th,
  .contributors-table td {
    padding: 10px;
    font-size: 0.9rem;
  }

  .footer-logo h2 {
    font-size: 1.5rem;
    font-family: "Times New Roman", serif;
  }

  .footer-social a {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .contributors-table th,
  .contributors-table td {
    padding: 8px;
    font-size: 0.8rem;
  }

  .copy-btn {
    padding: 3px;
  }

  .footer-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* Shuffle Container - Resim ve butonu bir arada tutar */
.shuffle-container {
  display: flex;
  align-items: center;
  gap: 40px; /* Buton ve resim arası mesafeyi artırdım */
  justify-content: center;
  padding: 20px;
  margin-top: 40px; /* Üstten ek boşluk */
  flex-direction: row; /* Masaüstünde yan yana */
}

/* Sıralama için order  */
.shuffle-button {
  order: 1; /* Buton solda */
  width: 100%;
  background-color: var(--dark-black);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  height: fit-content;
}

.shuffle-image-wrapper {
  order: 2; /* Resim sağda */
  width: 300px;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Diğer özellikler aynı kalacak */
.shuffle-button:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.shuffle-button:active {
  transform: scale(0.95);
}

.shuffle-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }

  .shuffle-container {
    flex-direction: column-reverse; /* Mobilde alt alta */
    gap: 20px;
  }

  .shuffle-image-wrapper {
    order: 1; /* Mobilde resim üstte */
    width: 250px;
    height: 250px;
  }

  .shuffle-button {
    order: 2; /* Mobilde buton altta */
    font-size: 1rem;
    padding: 10px 20px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 2rem;
  }

  .shuffle-image-wrapper {
    width: 100%;
    height: 100%;
  }

  .shuffle-button {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}

.download-button {
  order: 3; /* Shuffle butonundan sonra gelecek */
  background-color: var(--dark-black);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  height: fit-content;
  margin-top: 10px; /* Üstteki butonla arasına boşluk */
}

/* Hover efekti */
.download-button:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Tıklama efekti */
.download-button:active {
  transform: scale(0.95);
}

/* Responsive tasarım için */
@media (max-width: 768px) {
  .download-button {
    font-size: 1rem;
    padding: 10px 20px;
  }
}

@media (max-width: 576px) {
  .download-button {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}

.input-copy-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  flex: 1;
}

.copy-button {
  background: none;
  border: none;
  color: var(--dark-black);
  cursor: pointer;
  padding: 5px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  position: relative;
}

.copy-button:hover {
  opacity: 0.7;
}

/* Tooltip için stil */
.copy-button::after {
  content: "Copy Address";
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.copy-button:hover::after {
  opacity: 1;
  visibility: visible;
}

/* Kopyalama başarılı olduğunda gösterilecek stil */
.copy-button.copied {
  color: #28a745;
}
