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

body {
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #181715;
    color: #dcd6d6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.content {
    text-align: center;
    max-width: 800px;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 120px;
}

.title {
    font-size: 100px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 80px;
    color: #dcd6d6;
    text-shadow: 0 0 10px #87d5d8;
    line-height: 1;
}

.x-red {
    color: #b21400;
}

.subtitle {
    font-size: 25px;
    font-weight: 700;
    color: #b61818;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-shadow: 2px 2px 6px rgba(253, 11, 5, 0.5);
}

.discord-button {
    display: inline-block;
    background: #5d89d2;
    color: #ffffff;
    font-size: 35px;
    font-weight: 700;
    text-decoration: none;
    padding: 12px 60px;
    border-radius: 16px;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px 0 #5271ff;
}

.discord-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px 0 #5271ff;
    background: #6895dc;
}

.discord-button:active {
    transform: translateY(0);
}

.footer {
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.copyright {
    font-size: 16px;
    color: #222;
    margin-bottom: 16px;
    line-height: 24px;
}

.links {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.links a {
    color: #747474;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 16px;
}

.links a:hover {
    color: #aaa;
}

.links span {
    color: #747474;
    font-weight: 300;
}

/* Responsividade Tablet */
@media screen and (max-width: 1024px) {
    .title {
        font-size: 100px;
    }
    
    .subtitle {
        font-size: 20px;
    }
}

/* Responsividade Mobile */
@media screen and (max-width: 480px) {
    .content {
        padding-bottom: 100px;
    }
    
    .title {
        font-size: 44px;
        margin-bottom: 30px;
        line-height: 31px;
        letter-spacing: 0;
    }
    
    .subtitle {
        font-size: 17px;
        line-height: 30px;
    }
    
    .discord-button {
        font-size: 25px;
        padding: 10px 50px;
    }
    
    .footer {
        bottom: 20px;
    }
    
    .copyright {
        font-size: 14px;
        margin-bottom: 9px;
        line-height: 16px;
    }
    
    .links {
        font-size: 12px;
        flex-wrap: wrap;
    }
    
    .links a {
        font-size: 12px;
        line-height: 16px;
    }
}
