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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    overflow-x: hidden;
}

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

/* Background gradient */
.min-h-screen {
    min-height: 100vh;
    background: linear-gradient(to bottom, #db2777, #ef4444, #db2777);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.background-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.grid-pattern {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
    height: 100%;
}

.grid-pattern::before {
    content: '';
    border: 1px solid white;
    animation: pulse 2s infinite;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 1rem;
}

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

.hero-logo {
    width: 24rem;
    max-width: 100%;
    height: auto;
    margin-bottom: 2rem;
    animation: bounce 2s infinite;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    text-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #fce7f3;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2rem;
    font-size: 1.25rem;
    font-weight: 700;
    border: 4px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    min-width: 200px;
    justify-content: center;
}

.btn:hover {
    transform: scale(1.05);
}

.btn-primary {
    background: black;
    color: white;
}

.btn-primary:hover {
    background: white;
    color: black;
}

.btn-secondary {
    background: transparent;
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: #db2777;
}

.btn-icon {
    width: 1.5rem;
    height: 1.5rem;
}

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

.scroll-indicator svg {
    width: 3rem;
    height: 3rem;
    color: white;
}

.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-circle {
    position: absolute;
    top: 5rem;
    left: 2.5rem;
    width: 4rem;
    height: 4rem;
    background: #fbbf24;
    border-radius: 50%;
    animation: ping 2s infinite;
    opacity: 0.75;
}

.floating-square {
    position: absolute;
    top: 10rem;
    right: 5rem;
    width: 3rem;
    height: 3rem;
    background: #34d399;
    transform: rotate(45deg);
    animation: pulse 2s infinite;
}

.floating-triangle {
    position: absolute;
    bottom: 10rem;
    left: 5rem;
    width: 2rem;
    height: 2rem;
    background: #60a5fa;
    animation: spin 3s linear infinite;
}

/* About Section */
.about-section {
    padding: 5rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    color: white;
    margin-bottom: 4rem;
    letter-spacing: 0.1em;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 28rem;
    margin: 0 auto;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.about-description {
    font-size: 1.25rem;
    color: #fce7f3;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.text-highlight {
    color: #fbbf24;
    font-weight: 700;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 2rem;
    height: 2rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-icon.skull svg {
    color: #f87171;
}

.feature-icon.coins svg {
    color: #fbbf24;
}

.feature-icon.target svg {
    color: #34d399;
}

.feature-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #fce7f3;
}

/* Roadmap Section */
.roadmap-section {
    padding: 5rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.roadmap-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.roadmap-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    border: 4px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.roadmap-card:hover {
    transform: scale(1.05);
}

.roadmap-card.current {
    border-color: #fbbf24;
}

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

.roadmap-icon {
    width: 2rem;
    height: 2rem;
    color: #9ca3af;
}

.roadmap-icon.current {
    color: #fbbf24;
}

.roadmap-icon svg {
    width: 100%;
    height: 100%;
}

.roadmap-info h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
}

.roadmap-info p {
    color: #fce7f3;
    font-size: 1.125rem;
}

.roadmap-tasks {
    list-style: none;
}

.roadmap-tasks li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: white;
}

.roadmap-tasks li::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    background: #f472b6;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Community Section */
.community-section {
    padding: 5rem 1rem;
}

.community-subtitle {
    font-size: 1.25rem;
    color: #fce7f3;
    margin-bottom: 3rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.social-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.social-link {
    padding: 1.5rem;
    border-radius: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    display: block;
}

.social-link:hover {
    transform: scale(1.05);
}

.social-link.telegram {
    background: #06b6d4;
    color: white;
}

.social-link.telegram:hover {
    background: #0891b2;
}

.social-link.twitter {
    background: black;
    color: white;
    border: 2px solid white;
}

.social-link.twitter:hover {
    background: #374151;
}

.social-link svg {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    display: block;
}

.social-link h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.social-link p {
    opacity: 0.8;
}

.contract-address {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 4px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.contract-address h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.contract-code {
    background: rgba(0, 0, 0, 0.6);
    padding: 1rem;
    border-radius: 0.75rem;
    border: 2px solid #f472b6;
    margin-bottom: 1rem;
}

.contract-code code {
    color: #fbbf24;
    font-size: 1.125rem;
    font-family: 'Courier New', monospace;
}

.contract-warning {
    color: #fce7f3;
}

/* Footer Section */
.footer-section {
    padding: 3rem 1rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-top: 4px solid rgba(255, 255, 255, 0.2);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    width: 8rem;
    height: auto;
    margin: 0 auto 1.5rem;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: #f472b6;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-copyright {
    color: #f472b6;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.footer-disclaimer {
    padding: 1rem;
    background: rgba(153, 27, 27, 0.3);
    border-radius: 0.75rem;
    border: 2px solid #f87171;
}

.footer-disclaimer p {
    color: #fecaca;
    font-size: 0.875rem;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translateY(0);
    }
    40%, 43% {
        transform: translateY(-30px);
    }
    70% {
        transform: translateY(-15px);
    }
    90% {
        transform: translateY(-4px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero-title {
        font-size: 6rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .section-title {
        font-size: 4rem;
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .roadmap-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .social-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 8rem;
    }
}

.memes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.memes img {
  flex: 0 1 30%;
  max-width: 30%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  transition: max-width 0.3s;
}

/* Responsive: una immagine per riga su mobile */
@media (max-width: 800px) {
  .memes {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .memes img {
    max-width: 90vw;
    width: 90vw;
    flex-basis: 90%;
    border-radius: 0;
  }
}
