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

body {
    background-color: #5B5BD6; /* Midnight Purple */
    color: #F8F9FA; /* Off-white for readability */
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* Navigation / Logo */
nav {
    padding: 2rem;
    width: 100%;
    max-width: 1000px;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.05em;
}

.logo span {
    color: #8F00FF; /* Electric Violet accent */
}

/* Hero Section */
.hero {
    text-align: center;
  
    padding: 0 1rem;
}

h1 {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

h1 span {
    font-weight: 300; /* Makes "Stay anonymous" look lighter/whispier */
    opacity: 0.8;
}

p {
    font-weight: 300;
    font-size: 1.2rem;
    color: #B0A8BF; /* Muted purple-grey */
    margin-bottom: 2rem;
}

/* Post Button */
.cta-button {
    background-color: #5B5BD6;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px; /* Rounded pill shape */
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
}

.cta-button:hover {
    background-color: #A333FF;
    transform: translateY(-2px);
}
.bottom-logo {
   
    bottom: 0;
    left: 0;
    right: 0;

    width: 100%;
    max-width: 100%;

    height: 60px;
  
    display: flex;
    justify-content: space-around;
    align-items: center;

    z-index: 99999;

  
    margin: 0;

    box-sizing: border-box;
}