:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --accent-blue: #00A3FF;
    /* Cyan/Blue for price and glows */
    --font-primary: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}

/* Header */
.logo-container {
    margin-top: 40px;
    margin-bottom: 20px;
    z-index: 10;
}

.logo-image {
    height: 48px;
    /* Slightly larger for impact */
    width: auto;
}

.logo-text span {
    color: white;
    font-weight: 900;
    /* Extra bold for 5M */
}

.logo-icon {
    font-size: 24px;
    /* Placeholder size for 5M icon */
}

.logo-image {
    height: 80px;
    /* Adjust based on logo aspect ratio */
    width: auto;
}

/* Hero Section */
.hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
    justify-content: flex-start;
    /* Start from top to allow image to push down */
    padding: 0 20px;
   
}


.date{
  font-size:14px;
  opacity:.9;
  margin-bottom:26px;
}

/* The tilted image container */
.product-visual {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
    /* Larger image size */
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Placeholder for the user's image */
.product-img-placeholder {
    width: 100%;
    height: auto;
    /* transform: rotate(-15deg);  Assumption: image is already rotated/styled in the png */
    /* filter: drop-shadow(0 0 50px rgba(0, 163, 255, 0.3));  Removed as per "not image format" request, or maybe they want it clean */
    z-index: 1;
}

/* Background gradient blur behind the image */


.title-large {
    font-size: 56px;
    /* Larger title */
    font-weight: 700;
    margin-top: -60px;
    /* Overlap the image slightly */
    margin-bottom: 8px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
    /* Shadow to separate from image */
    z-index: 2;
    position: relative;
}

.subtitle {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 50px;
    letter-spacing: 1px;
    z-index: 2;
    position: relative;
}

.description {
    font-size: 16px;
    font-weight: 300;
    color: #cccccc;
    margin-bottom: 1%;
    line-height: 1.5;
    max-width: 500px;
}

/* Countdown Timer */
.launch-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 1%;
}

.timer-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-val {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    color: white;
    font-variant-numeric: tabular-nums;
    /* Prevents jumping */
    text-shadow: 0 0 20px rgba(0, 163, 255, 0.5);
    /* Glow effect */
}

.label {
    font-size: 12px;
    text-transform: uppercase;
    color: #888;
    margin-top: 4px;
    letter-spacing: 1px;
}

.timer-separator {
    font-size: 24px;
    font-weight: 700;
    color: #444;
    margin-top: -16px;
    /* Align with numbers */
}

.launched-msg {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-blue);
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

/* Pre-order Button */
.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 1%;
}

.btn-preorder {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 16px 60px;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
}

.btn-preorder:hover{
  background:#ffffff;
  color:#000;
  box-shadow:0 0 22px rgba(60,255,0,.8);
}

.price-tag {
    color: var(--accent-blue);
    font-size: 18px;
    font-weight: 600;
}

/* Footer & Socials */
.footer-container {
    width: 100%;
    padding: 40px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 12px;
    color: #888;
    max-width: 1200px;
}

.contact-info {
    text-align: center;
    flex-grow: 1;
}

.contact-info p {
    margin: 4px 0;
}

.contact-info strong {
    color: white;
}

.social-icons-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;

    position: fixed;   /* 🔥 fixed on screen */
    bottom: 40px;
    right: 40px;

    z-index: 9999;     /* stays above everything */
}

.social-icon {
    width: 40px;
    height: 40px;
    opacity: 0.7;
    transition: opacity 0.2s;
    transition: transform 0.2s;
    /* Add smooth scale transition */
    display: block;
}

.social-icon:hover {
    opacity: 1;
    transform: scale(1.1);
    /* Slight pop effect */
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* filter: invert(1); removed to show original logo colors */
}

/* Responsive */
@media (max-width: 768px) {
    .title-large {
        font-size: 36px;
    }

    .launch-date {
        font-size: 24px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }

    .social-icons-stack {
        position: static;
        flex-direction: row;
        margin-top: 20px;
    }
}