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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.4;
    background-color: #333333;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2)),
        url('https://www.houseofwhitetie.com/reaper/wt_graphical_sends_persp.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #333333;
    min-height: 100vh;
}

.howt-logo-link {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    transition: opacity 0.3s ease;
}

.howt-logo-link:hover {
    opacity: 0.8;
}

.howt-logo {
    width: 200px;
    height: auto;
    display: block;
    margin: 0;
}

#main {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: white;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-align: center;
    color: #333333;
    letter-spacing: -0.1rem;
}

h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 2.5rem 0 1.5rem;
    padding-bottom: 0.5rem;
    color: #333333;
    letter-spacing: -0.05rem;
}

p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 2rem auto;
}

.download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: fit-content;
    margin: 2rem auto;
    background: #333333;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
    border: 2px solid #333333;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.download:hover {
    background: #444444;
    border-color: #444444;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.download-icon {
    width: 24px;
    height: 24px;
    margin: 0;
    display: inline-block;
}

.discussion-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: fit-content;
    margin: 1rem auto 2rem;
    background: #818989;
    color: white;
    padding: 0.75rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border: 2px solid #818989;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.discussion-link:hover {
    background: #929a9a;
    border-color: #929a9a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.reaper-icon {
    width: 28px;
    height: 28px;
    margin: 0;
    display: inline-block;
}

ol {
    margin: 1.2rem 0;
    padding-left: 2rem;
}

ol li {
    margin: 1rem 0;
    padding: 0.1rem;
    line-height: 1.5;
}

ul {
    margin: 1rem 0;
    padding-left: 2rem;
    position: relative;
}

ul li {
    margin: 1rem 0;
    padding-left: 2rem;
    position: relative;
}

strong {
    color: #333333;
    font-weight: 600;
}

@media (max-width: 1380px) {
    .howt-logo-link {
        top: 0px;
    }
    
    .howt-logo {
        transform: rotate(90deg);
        transform-origin: bottom left;
    }
}

@media (max-width: 768px) {
    #main {
        padding: 2rem;
    }
    
    h1 {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }
    
    h2 {
        font-size: 1.2rem;
    }
    
    .download {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}
