
/*
Theme Name: Sqwead Game
Description: Un tema WordPress one-page per la meme coin Sqwead Game ispirata a Squid Game
Version: 1.0
Author: Sqwead Team
*/

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e91e63;
    --secondary-color: #000000;
    --accent-color: #ffc107;
    --text-light: #ffffff;
    --text-dark: #333333;
    --gradient-bg: linear-gradient(135deg, #e91e63, #ad1457, #880e4f);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    overflow-x: hidden;
    background: var(--gradient-bg);
}

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

/* Header */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand .logo {
    height: 50px;
    width: auto;
}

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

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: all 0.3s ease;
}

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

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

.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.geometric-shapes .circle,
.geometric-shapes .triangle,
.geometric-shapes .square {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.geometric-shapes .circle {
    top: 20%;
    left: 10%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent-color);
    animation-delay: 0s;
}

.geometric-shapes .triangle {
    top: 60%;
    right: 15%;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: 2s;
}

.geometric-shapes .square {
    bottom: 30%;
    left: 20%;
    width: 50px;
    height: 50px;
    background: #4caf50;
    animation-delay: 4s;
}

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

.hero-logo .main-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    animation: bounce 2s ease-in-out infinite;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    border: 3px solid;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--text-light);
    border-color: var(--text-light);
}

.btn-primary:hover {
    background: var(--text-light);
    color: var(--secondary-color);
    transform: scale(1.05);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-color);
    transform: scale(1.05);
}

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

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid var(--text-light);
    border-bottom: 3px solid var(--text-light);
    transform: rotate(45deg);
    margin: 0 auto;
}

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

.floating-item {
    position: absolute;
    animation: float 8s ease-in-out infinite;
}

.floating-item.lollipop {
    top: 15%;
    right: 10%;
    width: 60px;
    height: 60px;
    background: conic-gradient(#ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57, #ff9ff3, #54a0ff);
    border-radius: 50%;
    animation-delay: 1s;
}

.floating-item.guard {
    bottom: 20%;
    left: 5%;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    animation-delay: 3s;
}

/* Sections */
section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-section {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

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

.about-text .lead {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.highlight {
    color: var(--accent-color);
    font-weight: 900;
}

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

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

.feature-icon {
    font-size: 2rem;
    min-width: 60px;
    text-align: center;
}

.feature-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.feature-content p {
    opacity: 0.9;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* Tokenomics Section */
.tokenomics-section {
    background: rgba(0, 0, 0, 0.2);
}

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

.chart-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 5px solid var(--color);
}

.chart-label {
    font-weight: 600;
}

.chart-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-color);
}

.tokenomics-info {
    text-align: center;
}

.total-supply {
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.total-supply h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.supply-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tax-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.tax-item {
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
}

.tax-item.buy {
    border: 2px solid #4caf50;
}

.tax-item.sell {
    border: 2px solid #f44336;
}

.tax-item h4 {
    margin-bottom: 0.5rem;
}

.tax-rate {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
}

/* Roadmap Section */
.roadmap-section {
    background: rgba(0, 0, 0, 0.3);
}

.roadmap-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.roadmap-item {
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.roadmap-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.roadmap-item.current {
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
}

.roadmap-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.roadmap-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.roadmap-content p {
    opacity: 0.9;
    margin-bottom: 1rem;
}

.roadmap-content ul {
    list-style: none;
}

.roadmap-content li {
    padding: 0.25rem 0;
    opacity: 0.8;
}

/* Community Section */
.community-section {
    background: rgba(0, 0, 0, 0.2);
}

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

.social-link {
    display: block;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.social-link.telegram {
    border-color: #0088cc;
}

.social-link.twitter {
    border-color: #1da1f2;
}

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

.social-link h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.social-link p {
    opacity: 0.8;
}

.contract-info {
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--primary-color);
}

.contract-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contract-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.6);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.contract-address code {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    color: var(--accent-color);
}

.copy-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

.copy-btn:hover {
    background: #ad1457;
}

.contract-warning {
    font-size: 0.9rem;
    opacity: 0.8;
    color: #ffeb3b;
}

/* Footer */
.site-footer {
    background: rgba(0, 0, 0, 0.6);
    padding: 3rem 0;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

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

.footer-logo {
    height: 80px;
    margin-bottom: 2rem;
    opacity: 0.8;
}

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

.footer-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-light);
}

.copyright {
    margin-bottom: 2rem;
    opacity: 0.8;
}

.disclaimer {
    background: rgba(139, 69, 19, 0.3);
    padding: 1rem;
    border-radius: 10px;
    border: 2px solid #ff5722;
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer p {
    font-size: 0.9rem;
    color: #ffcdd2;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content,
    .tokenomics-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tax-info {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
body {
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
