* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.chalkboard-bg {
    min-height: 100vh;
    background: #000000;
    background-image: 
        radial-gradient(circle at 20% 50%, #36454f 0%, #000000 50%),
        radial-gradient(circle at 80% 80%, #2f2f2f 0%, #000000 50%),
        repeating-linear-gradient(
            0deg,
            rgba(54, 69, 79, 0.1) 0px,
            transparent 1px,
            transparent 2px,
            rgba(54, 69, 79, 0.1) 3px
        );
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    padding-bottom: 0;
}

.content {
    text-align: center;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 120px;
}

.logo {
    max-width: 250px;
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.tagline {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.9;
}

.brand-name {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    line-height: 1.1;
}

.chatter {
    color: #fec021;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carts {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.coming-soon {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.wood-surface {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, #8b6f47 0%, #6b5233 100%);
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.1) 2px,
            rgba(0, 0, 0, 0.1) 4px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 1px,
            rgba(0, 0, 0, 0.05) 1px,
            rgba(0, 0, 0, 0.05) 2px
        );
    z-index: 1;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .brand-name {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
    
    .coming-soon {
        font-size: 1rem;
    }
    
    .logo {
        max-width: 180px;
    }
    
    .content {
        padding-bottom: 100px;
    }
    
    .wood-surface {
        height: 100px;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 2rem;
    }
    
    .logo {
        max-width: 150px;
    }
}

