/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utility classes */
.gradient-text {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ff6b35;
}

.coffee-icon {
    font-size: 1.2rem;
    margin-left: 0.25rem;
}

.nav-right {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff6b35;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Main content */
.main {
    margin-top: 80px;
}

/* Hero section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    position: relative;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo-img {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    margin: 0 auto;
    display: block;
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
    transition: transform 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 900;
    color: #ff6b35;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
    letter-spacing: -2px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: #cccccc;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #ff6b35;
    margin-bottom: 3rem;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.scroll-indicator {
    margin-top: 2rem;
    animation: bounce 2s infinite;
}

.arrow-down {
    font-size: 2rem;
    color: #ff6b35;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.btn-secondary {
    color: #ff6b35;
    border-color: #ff6b35;
    background: transparent;
}

.btn-secondary:hover {
    background: #ff6b35;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
}

/* Sections */
.section {
    padding: 6rem 2rem;
    position: relative;
}

.section-dark {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.section-text {
    font-size: 1.3rem;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* About Section - Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-title {
    color: #ff6b35;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-text {
    color: #cccccc;
    line-height: 1.6;
}

/* Story Section */
.story-section {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 140, 66, 0.1) 100%);
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    margin-top: 3rem;
}

.story-title {
    color: #ff6b35;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: center;
}

.story-text {
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Tokenomics */
.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.tokenomics-item {
background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.tokenomics-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
}

.token-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tokenomics-item h3 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.tokenomics-item p {
    color: #cccccc;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tokenomics-item small {
    color: #888888;
    font-size: 0.9rem;
}

.token-features {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 140, 66, 0.1) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    text-align: center;
}

.features-title {
    color: #ff6b35;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.feature-item {
    color: #cccccc;
    font-size: 1.1rem;
    padding: 0.5rem;
}

/* Roadmap */
.roadmap-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #ff6b35, rgba(255, 107, 53, 0.3));
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: #000000;
    border: 4px solid #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 10;
}

.timeline-content {
    width: 45%;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.completed .timeline-content {
    border-color: rgba(0, 255, 0, 0.3);
    background: rgba(0, 255, 0, 0.05);
}

.current .timeline-content {
    border-color: rgba(255, 107, 53, 0.5);
    background: rgba(255, 107, 53, 0.1);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.timeline-phase {
    color: #ff6b35;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-title {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0.5rem 0 1rem 0;
}

.timeline-list {
    list-style: none;
    padding: 0;
}

.timeline-list li {
    color: #cccccc;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.timeline-list li::before {
    content: '•';
    color: #ff6b35;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.roadmap-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 140, 66, 0.1) 100%);
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    margin-top: 4rem;
}

.roadmap-cta h3 {
    color: #ff6b35;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.roadmap-cta p {
    color: #cccccc;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.cta-quote {
    color: #ff6b35 !important;
    font-weight: 700;
    font-style: italic;
}

/* How to Buy - Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.step-number {
    position: absolute;
    top: -15px;
    right: 15px;
    background: #ff6b35;
    color: #000000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
}

.step-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.step-title {
    color: #ff6b35;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-text {
    color: #cccccc;
    line-height: 1.6;
}

.buy-section {
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 140, 66, 0.2) 100%);
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.buy-section h3 {
    color: #ff6b35;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.buy-section p {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contract-address {
    color: #888888 !important;
    font-size: 0.9rem !important;
    margin: 1rem 0 !important;
    font-family: monospace;
}

.warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.warning p {
    color: #ffc107 !important;
    font-size: 0.95rem !important;
    margin: 0 !important;
}

/* Community */
.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.4);
}

.social-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.social-link span {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.social-count {
    font-size: 0.9rem;
    color: #888888;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #cccccc;
    font-size: 1rem;
    font-weight: 500;
}

/* Footer */
.footer {
    padding: 3rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ff6b35;
}

.footer-text {
    text-align: right;
}

.footer-text p {
    color: #888888;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: #ff6b35 !important;
    font-weight: 600;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

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

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

/* Responsive design */
@media (max-width: 768px) {
    .nav {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-right {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .features-grid, .tokenomics-grid, .steps-grid, .social-links, .community-stats {
        grid-template-columns: 1fr;
    }
    
    .timeline-item, .timeline-item:nth-child(even) {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline-content {
        width: 90%;
        margin-top: 2rem;
    }
    
    .timeline-marker {
        position: relative;
        left: auto;
        transform: none;
        margin-bottom: 1rem;
    }
    
    .roadmap-timeline::before {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-text {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 4rem 1rem;
    }
    
    .hero {
        padding: 1rem;
    }
    
    .hero-logo-img {
        width: 150px;
        height: 150px;
    }
}

/* Glow effects */
.hero-logo-img, .tokenomics-item:hover, .feature-card:hover, .step-card:hover, .social-link:hover {
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

/* Smooth transitions */
.section, .feature-card, .tokenomics-item, .step-card, .social-link, .timeline-content {
    transition: all 0.3s ease;
}

/* Background patterns */
.hero::before, .section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(255, 140, 66, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* === Key Features – wizualne „pills” z ikonami === */
.token-features {
  /* już masz glassmorphism – zostaje */
}

/* Grid lekko gęstszy, żeby „pills” dobrze się łamały */
.token-features .features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem 1.25rem;
  align-items: stretch;
}

/* Każdy punkt jako kapsuła z ikoną */
.feature-item.visual {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255, 107, 53, 0.25);
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 18px rgba(255, 107, 53, 0.12);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.feature-item.visual:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 107, 53, 0.5);
  background: rgba(255, 107, 53, 0.08);
  box-shadow: 0 10px 24px rgba(255, 107, 53, 0.25);
}

/* Okrągły badge pod ikonę – gradient w brand color */
.feature-badge {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(100% 100% at 30% 30%, #ff8c42 0%, #ff6b35 40%, #1a1a1a 100%);
  border: 1px solid rgba(255, 107, 53, 0.6);
  box-shadow: inset 0 0 10px rgba(0,0,0,.4), 0 0 18px rgba(255, 107, 53, .25);
  color: #000; /* kolor kreski ikon po hoverze zmienimy na pomarańcz */
}

/* Sama ikona (SVG) – używa currentColor */
.feature-icon {
  width: 22px;
  height: 22px;
  display: block;
  color: #0d0d0d;
}

.feature-item.visual:hover .feature-icon {
  color: #ffebdf; /* jaśniejsza kreska na hoverze dla kontrastu */
}

/* Tekst obok ikony */
.feature-label {
  color: #eaeaea;
  font-size: 1.05rem;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

/* Mobile dopasowanie */
@media (max-width: 480px) {
  .feature-badge { width: 36px; height: 36px; }
  .feature-icon { width: 20px; height: 20px; }
  .feature-label { font-size: 1rem; }
}

/* --- FEATURES: 4 w rzędzie + tytuły zawijane, bez "..." --- */

/* 4 kolumny na desktopie, 2 na tabletach, 1 na mobile */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(250px, 1fr));
  gap: 1.5rem 2rem;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* Kafelek – spójna wysokość */
.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  min-height: 240px;
  text-align: center;
}

/* Nagłówek: ikona + Tytuł w siatce, tytuł może przejść do 2 linii */
.feature-header {
  display: grid;
  grid-template-columns: auto 1fr;   /* ikona + tytuł */
  align-items: center;
  justify-content: center;
  column-gap: .6rem;
  row-gap: .25rem;
  margin: 0 auto .85rem;
  max-width: 90%;
}

/* Ikona – stały rozmiar, brak nachodzenia */
.feature-emoji {
  display: inline-block;
  line-height: 1;
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
}

/* Tytuł – zawijanie, żadnych kropek, lekko mniejszy rozmiar dla pewności */
.feature-title {
  margin: 0;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.25;
  white-space: normal;        /* <-- klucz: pozwól zawijać */
  overflow: visible;          /* bez obcinania */
  text-overflow: clip;        /* brak „…” */
  word-break: normal;         /* nie łam pojedynczych słów */
}

/* Tekst akapitu wąski dla czytelności, wyrównuje wysokości kart */
.feature-card .feature-text {
  max-width: 36ch;
  margin: 0.2rem auto 0;
}

/* Minimalne ściśnięcie na bardzo wąskich ekranach */
@media (max-width: 480px) {
  .feature-card { padding: 1.5rem; min-height: 220px; }
  .feature-header { max-width: 100%; }
  .feature-title { font-size: clamp(1.05rem, 4.2vw, 1.2rem); }
}


}





