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

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Burn Notice Banner */
.burn-notice {
    background: linear-gradient(90deg, #ff4444, #ff6b6b, #ff4444);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
    padding: 12px 0;
    text-align: center;
    position: relative;
    width: 100%;
    z-index: 1001;
    border-bottom: 2px solid #ff6b6b;
}

.burn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.burn-icon {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

.burn-text {
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.burn-link {
    background: rgba(255,255,255,0.2);
    color: #fff;
    text-decoration: none;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.3);
}

.burn-link:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.05);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* SMALLCOCK Collection Banner */
.smallcock-notice {
    background: linear-gradient(90deg, #4ecdc4, #45b7aa, #4ecdc4);
    background-size: 200% 100%;
    animation: gradientShift 4s ease-in-out infinite;
    padding: 15px 0;
    text-align: center;
    position: relative;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid #45b7aa;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.smallcock-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.smallcock-header {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.smallcock-icon {
    font-size: 1.4rem;
}

.smallcock-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    letter-spacing: 1px;
}

.smallcock-main h3 {
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 8px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.smallcock-intro {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 12px;
}

.smallcock-logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.smallcock-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff6b6b;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
    flex-shrink: 0;
}

.smallcock-description h3 {
    margin-bottom: 6px;
}

.smallcock-description p {
    margin-bottom: 0;
    font-size: 0.85rem;
    line-height: 1.4;
}

.smallcock-main p {
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
}

.conversion-rates {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 12px;
}

.rate-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    font-size: 0.85rem;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.rate-emoji {
    font-size: 1rem;
}

.rate-emoji.pls-icon,
.rate-emoji.gigacock-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
}

.collection-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.collection-address {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 15px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    flex-wrap: wrap;
    justify-content: center;
}

.address-label {
    font-weight: 600;
    color: #fff;
    font-size: 0.85rem;
}

.address-text {
    font-family: monospace;
    font-size: 0.8rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 8px;
    word-break: break-all;
    text-shadow: none;
}

.copy-address-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 4px 8px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.copy-address-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.collection-progress {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(78, 205, 196, 0.6);
    padding: 12px 16px;
    border-radius: 20px;
    margin-top: 8px;
    width: 100%;
    max-width: 400px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.progress-label {
    font-weight: 600;
    color: #4ecdc4;
    font-size: 0.85rem;
}

.progress-percentage {
    font-weight: 700;
    color: #fff;
    font-size: 0.9rem;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 6px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4ecdc4, #44a08d);
    border-radius: 10px;
    transition: width 0.5s ease-in-out;
    box-shadow: 0 0 10px rgba(78, 205, 196, 0.5);
}

.progress-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.collected-amount {
    color: #4ecdc4;
    font-weight: 600;
}

.total-supply {
    color: #ccc;
}

.sale-status-info {
    margin-top: 10px;
    margin-bottom: 10px;
}

.donation-notice {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.8rem;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
    animation: pulse-warning 2s infinite;
}

@keyframes pulse-warning {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.token-balances {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 10px;
}

.balance-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.balance-emoji {
    font-size: 0.9rem;
}

.pls-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    object-fit: cover;
}

.gigacock-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    object-fit: cover;
}

.balance-label {
    font-weight: 600;
    color: #fff;
    font-size: 0.75rem;
    min-width: 70px;
}

.balance-amount {
    font-weight: 700;
    color: #4ecdc4;
    font-size: 0.8rem;
    margin-left: auto;
    font-family: monospace;
}

.tokenomics-breakdown {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    padding: 2px 0;
}

.breakdown-label {
    color: #ccc;
    font-weight: 500;
}

.breakdown-amount {
    color: #4ecdc4;
    font-weight: 600;
    font-family: monospace;
}

.countdown-info {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 107, 0.2);
    padding: 6px 15px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 107, 0.4);
}

.countdown-emoji {
    font-size: 1rem;
}

.countdown-text {
    font-weight: 600;
    color: #fff;
    font-size: 0.85rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    font-family: 'Orbitron', monospace;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .smallcock-notice {
        padding: 12px 0;
    }
    
    .smallcock-content {
        gap: 10px;
        padding: 0 15px;
    }
    
    .smallcock-title {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .smallcock-main h3 {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .smallcock-main p {
        font-size: 0.8rem;
        text-align: center;
    }
    
    .conversion-rates {
        gap: 10px;
    }
    
    .rate-item {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    
    .collection-address {
        flex-direction: column;
        gap: 6px;
        padding: 8px 12px;
    }
    
    .address-text {
        font-size: 0.7rem;
        max-width: 100%;
    }
    
    .countdown-info {
        padding: 5px 12px;
    }
    
    .countdown-text {
        font-size: 0.75rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .burn-text {
        font-size: 0.85rem;
    }
    .burn-link {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
}

/* Background floating elements */
.bg-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-emoji {
    position: fixed;
    font-size: 2rem;
    animation: floatContinuous 8s infinite linear;
    pointer-events: none;
    user-select: none;
}

.floating-emoji:nth-child(1) { 
    animation: floatAcross1 15s ease-in-out infinite;
}
.floating-emoji:nth-child(2) { 
    animation: floatAcross2 18s ease-in-out infinite;
}
.floating-emoji:nth-child(3) { 
    animation: floatAcross3 12s ease-in-out infinite;
}
.floating-emoji:nth-child(4) { 
    animation: floatAcross4 20s ease-in-out infinite;
}
.floating-emoji:nth-child(5) { 
    animation: floatAcross5 16s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-10px) rotate(-5deg); }
    75% { transform: translateY(-15px) rotate(3deg); }
}

@keyframes floatAcross1 {
    0% { 
        left: -5vw; 
        top: 10vh; 
        transform: rotate(0deg); 
    }
    25% { 
        left: 30vw; 
        top: 20vh; 
        transform: rotate(90deg); 
    }
    50% { 
        left: 80vw; 
        top: 60vh; 
        transform: rotate(180deg); 
    }
    75% { 
        left: 50vw; 
        top: 80vh; 
        transform: rotate(270deg); 
    }
    100% { 
        left: -5vw; 
        top: 10vh; 
        transform: rotate(360deg); 
    }
}

@keyframes floatAcross2 {
    0% { 
        right: -5vw; 
        top: 80vh; 
        transform: rotate(0deg); 
    }
    25% { 
        right: 40vw; 
        top: 20vh; 
        transform: rotate(-90deg); 
    }
    50% { 
        right: 80vw; 
        top: 40vh; 
        transform: rotate(-180deg); 
    }
    75% { 
        right: 20vw; 
        top: 70vh; 
        transform: rotate(-270deg); 
    }
    100% { 
        right: -5vw; 
        top: 80vh; 
        transform: rotate(-360deg); 
    }
}

@keyframes floatAcross3 {
    0% { 
        left: 50vw; 
        top: -5vh; 
        transform: rotate(0deg); 
    }
    25% { 
        left: 10vw; 
        top: 30vh; 
        transform: rotate(120deg); 
    }
    50% { 
        left: 90vw; 
        top: 50vh; 
        transform: rotate(240deg); 
    }
    75% { 
        left: 30vw; 
        top: 80vh; 
        transform: rotate(300deg); 
    }
    100% { 
        left: 50vw; 
        top: -5vh; 
        transform: rotate(360deg); 
    }
}

@keyframes floatAcross4 {
    0% { 
        left: 90vw; 
        top: 30vh; 
        transform: rotate(0deg); 
    }
    25% { 
        left: 20vw; 
        top: 70vh; 
        transform: rotate(-120deg); 
    }
    50% { 
        left: 70vw; 
        top: 10vh; 
        transform: rotate(-240deg); 
    }
    75% { 
        left: 10vw; 
        top: 50vh; 
        transform: rotate(-300deg); 
    }
    100% { 
        left: 90vw; 
        top: 30vh; 
        transform: rotate(-360deg); 
    }
}

@keyframes floatAcross5 {
    0% { 
        left: 10vw; 
        top: 90vh; 
        transform: rotate(0deg); 
    }
    20% { 
        left: 80vw; 
        top: 20vh; 
        transform: rotate(72deg); 
    }
    40% { 
        left: 30vw; 
        top: 40vh; 
        transform: rotate(144deg); 
    }
    60% { 
        left: 70vw; 
        top: 80vh; 
        transform: rotate(216deg); 
    }
    80% { 
        left: 20vw; 
        top: 60vh; 
        transform: rotate(288deg); 
    }
    100% { 
        left: 10vw; 
        top: 90vh; 
        transform: rotate(360deg); 
    }
}

.floating-emoji-dynamic {
    position: fixed;
    pointer-events: none;
    z-index: -1;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-120vh) rotate(360deg);
        opacity: 0;
    }
}

/* Navigation */
.navbar {
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

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

.logo-text {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.5rem;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

.nav-link:hover {
    color: #4ecdc4;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
    text-align: center;
}

.giga {
    color: #ff6b6b;
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

.cock {
    color: #4ecdc4;
    text-shadow: 0 0 20px rgba(78, 205, 196, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
    animation-delay: 0.5s;
}

@keyframes glow {
    from { text-shadow: 0 0 20px currentColor; }
    to { text-shadow: 0 0 30px currentColor, 0 0 40px currentColor; }
}

.title-subtitle {
    font-size: 1rem;
    color: #888;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ccc;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    width: 100%;
}

.stat {
    text-align: center;
    flex: 0 0 auto;
    min-width: 110px;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4ecdc4;
}

.stat-label {
    font-size: 0.9rem;
    color: #888;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #4ecdc4;
    border: 2px solid #4ecdc4;
}

.btn-secondary:hover {
    background: #4ecdc4;
    color: #000;
    transform: translateY(-3px);
}

.btn-liberty {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid #ff9500;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: center;
    padding: 0.9rem 1.8rem;
}

.btn-liberty:hover {
    background: #ff9500;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 149, 0, 0.4);
}

.liberty-icon {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.btn-liberty:hover .liberty-icon {
    filter: brightness(0);
}

.btn-liberty-large {
    background: rgba(255, 149, 0, 0.1);
    color: #fff;
    border: 2px solid #ff9500;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    font-size: 1.2rem;
    padding: 1.4rem 2.8rem;
}

.btn-liberty-large:hover {
    background: #ff9500;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 149, 0, 0.4);
}

.liberty-icon-large {
    width: 36px;
    height: 36px;
    filter: brightness(0) invert(1);
}

.btn-liberty-large:hover .liberty-icon-large {
    filter: brightness(0);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

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

.hero-image {
    position: relative;
    text-align: center;
    transform: none !important;
}

.character-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(78, 205, 196, 0.3));
}

.bounce-animation {
    animation: bounce 3s ease-in-out infinite;
}

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

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: glow-pulse 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.2); }
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* About Section */
.about-section {
    background: rgba(255, 255, 255, 0.02);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

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

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(78, 205, 196, 0.3);
}

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

.story-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #4ecdc4;
}

.story-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Tokenomics Section */
.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.token-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.token-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 107, 0.3);
}

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

.token-card h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.contract-address {
    font-family: monospace;
    font-size: 0.9rem;
    word-break: break-all;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.copy-btn {
    background: #4ecdc4;
    border: none;
    padding: 0.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

.copy-btn:hover {
    background: #45b7aa;
}

.token-card a {
    color: #4ecdc4;
    text-decoration: none;
}

.token-card a:hover {
    text-decoration: underline;
}

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

.community-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    min-height: 500px;
}

.community-text {
    padding-right: 2rem;
}

.community-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #4ecdc4;
    line-height: 1.2;
}

.community-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #ccc;
    line-height: 1.6;
}

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

.feature {
    font-size: 1.1rem;
    color: #4ecdc4;
    padding-left: 0.5rem;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-social {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid transparent;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 150px;
}

.btn-social.telegram {
    border-color: #0088cc;
    box-shadow: 0 0 15px rgba(0, 136, 204, 0.3);
}

.btn-social.telegram:hover {
    background: #0088cc;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
}

.btn-social.twitter {
    border-color: #1da1f2;
    box-shadow: 0 0 15px rgba(29, 161, 242, 0.3);
}

.btn-social.twitter:hover {
    background: #1da1f2;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(29, 161, 242, 0.4);
}

.community-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.community-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 107, 107, 0.3));
}

.floating-animation {
    animation: float 4s ease-in-out infinite;
}

/* Featured Tweet Section */
.tweet-section {
    background: linear-gradient(135deg, rgba(255, 149, 0, 0.1) 0%, rgba(255, 149, 0, 0.05) 100%);
    padding: 4rem 0;
}

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

.tweet-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 149, 0, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(255, 149, 0, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
}

.tweet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 149, 0, 0.3);
    border-color: rgba(255, 149, 0, 0.5);
}

.tweet-image-container {
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.tweet-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    cursor: pointer;
    border-radius: 10px;
}

.tweet-card:hover .tweet-image {
    transform: scale(1.02);
}

.tweet-image:focus {
    outline: 2px solid #ff9500;
    outline-offset: 2px;
}

.tweet-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.tweet-link {
    background: rgba(29, 161, 242, 0.2);
    color: #1da1f2;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    border: 1px solid #1da1f2;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tweet-link:hover {
    background: #1da1f2;
    color: #fff;
    transform: translateY(-2px);
}

.tweet-cta {
    background: rgba(255, 149, 0, 0.2);
    color: #ff9500;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    border: 1px solid #ff9500;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tweet-cta:hover {
    background: #ff9500;
    color: #000;
    transform: translateY(-2px);
}

.liberty-icon-tweet {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.tweet-cta:hover .liberty-icon-tweet {
    filter: brightness(0);
}

/* Chart Section */
.chart-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(26, 26, 46, 0.15) 50%, rgba(22, 33, 62, 0.2) 100%);
    padding: 5rem 0;
    border-top: 1px solid rgba(78, 205, 196, 0.2);
    border-bottom: 1px solid rgba(78, 205, 196, 0.2);
}

.chart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.chart-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(78, 205, 196, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* DexScreener embed styles */
#dexscreener-embed {
    position: relative;
    width: 100%;
    padding-bottom: 125%;
    border-radius: 15px;
    overflow: hidden;
}

@media(min-width: 1400px) {
    #dexscreener-embed {
        padding-bottom: 65%;
    }
}

#dexscreener-embed iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 0;
    border-radius: 15px;
}

.chart-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(78, 205, 196, 0.2);
    height: fit-content;
    backdrop-filter: blur(10px);
}

.chart-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #4ecdc4;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

.chart-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 2rem;
}

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

.btn-chart-link {
    background: rgba(78, 205, 196, 0.1);
    color: #4ecdc4;
    border: 2px solid #4ecdc4;
    padding: 1rem 1.5rem;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-chart-link:hover {
    background: rgba(78, 205, 196, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.3);
}

/* Mobile styles for chart section */
@media (max-width: 1024px) {
    .chart-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .chart-info {
        text-align: center;
    }
    
    #dexscreener-embed {
        padding-bottom: 100%;
    }
}

@media (max-width: 768px) {
    .chart-section {
        padding: 3rem 0;
    }
    
    .chart-wrapper {
        padding: 1rem;
    }
    
    .chart-info {
        padding: 1.5rem;
    }
    
    .chart-info h3 {
        font-size: 1.5rem;
    }
    
    .chart-info p {
        font-size: 0.9rem;
    }
    
    #dexscreener-embed {
        padding-bottom: 120%;
    }
}

/* Buy Section */
.buy-content {
    text-align: center;
}

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

.step {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.step h3 {
    color: #4ecdc4;
    margin-bottom: 1rem;
}

.buy-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.btn-mega {
    font-size: 1.3rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #ff6b6b);
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

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

.btn-chart {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid #4ecdc4;
}

.btn-chart:hover {
    background: rgba(78, 205, 196, 0.2);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', monospace;
    font-weight: bold;
    font-size: 1.2rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    color: #ccc;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-link:hover {
    color: #4ecdc4;
    border-color: #4ecdc4;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

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

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

.disclaimer {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98) !important;
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 4rem;
        transition: right 0.3s ease;
        z-index: 9999;
        border-left: 2px solid rgba(78, 205, 196, 0.3);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    }
    
    /* Dodatkowe tło overlay */
    .nav-menu::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        z-index: -2;
    }
    
    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 46, 0.95) 50%, rgba(22, 33, 62, 0.95) 100%);
        z-index: -1;
    }
    
    .nav-menu.active {
        right: 0;
        background: rgba(10, 10, 10, 0.98) !important;
        display: flex;
        z-index: 10000;
    }
    
    .nav-menu.active::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(26, 26, 46, 0.95) 50%, rgba(22, 33, 62, 0.95) 100%);
        z-index: -1;
    }
    
    .nav-menu.active::after {
        content: '🚀 $GIGACOCK MENU 🚀';
        display: block;
        color: #4ecdc4;
        font-weight: bold;
        font-size: 1.2rem;
        text-align: center;
        padding: 1rem 0 2rem 0;
        border-bottom: 2px solid rgba(78, 205, 196, 0.3);
        margin-bottom: 2rem;
        width: 100%;
        background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        position: relative;
        z-index: 10;
        order: -1;
    }
    
    .nav-link {
        font-size: 1.4rem;
        padding: 1.5rem 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(78, 205, 196, 0.2);
        background: rgba(255, 255, 255, 0.15);
        margin-bottom: 0.5rem;
        border-radius: 10px;
        margin-left: 1rem;
        margin-right: 1rem;
        width: calc(100% - 2rem);
        transition: all 0.3s ease;
        border: 1px solid rgba(78, 205, 196, 0.2);
        backdrop-filter: blur(10px);
        position: relative;
        z-index: 10;
    }
    
    .nav-link:hover {
        background: rgba(78, 205, 196, 0.1);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(78, 205, 196, 0.2);
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
        background: #4ecdc4;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
        background: #4ecdc4;
    }
    
    .hamburger.active {
        position: fixed;
        right: 20px;
        top: 20px;
        z-index: 10000;
        background: rgba(0, 0, 0, 0.9);
        border-radius: 50%;
        padding: 15px;
        box-shadow: 0 0 20px rgba(78, 205, 196, 0.5);
    }
}

/* Mobile override: keep desktop nav on mobile */
@media (max-width: 768px) {
    .hamburger {
        display: none !important;
    }
    
    .nav-menu,
    .nav-menu.active {
        position: static !important;
        top: auto !important;
        right: auto !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        backdrop-filter: none !important;
        flex-direction: row !important;
        justify-content: flex-end !important;
        align-items: center !important;
        padding: 0 !important;
        gap: 2rem !important;
        border: 0 !important;
        box-shadow: none !important;
        transition: none !important;
        z-index: auto !important;
    }

    .nav-menu::before,
    .nav-menu::after,
    .nav-menu.active::before,
    .nav-menu.active::after {
        content: none !important;
    }

    .nav-link {
        width: auto !important;
        padding: 0 !important;
        border: 0 !important;
        background: transparent !important;
        margin: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
    }
}

@media (max-width: 1024px) {
    .community-content {
        gap: 3rem;
    }
    
    .community-text {
        padding-right: 1rem;
    }
    
    .community-text h3 {
        font-size: 1.8rem;
    }
    
    .tokenomics-grid {
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .burn-notice {
        padding: 8px 0;
    }
    
    .burn-content {
        flex-direction: column;
        gap: 8px;
        padding: 0 10px;
    }
    
    .burn-text {
        font-size: 0.8rem;
        text-align: center;
    }
    
    .burn-link {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .navbar {
        padding: 0.8rem 0;
    }
    
    .hero-section {
        padding-top: 1rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98) !important;
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 4rem;
        transition: right 0.3s ease;
        z-index: 9999;
        border-left: 2px solid rgba(78, 205, 196, 0.3);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    }
    
    .nav-menu.active {
        right: 0;
        background: rgba(10, 10, 10, 0.98) !important;
        display: flex;
        z-index: 10000;
    }
    
    .nav-menu.active::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(26, 26, 46, 0.95) 50%, rgba(22, 33, 62, 0.95) 100%);
        z-index: -1;
    }
    
    .nav-menu.active::after {
        content: '🚀 $GIGACOCK MENU 🚀';
        display: block;
        color: #4ecdc4;
        font-weight: bold;
        font-size: 1.2rem;
        text-align: center;
        padding: 1rem 0 2rem 0;
        border-bottom: 2px solid rgba(78, 205, 196, 0.3);
        margin-bottom: 2rem;
        width: 100%;
        background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        position: relative;
        z-index: 10;
        order: -1;
    }
    
    .nav-link {
        font-size: 1.4rem;
        padding: 1.5rem 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(78, 205, 196, 0.2);
        background: rgba(255, 255, 255, 0.15);
        margin-bottom: 0.5rem;
        border-radius: 10px;
        margin-left: 1rem;
        margin-right: 1rem;
        width: calc(100% - 2rem);
        transition: all 0.3s ease;
        border: 1px solid rgba(78, 205, 196, 0.2);
        backdrop-filter: blur(10px);
        position: relative;
        z-index: 10;
    }
    
    .nav-link:hover {
        background: rgba(78, 205, 196, 0.1);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(78, 205, 196, 0.2);
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
        background: #4ecdc4;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
        background: #4ecdc4;
    }
    
    .hamburger.active {
        position: fixed;
        right: 20px;
        top: 20px;
        z-index: 10000;
        background: rgba(0, 0, 0, 0.9);
        border-radius: 50%;
        padding: 15px;
        box-shadow: 0 0 20px rgba(78, 205, 196, 0.5);
    }
}

@media (max-width: 480px) {
    .burn-notice {
        padding: 6px 0;
    }
    
    .burn-text {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .burn-link {
        font-size: 0.65rem;
        padding: 3px 6px;
    }
    
    .navbar {
        padding: 0.6rem 0;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .logo-img {
        width: 32px;
        height: 32px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .hero-section {
        padding-top: 1rem;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .title-subtitle {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0 5px;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        gap: 0.8rem;
        margin-bottom: 1.2rem;
    }
    
    .stat-value {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-buttons {
        gap: 0.6rem;
    }
    
    .btn {
        width: 100%;
        max-width: 260px;
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .liberty-icon {
        width: 24px;
        height: 24px;
    }
    
    .story-card {
        padding: 1.2rem;
    }
    
    .story-icon {
        font-size: 2.5rem;
    }
    
    .story-card h3 {
        font-size: 1.2rem;
    }
    
    .story-card p {
        font-size: 0.9rem;
    }
    
    .community-text h3 {
        font-size: 1.4rem;
    }
    
    .community-text p {
        font-size: 0.95rem;
    }
    
    .feature {
        font-size: 1rem;
    }
    
    .btn-social {
        min-width: 180px;
        max-width: 260px;
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }
    
    .token-card {
        padding: 1.2rem;
        min-height: 140px;
    }
    
    .token-icon {
        font-size: 2rem;
    }
    
    .token-card h3 {
        font-size: 1.1rem;
    }
    
    .contract-address {
        font-size: 0.7rem;
        padding: 0.4rem;
    }
    
    .copy-btn {
        padding: 0.4rem;
        font-size: 0.9rem;
    }
    
    .step {
        padding: 1.2rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .step h3 {
        font-size: 1.1rem;
    }
    
    .step p {
        font-size: 0.9rem;
    }
    
    .btn-mega {
        font-size: 1rem;
        padding: 1rem 1.5rem;
        max-width: 280px;
    }
    
    .btn-liberty-large {
        font-size: 0.95rem;
        padding: 1rem 1.5rem;
        max-width: 280px;
    }
    
    .liberty-icon-large {
    .tweet-card {
        padding: 0.8rem;
        border-radius: 15px;
    }
    
    .tweet-link,
    .tweet-cta {
        max-width: 220px;
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .liberty-icon-tweet {
        width: 16px;
        height: 16px;
    }
    
    .floating-emoji {
        font-size: 1.3rem;
    }
    
    .footer-content {
        padding: 0 15px;
    }
    
    .footer-logo {
        font-size: 1rem;
    }
    
    .footer-logo-img {
        width: 25px;
        height: 25px;
    }
    
    .social-link {
        width: 130px;
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .disclaimer {
        font-size: 0.7rem;
    }
    
    section {
        padding: 2.5rem 0;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Final mobile override: hide nav entirely on mobile */
@media (max-width: 768px) {
    .hamburger {
        display: none !important;
    }
    
    .nav-menu,
    .nav-menu.active {
        display: none !important;
    }
    
    .nav-menu::before,
    .nav-menu::after,
    .nav-menu.active::before,
    .nav-menu.active::after {
        content: none !important;
    }
}

/* Mobile layout: image first, then text */
@media (max-width: 768px) {
    /* Hero at top */
    .hero-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        text-align: center !important;
    }
    .hero-image { order: 0; }
    .hero-text { order: 1; }

    /* Join the Giga Army section */
    .community-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        text-align: center !important;
    }
    .community-image { order: 0; }
    .community-text { order: 1; padding-right: 0 !important; }

    .community-image img {
        margin: 0 auto;
    }
}

/* Mobile navbar: smaller logo, tighter bar, no extra push */
@media (max-width: 768px) {
    .navbar { padding: 0.5rem 0 !important; }
    .nav-container { padding: 0 15px !important; }
    .logo-img { width: 28px !important; height: 28px !important; }
    .logo-text { font-size: 1.1rem !important; }
    .hero-section { padding-top: 0.5rem !important; }
}

/* Mobile: align buttons uniformly and center them */
@media (max-width: 768px) {
    /* Hero buttons, Buy buttons and Community social buttons */
    .hero-buttons .btn,
    .buy-buttons .btn,
    .btn-social {
        width: 100% !important;
        max-width: 320px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .social-buttons {
        width: 100% !important;
        justify-content: center !important;
        align-items: center !important;
        flex-direction: column !important;
        gap: 1rem !important;
    }
}


