/* Reset & Base Styles */
:root {
    --primary: #FFD700;
    --primary-dark: #FFA500;
    --secondary: #7B2BF9;
    --dark: #0A0A0A;
    --darker: #050505;
    --light: #F5F5F5;
    --gray: #888;
    --success: #00C853;
    --danger: #FF3737;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    padding-top: 80px;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo {
    height: 40px;
}

.logo-text {
    font-weight: 700;
    font-size: 1.2rem;
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-menu {
    display: flex;
    gap: 1rem;
    list-style: none;
}

.nav-menu li a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary);
}

.wallet-connect button {
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    color: #000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wallet-connect button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    background: radial-gradient(circle at center, #1a1a1a 0%, #0d0d0d 100%);
    padding: 5rem 10%;
    color: white;
    text-align: center;
    display: flex;
    gap: 20px;
}

.hero-content {
    max-width: 600px;
    align-self: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary), var(--light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.live-price-container {
    margin: 2rem 0;
}

/* Price Ticker */
.price-ticker {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 1rem;
    max-width: 400px;
    margin: 2rem auto;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.price-change {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.positive {
    background: rgba(0, 200, 83, 0.2);
    color: var(--success);
}

.negative {
    background: rgba(255, 55, 55, 0.2);
    color: var(--danger);
}

.market-data {
    display: flex;
    gap: 1.5rem;
    color: var(--gray);
    font-size: 0.9rem;
}

.market-data strong {
    color: var(--light);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-image img {
    max-width: 500px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Tokens Section */
.token-prices {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
}

.token-name {
    font-weight: bold;
    color: #FFD700;
}

.token-price {
    font-weight: bold;
}

.price-change {
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.positive {
    background: rgba(0, 200, 83, 0.2);
    color: #00C853;
}

.tokens-section {
    padding: 5rem 5%;
    background: var(--darker);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.tokens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.token-card {
    background: linear-gradient(145deg, #1E1E1E, #151515);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: transform 0.3s;
}

.token-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.1);
}

.token-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.token-badge.live {
    background: rgba(0, 200, 83, 0.2);
    color: var(--success);
}

.token-badge.coming-soon {
    background: rgba(123, 43, 249, 0.2);
    color: var(--secondary);
}

.token-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.token-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.token-titles h3 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.token-symbol {
    color: var(--gray);
    font-size: 0.9rem;
}

.token-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.metric {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--gray);
    display: block;
    margin-bottom: 0.3rem;
}

.metric-value {
    font-weight: 600;
    font-size: 1.1rem;
}

.token-actions {
    display: flex;
    gap: 1rem;
}

.launch-countdown {
    margin: 1.5rem 0;
}

.launch-countdown h4 {
    margin-bottom: 0.5rem;
    color: var(--gray);
}

.countdown-timer {
    display: flex;
    gap: 1rem;
}

.countdown-item {
    text-align: center;
}

.countdown-item span:first-child {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.countdown-item span:last-child {
    font-size: 0.8rem;
    color: var(--gray);
}

/* Holders Section */
.holders-section {
    padding: 5rem 5%;
    background: linear-gradient(to bottom, var(--darker), var(--dark));
}

.holders-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.stat-card {
    background: rgba(255, 215, 0, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
}

.holders-content {
    display: grid;
/*    grid-template-columns: 1fr 1fr;*/
    gap: 2rem;
/*    max-width: 1450px;*/
    margin: 0 auto;
}

.holders-table-container {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 15px;
    padding: 1.5rem;
    overflow: hidden;
}

.holders-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.holders-table th {
    background: rgba(255, 215, 0, 0.1);
    padding: 1rem;
    text-align: left;
    font-weight: 500;
    color: var(--primary);
}

.holders-table tr:last-child td {
    border-bottom: none;
}

.holders-table tr:hover {
    background: rgba(255, 215, 0, 0.05);
}

.table-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.table-actions button {
    background: rgba(255, 215, 0, 0.1);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.table-actions button:hover {
    background: rgba(255, 215, 0, 0.2);
}

.view-all {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.holders-chart-container {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 15px;
    padding: 1.5rem;
}

/* Buttons */
.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn.primary {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: #000;
}

.btn.secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn.small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn.outline {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--light);
}

.notify-btn {
    width: 100%;
    margin-top: 1rem;
    background: rgba(123, 43, 249, 0.2);
    color: var(--secondary);
    border: none;
}

.notify-btn:hover {
    background: rgba(123, 43, 249, 0.3);
}

/* Footer */
footer {
    background: #050505;
    padding: 3rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo img {
    width: 60px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.link-group h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.link-group a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.link-group a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: var(--gray);
    text-decoration: none;
}

.legal-links a:hover {
    color: var(--primary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background: var(--darker);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 2rem;
    }
    
    .hero-image img {
        max-width: 350px;
        margin-top: 2rem;
    }
    
    .holders-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .tokens-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}


/* تصاویر هیرو و توکن‌ها */
.hero-image img,
.token-icon,
.carousel-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* سایزهای اختصاصی برای هر بخش */
.animated-logo {
    max-width: 150px;
    margin: 0 auto 2rem;
    animation: pulse 2s infinite;
}

.animated-logo img{
    width: min(150px, 30vw);
    height: auto;
    aspect-ratio: 1/1;
}

.token-icon {
    max-width: 80px;
    margin-bottom: 1rem;
}

.carousel-item img {
    max-width: 120px;
    max-height: 120px;
}

/* تصاویر ویژگی‌ها */
.feature-card .icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* تصاویر ریسپانسیو */
@media (max-width: 768px) {
    .hero-image img {
        max-width: 280px;
    }
    
    .token-icon {
        max-width: 60px;
    }
    
    .carousel-item img {
        max-width: 80px;
        max-height: 80px;
    }
}

.cta-buttons{
    display: inline-grid;
    gap: 20px;
}

.gradient-text {
    background: linear-gradient(90deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tagline {
    font-size: 1.5rem;
    margin: 1rem auto 2rem;
    max-width: 700px;
}

.highlight {
    color: #FFD700;
    font-weight: bold;
}


/* Ecosystem Highlights */
.ecosystem-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 4rem auto;
    max-width: 1200px;
}

.feature-card {
    background: rgba(30, 30, 30, 0.7);
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 215, 0, 0.05);
}

.feature-card .icon {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

/* Token Carousel */
.token-carousel {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-evenly;
    scrollbar-width: none; /* Firefox */
}

.token-carousel::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.carousel-item {
    min-width: 250px;
    background: rgba(40, 40, 40, 0.7);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.carousel-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}


.hero-section h1 {
    /* استفاده از clamp برای اندازه فونت ریسپانسیو */
    font-size: clamp(2rem, 5vw, 3.5rem);
    
    /* سایر استایل‌ها */
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(to right, var(--primary), var(--light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    
    /* برای نمایش بهتر در موبایل */
    word-wrap: break-word;
    hyphens: auto;
}

@media (max-width: 768px) {
    .hero-section h1 {
        /* تنظیمات خاص برای تبلت */
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        /* تنظیمات خاص برای موبایل */
        font-size: clamp(1.5rem, 7vw, 2rem);
        line-height: 1.3;
    }
}


.ecosystem-highlights {
    display: grid;
    gap: 2rem;
    margin: 4rem auto;
    justify-items: center;
    padding: 0 1rem;
    width: 100%;
}

/* تنظیمات پیش‌فرض (موبایل اول - Mobile First) */
.ecosystem-highlights {
    grid-template-columns: 1fr;
    max-width: 400px;
}

/* تبلت - حالت عمودی (پورتریت) */
@media (min-width: 600px) and (max-width: 899px) {
    .ecosystem-highlights {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
    
    /* حالت خاص برای 3 آیتم - دو تا بالا، یکی پایین */
    .feature-card:nth-child(3) {
        grid-column: span 2;
        justify-self: center;
        max-width: 400px;
    }
}

/* تبلت - حالت افقی (لنداسکیپ) و دسکتاپ کوچک */
@media (min-width: 900px) and (max-width: 1199px) {
    .ecosystem-highlights {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1000px;
    }
}

/* دسکتاپ استاندارد */
@media (min-width: 1200px) {
    .ecosystem-highlights {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        max-width: 1400px;
    }
}

/* کارت‌های ویژگی */
.feature-card {
    width: 100%;
    max-width: 350px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.1);
}

/* تنظیمات خاص برای دستگاه‌های خیلی کوچک */
@media (max-width: 359px) {
    .feature-card {
        padding: 1rem;
    }
}

.price-ticker {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.token-prices {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.token-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.token-name {
    font-weight: 600;
    color: var(--primary);
}

.token-price {
    font-weight: 700;
    font-size: 1.1rem;
}

.price-change {
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.positive {
    background: rgba(0, 200, 83, 0.1);
    color: var(--success);
}

/* حالت ریسپانسیو */
@media (max-width: 768px) {
    .token-prices {
        padding: 0.6rem 1.2rem;
    }
    
    .token-logo {
        width: 20px;
        height: 20px;
    }
    
    .token-price {
        font-size: 1rem;
    }
}

.elegant-slogan {
  text-align: center;
  margin: 2.5rem 0;
  padding: 0 1rem;
}

.elegant-slogan h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
  margin-bottom: 0.8rem;
}

.goofy-part {
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  font-weight: 700;
  color: #FFD700;
  letter-spacing: -0.5px;
}

.eco-part {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 600;
  color: #FFFFFF;
  margin-top: -0.3rem;
}

.tagline {
  font-size: clamp(1.2rem, 3.5vw, 1.6rem);
  color: rgba(245, 245, 245, 0.9);
  font-weight: 400;
  position: relative;
  display: inline-block;
  padding: 0 1rem;
}

.tagline::before,
.tagline::after {
  content: "•";
  color: #FFD700;
  margin: 0 0.8rem;
  font-size: 1.1em;
}

/* افکت ساده هنگام هاور */
.elegant-slogan:hover .goofy-part {
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
  transition: text-shadow 0.3s ease;
}

/* تنظیمات ریسپانسیو */
@media (max-width: 768px) {
  .tagline::before,
  .tagline::after {
    margin: 0 0.5rem;
  }
  
  .eco-part {
    margin-top: -0.1rem;
  }
}

.slogan-container {
  text-align: center;
  margin: 2rem 0 3rem;
  padding: 0 1rem;
}

.main-slogan {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gradient-text {
  background: linear-gradient(90deg, #FFD700, #FFA500, #FF6347);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-shift 5s ease infinite;
  background-size: 200% auto;
}

.sub-slogan {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 500;
  color: #F5F5F5;
  margin-top: 0.8rem;
  position: relative;
  display: inline-block;
}

.sub-slogan::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #FFD700, transparent);
}

@keyframes gradient-shift {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

/* Effects on hover */
.main-slogan:hover .gradient-text {
  animation-play-state: paused;
}

.main-slogan:hover .sub-slogan {
  transform: translateY(-3px);
  text-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.sub-slogan {
  transition: all 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .slogan-container {
    margin: 1.5rem 0 2rem;
  }
  
  .sub-slogan::after {
    width: 80%;
    bottom: -8px;
  }
}

/* استایل‌های عمومی */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 12px 24px;
    border-radius: 4px;
    color: white;
    z-index: 1000;
    animation: fadeIn 0.3s;
}

.toast.success {
    background-color: #4CAF50;
}

.toast.error {
    background-color: #F44336;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

#global-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* استایل‌های جدول دارندگان */
.holders-table {
    width: 100%;
    border-collapse: collapse;
}

.holders-table th, .holders-table td {
    padding: 12px 10px;
    text-align: left;
    border-bottom: 1px solid #000;
}

/*
.holders-table tr:hover {
    background-color: ##9d9d9d;
}
*/

.wallet-address {
    cursor: pointer;
    font-family: monospace;
}

.holders-table td {
    max-width: 200px; /* حداکثر عرض سلول */
    overflow: hidden; /* پنهان کردن متن اضافی */
    text-overflow: ellipsis; /* نمایش "..." برای متن اضافی */
    white-space: nowrap; /* جلوگیری از شکستن متن در چند خط */
}

.holders-table td.address {
    font-family: monospace; /* فونت ثابت برای نمایش آدرس‌ها */
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
} 

.modal-content {
    background: white;
    padding: 20px;
    width: 90%; /* متناسب با صفحه */
    max-width: 450px; /* حداکثر عرض */
    height: 550px; /* افزایش ارتفاع */
    border-radius: 10px;
    text-align: center;
    position: relative;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.responsive-form {
    width: 100%;
    height: 480px; /* کل فضای مودال */
    border: none;
    overflow: hidden;
}

.close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    transition: 0.3s;
}

.close:hover {
    color: red;
}

.airdrop-section {
    text-align: center;
    padding: 50px 20px;
    background: #000;
    color: white;
    border-radius: 12px;
/*    max-width: 600px;*/
    margin: auto;
}
.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 24px;
    margin: 20px 0;
}
.countdown div {
    background: #222;
    padding: 10px;
    border-radius: 8px;
}
input, .btn {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    border-radius: 8px;
    border: none;
}
.btn.primary {
    background: #ffcc00;
    color: #1a1a2e;
    font-weight: bold;
    cursor: pointer;
}

#start-message {
    color: #ffcc00;
    font-weight: bold;
    font-size: 25px;
    text-align: center;
    margin-bottom: 20px;
}

.about-section {
    padding: 50px 20px;
    background: #121212;
    color: #fff;
    text-align: center;
}
.about-container {
    max-width: 800px;
    margin: auto;
}
.highlight {
    color: #FFD700;
    font-weight: bold;
}
.token-info {
    background: #1e1e1e;
    padding: 20px;
    margin: 15px 0;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.1);
}
.token-info h3 {
    color: #FFD700;
}
.notify-box {
    margin-top: 20px;
    padding: 20px;
    background: #252525;
    border-radius: 10px;
}
.btn.primary {
    background: #FFD700;
    color: #121212;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}
.btn.primary:hover {
    background: #FFC107;
}

.about-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: #1e1e1e;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    color: #fff;
    font-family: Arial, sans-serif;
    text-align: center;
}

.about-header {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffcc00;
}

.about-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.price-section {
    display: flex;
    justify-content: space-around;
    padding: 15px;
    background: #292929;
    border-radius: 8px;
}

.price-item {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #ffcc00;
}





.community {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #1e1e2e, #2c2c4a);
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin: 40px auto;
    max-width: 800px;
}

.community h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #ffcc00;
}

.community p {
    font-size: 18px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
}

.twitter { background: #1DA1F2; color: white; }
.twitter:hover { background: #0d8aec; }

.telegram { background: #0088cc; color: white; }
.telegram:hover { background: #0077b5; }

.discord { background: #5865F2; color: white; }
.discord:hover { background: #4752c4; }

/* بهبود طراحی کلی و تنظیمات اصلی */
.roadmap {
    max-width: 1100px;
    margin: 50px auto;
    padding: 40px;
    background-color: #1a1a1a;
    border-radius: 15px;
    box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: #fff;
}

/* عنوان قسمت */
.roadmap h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #FFD700;
    font-weight: bold;
    text-transform: uppercase;
}

/* تنظیمات برای جدول زمانی */
.timeline {
    position: relative;
    margin: 20px 0;
    padding: 0 20px;
}

/* خط عمودی جدول زمانی */
.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #FFD700, #ff6347);
    transform: translateX(-50%);
    animation: fadeIn 1s ease-in-out;
}

/* آیتم‌های جدول زمانی */
.timeline-item {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    animation: slideIn 1s ease-out;
}

/* تنظیمات هر آیتم (دست راست یا چپ) */
.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
    margin-right: 40px;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: left;
    margin-left: 40px;
}

/* تغییر جهت برای آیتم‌های زوج */
.timeline-item:nth-child(even) {
    flex-direction: row-reverse; /* برای معکوس کردن ترتیب در آیتم‌های زوج */
}


/* تنظیمات محتوا برای هر مرحله */
.timeline-content {
    background: #333;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 45%;
    position: relative;
    box-shadow: 0px 8px 20px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease-in-out;
}

.timeline-content h3 {
    margin: 0;
    font-size: 1.6rem;
    color: #FFD700;
    font-weight: 600;
}

.timeline-content p {
    margin-top: 10px;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
    color: #dcdcdc;
}

/* دایره کوچک که به هر مرحله اشاره دارد */
.timeline-dot {
    width: 18px;
    height: 18px;
    background: #FFD700;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

/* تغییر رنگ دایره هنگام هاور */
.timeline-item:hover .timeline-dot {
    background: #ff6347;
    transform: scale(1.2) translate(-50%, -50%);
}

/* انیمیشن های جدول زمانی */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideIn {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* بهبود ریسپانسیو برای موبایل‌ها */
@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        text-align: left;
        margin: 10px 20px;
        width: auto;
    }

    .timeline-dot {
        left: 20px;
    }

    .roadmap {
        padding: 20px;
        margin: 20px;
    }

    .roadmap h2 {
        font-size: 2rem;
    }
}

/* استایل کلی برای بخش Contact */
.contact {
    background-color: #1a1a1a; /* رنگ پس‌زمینه تیره به تناسب با تم */
    padding: 60px 20px;
    text-align: center;
    color: #fff;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #333; /* رنگ پس‌زمینه فرم */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.1);
}

.contact h2 {
    font-size: 2.5rem;
    color: #FFD700; /* رنگ طلایی */
    margin-bottom: 20px;
    font-weight: bold;
}

.contact p {
    font-size: 1.1rem;
    color: #dcdcdc; /* رنگ خاکی روشن */
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #444; /* خط حاشیه با رنگ تیره */
    border-radius: 5px;
    background-color: #222; /* پس‌زمینه تیره‌تر برای فیلدهای ورودی */
    color: #fff;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #FFD700; /* تغییر رنگ مرز در حالت فوکوس */
    outline: none;
}

/* ریسپانسیو */
@media (max-width: 768px) {
    .contact-container {
        padding: 20px;
    }

    .contact h2 {
        font-size: 2rem;
    }

    .contact p {
        font-size: 1rem;
    }
}

.contact {
    background: #1a1a1a;
    padding: 60px 20px;
    text-align: center;
}

.contact-container {
    max-width: 800px;
    margin: auto;
    background: #222;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 10px 20px rgba(255, 215, 0, 0.2);
}

.contact-title {
    font-size: 2rem;
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 10px;
}

.contact-description {
    font-size: 1rem;
    color: #dcdcdc;
    margin-bottom: 20px;
}

.contact-form-container {
    display: flex;
    justify-content: center;
}

.contact-form {
    width: 100%;
    max-width: 700px;
    height: 520px;
    border-radius: 10px;
    border: none;
    box-shadow: 0px 4px 10px rgba(255, 215, 0, 0.3);
}

/* ریسپانسیو برای موبایل */
@media (max-width: 768px) {
    .contact-container {
        padding: 20px;
    }

    .contact-title {
        font-size: 1.8rem;
    }

    .contact-description {
        font-size: 0.9rem;
    }

    .contact-form {
        height: 480px;
    }
}

.contact-form-container iframe {
    filter: invert(1) hue-rotate(180deg);
    border-radius: 12px;
    box-shadow: 0px 10px 20px rgba(255, 215, 0, 0.2);
}

a {
    color: #fff;
}





.score-table {
  padding: 2rem;
  background-color: #0d0d1a;
  border-radius: 20px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  max-width: 1000px;
  margin: 2rem auto;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.score-table h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #ffcc00;
}

.score-category {
  margin-bottom: 2rem;
}

.score-category h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  color: #00e0ff;
}

.score-category table {
  width: 100%;
  border-collapse: collapse;
  background-color: #1b1b2f;
  border-radius: 10px;
  overflow: hidden;
}

.score-category th,
.score-category td {
  padding: 0.75rem 1rem;
  text-align: center;
  border-bottom: 1px solid #333;
}

.score-category thead {
  background-color: #2f2f44;
  color: #ffcc00;
}

.score-category tbody tr:hover {
  background-color: #2a2a40;
}

.total-score-note {
  text-align: center;
  font-size: 1.1rem;
  margin-top: 1rem;
  color: #00ff88;
}

