/* General Reset */
body, html {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: #232323 url(images/bg.png) repeat;
    box-sizing: border-box;
}

/* Wrapper Styles */
.wrapper {
    width: 960px;
    min-height: 720px;
    margin: 0 auto;
    text-align: center;
    background: url(images/bg-light.png) no-repeat;
    padding-top: 10px;
}

/* Logo Styles */
img {
    max-width: 100%; /* Ensure the logo scales within its container */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Center the image within its container */
    margin: 0 auto; /* Center the logo horizontally */
    padding: 10px 0; /* Add spacing around the logo */
}

/* Typography */
h1 {
    text-transform: uppercase;
    color: #ffffff;
    font-family: 'LeagueGothicRegular', Arial, sans-serif;
    font-size: 80px;
    font-weight: lighter;
    text-shadow: 0px 2px 0px #000;
    margin: 10px 0 0 0;
}

h2 {
    text-transform: uppercase;
    color: #ffffff;
    font-family: 'LeagueGothicRegular', Arial, sans-serif;
    font-size: 24px;
    font-weight: lighter;
    text-shadow: 0px 2px 0px #000;
    margin: 15px 0;
    text-align: center;
}

p {
    color: #fff;
    margin: 0;
    font-size: 16px;
    text-shadow: 0 -2px 0 #000;
}

p.credit {
    font-size: 12px;
    margin: 20px 0;
    color: #ccc;
}

/* Links */
a {
    color: #77dff1;
    text-decoration: none;
}

/* Horizontal Rule */
.hr {
    display: block;
    border: none;
    width: 100%;
    height: 2px;
    background: url(images/divider.png);
    margin: 10px 0;
}

/* Progress Section */
.progress {
    height: 110px;
    margin: 80px 0;
    background: url(images/progress-container.png) no-repeat;
    position: relative;
}

.progress-bar-container {
    width: 100%;
    max-width: 930px;
    height: 70px;
    margin: 0 auto;
    position: relative;
}

.progress-bar {
    height: 43px;
    background: #72dbf1 url(images/progress-bar.png) repeat-x;
    position: absolute;
    top: 14px;
    left: 0;
    border-radius: 10px;
}

/* Launch Day Hat */
.txt-launch-day-hat {
    background: url(images/txt-launch-day-hat.png) no-repeat;
    width: 117px;
    height: 159px;
    position: absolute;
    top: -120px;
    right: -45px;
}

.txt-launch-day {
    background: url(images/txt-launch-day.png) no-repeat;
    width: 112px;
    height: 110px;
    position: absolute;
    top: -80px;
    right: -40px;
}

/* Mailing List Section */
.mailing-list h2 {
    width: 100%;
    text-align: center;
}

/* Clearfix */
.clear {
    clear: both;
}

/* Tipsy Styles */
.tipsy {
    margin-bottom: 25px;
    font-size: 18px;
    opacity: 0.8;
    background-repeat: no-repeat;
    background-image: url(images/tipsy.png);
    font-family: 'LeagueGothicRegular';
    text-transform: uppercase;
}

.tipsy-inner {
    padding: 10px 20px;
    background-color: black;
    color: white;
    max-width: 400px;
    text-align: right;
    box-shadow: 0 20px 15px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

.tipsy-north { background-position: top center; }
.tipsy-south { background-position: bottom center; }
.tipsy-east { background-position: right center; }
.tipsy-west { background-position: left center; }

/* Responsive Styles */
@media screen and (max-width: 768px) {
    /* Wrapper Adjustments */
    .wrapper {
        width: 90%; /* Adjust wrapper width for smaller screens */
        padding: 10px;
    }

    /* Logo Adjustments */
    img {
        width: 80%; /* Shrink logo slightly on smaller screens */
    }

    /* Typography Adjustments */
    h1 {
        font-size: 2.5rem; /* Adjust heading size */
    }

    h2 {
        font-size: 1.5rem;
    }

    p {
        font-size: 1rem;
    }

    /* Progress Bar Adjustments */
    .progress-bar-container {
        width: 90%; /* Scale the progress bar for smaller screens */
    }
}
