/* Custom styles for the Palworld Page */
.page-container {
    padding-bottom: 2rem;
}

.palworld-hero {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    border-radius: 1.5rem;
    border-width: 1px;
    border-color: rgba(20, 184, 166, 0.2); /* teal-500/20 */
    background-image: linear-gradient(to bottom right, #312e81, #0f172a, #064e3b); /* indigo-950 via-slate-900 to-emerald-950 */
    box-shadow: 0 0 50px rgba(20, 184, 166, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 4rem; /* py-16 */
    padding-bottom: 4rem;
    padding-left: 1.5rem; /* px-6 */
    padding-right: 1.5rem;
    text-align: center;
    margin-top: 1.5rem; /* mt-6 */
}

.hero-glow-blue {
    position: absolute;
    top: -8rem; /* -top-32 */
    left: -8rem;
    width: 24rem; /* w-96 */
    height: 24rem;
    background-color: rgba(59, 130, 246, 0.1); /* blue-500/10 */
    border-radius: 9999px;
    filter: blur(64px); /* blur-3xl */
    pointer-events: none;
}

.hero-glow-teal {
    position: absolute;
    bottom: -8rem; /* -bottom-32 */
    right: -8rem;
    width: 24rem;
    height: 24rem;
    background-color: rgba(20, 184, 166, 0.1); /* teal-500/10 */
    border-radius: 9999px;
    filter: blur(64px);
    pointer-events: none;
}

.palworld-badge {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    background-color: rgba(20, 184, 166, 0.1);
    color: #2dd4bf;
    border: 1px solid rgba(20, 184, 166, 0.3);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}

.palworld-title {
    font-size: 2.25rem;
    font-weight: 800;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: linear-gradient(to right, #2dd4bf, #22d3ee, #3b82f6);
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

@media (min-width: 640px) {
    .palworld-title { font-size: 3rem; }
}
@media (min-width: 768px) {
    .palworld-title { font-size: 3.75rem; }
}

.palworld-description {
    color: #d1d5db;
    font-size: 1rem;
    max-width: 42rem;
    line-height: 1.625;
}

@media (min-width: 640px) {
    .palworld-description { font-size: 1.125rem; }
}
@media (min-width: 768px) {
    .palworld-description { font-size: 1.25rem; }
}

.connect-widget {
    margin-bottom: 2rem;
    background-color: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid #1f2937;
    border-radius: 0.75rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 80rem;
}

@media (min-width: 768px) {
    .connect-widget {
        padding: 1.5rem;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.widget-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.widget-ip {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2dd4bf;
    font-family: monospace;
}

.widget-btn {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    background-color: rgba(13, 148, 136, 0.9);
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 0.875rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 1px solid rgba(20, 184, 166, 0.2);
    box-shadow: 0 10px 15px -3px rgba(13, 148, 136, 0.2);
    cursor: pointer;
    transition: all 150ms;
}

.widget-btn:hover {
    background-color: #0d9488;
}

.widget-btn:active {
    background-color: #0f766e;
}

.features-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2dd4bf;
}

.features-list {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
    color: #d1d5db;
}

.features-list li {
    margin-bottom: 0.5rem;
}

.widget-btn-discord {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    background-color: #5865F2;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 0.875rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 1px solid rgba(88, 101, 242, 0.2);
    box-shadow: 0 10px 15px -3px rgba(88, 101, 242, 0.2);
    cursor: pointer;
    transition: all 150ms;
    text-decoration: none;
}

.widget-btn-discord:hover {
    background-color: #4752c4;
}

.widget-btn-discord:active {
    background-color: #3c45a3;
}
