@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Raleway', sans-serif;
    background:
        url('corinthians.png') no-repeat center center fixed;
    background-size: cover;
    color: #f0f0f0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

#container {
    max-width: 900px;
    margin: 60px auto;
    padding: 30px 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 18px;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background 0.5s ease;
}

.hover-title {
    position: relative;
    display: inline-block;
    cursor: pointer;
    font-weight: 700;
    font-size: 2.4rem;
    color: #fff;
    text-shadow:
        1px 1px 3px rgba(0, 0, 0, 0.9),
        0 0 7px rgba(255, 255, 255, 0.2);
    margin-bottom: 40px;
    letter-spacing: 0.05em;
    transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease;
}

.hover-title:hover {
    color: #e6e6e6;
    text-shadow:
        2px 2px 10px #fff,
        0 0 20px #fff;
    transform: scale(1.05) rotate(-1deg);
}

.hover-paragraph {
    position: absolute;
    top: 120%;
    left: 0;
    width: 360px;
    background: rgba(0, 0, 0, 0.25);
    padding: 20px 25px;
    border-radius: 14px;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.6);
    color: #eee;
    font-size: 1.1rem;
    line-height: 1.5;
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px);
    transition: opacity 0.45s ease, transform 0.45s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10;
    user-select: text;
}

.hover-title:hover .hover-paragraph {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.hover-paragraph::selection {
    background: #ffcc00;
    color: #000;
}

a {
    color: #f0f0f0;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    cursor: pointer;
}

a:hover {
    color: #ffcc00;
    text-shadow: 0 0 8px #ffcc00;
    text-decoration: none;
}

#container:hover {
    background: rgba(0, 0, 0, 0.4);
    box-shadow:
        0 6px 30px rgba(0, 0, 0, 0.8);
}

@media (max-width: 480px) {
    #container {
        padding: 20px 15px;
        margin: 30px 10px;
    }

    .hover-title {
        font-size: 1.8rem;
    }

    .hover-paragraph {
        width: 280px;
        font-size: 1rem;
    }
}