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

body {
    font-family: 'Arial', sans-serif;
    min-height: 100vh;
    overflow: hidden;
}

.full-page-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: url('gold_bars_coins.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.full-page-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 300;
}

.watermark {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.3);
    z-index: 2;
    font-weight: 300;
    letter-spacing: 2px;
} 