:root {
    --primary-bg: #111;
    --navbar-bg: rgba(255, 255, 255, 0.8);
    --text-primary: #000;
    --text-secondary: #666;
    --border-color: #e5e7eb;
    --spacing-container: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.5;
    background-color: #fff;
    color: var(--text-primary);
    overflow-x: hidden;
}

.site-container {
    width: 100%;
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 20px;
}

/* Announcement Bar */
.announcement-bar {
    background-color: var(--primary-bg);
    color: #fff;
    padding: 10px 0;
    overflow: hidden;
    font-size: 13px;
    font-weight: 500;
    height: 40px;
    display: flex;
    align-items: center;
}

.marquee {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
}

.marquee-inner {
    display: flex;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee span {
    padding-right: 50px;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--navbar-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    height: 70px;
    display: flex;
    align-items: center;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 40px;
    position: relative;
}

.navbar-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.navbar-logo img {
    height: 45px;
    display: block;
}

.connect-wallet-btn {
    background-color: var(--primary-bg);
    color: #fff;
    border: none;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-right: 10px;
}

.connect-wallet-btn:hover {
    background-color: #333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

@media (max-width: 480px) {
    .connect-wallet-btn {
        padding: 6px 10px;
        font-size: 11px;
    }
}

.nav-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-label {
    display: flex;
    align-items: center;
    gap: 5px;
}

.cart-label span {
    font-size: 14px;
    font-weight: 600;
}

/* Sections Spacer */
section {
    padding: 80px 0;
}

/* Hero Section */
.hero {
    padding-top: 40px;
    padding-bottom: 80px;
}

.hero-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-style: italic;
}

.hero-image-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    display: block;
}

.popover-trigger {
    position: absolute;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.popover-dot {
    width: 12px;
    height: 12px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
    transition: width 0.3s, height 0.3s;
}

.popover-trigger:hover .popover-dot {
    width: 18px;
    height: 18px;
    animation: none;
    background-color: #000;
    border: 2px solid #fff;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

/* Status & Message Sections */
.primary-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.primary-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.text-center { text-align: center; }
.max-w-4xl { max-width: 800px; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Pins Section */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    text-align: center;
}

.product-img-wrapper {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
}

.product-img-wrapper img {
    max-width: 100%;
    height: auto;
}

.product-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-info p {
    font-size: 14px;
    color: var(--text-secondary);
}

.product-info strong {
    color: var(--text-primary);
}

/* Footer style */
.site-footer {
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px;
    background-color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.newsletter-form {
    display: flex;
    border: 1px solid #444;
    max-width: 400px;
    margin-bottom: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    outline: none;
    font-size: 14px;
}

.newsletter-form button {
    background: none;
    border: none;
    padding: 0 20px;
    font-size: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s;
}

.newsletter-form button:hover {
    transform: translateX(5px);
}

.newsletter-note {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.footer-copyright {
    font-size: 12px;
    color: var(--text-secondary);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.link-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-column a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 14px;
    transition: opacity 0.2s;
}

.link-column a:hover {
    opacity: 0.7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--text-primary);
    transition: color 0.2s;
}

.social-links a:hover {
    color: var(--text-secondary);
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-logos img {
    height: 24px;
}

.alien-logo {
    height: 32px !important;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 0 20px;
    }
    
    .primary-title {
        font-size: 32px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-logos {
        justify-content: center;
    }
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Specific refined styles */
.hero-img {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover .hero-img {
    transform: scale(1.02);
}

.product-card {
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.secondary-header {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

/* Better typography for links */
a {
    color: inherit;
    text-decoration: none;
}

/* Ensure images don't overflow */
img {
    max-width: 100%;
}
