/* Help Section Styles */
.help-section {
    position: relative;
    background-color: var(--dark-bg);
    padding: 60px 0;
    overflow: visible;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.help-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/textures/cooltexturebetter.png') center/cover no-repeat;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

.help-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.help-section-content {
    width: 100%;
    max-width: 1200px;
}

.help-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color);
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    text-align: left;
    width: 100%;
    text-shadow: 0 0 5px rgba(255,255,255,0.2);
}

.help-title::after {
    display: none;
}

.help-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 30px 40px;
    margin-bottom: 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.help-box::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -50px;
    width: 300px;
    height: 300px;
    background: url('../images/textures/bloodsplatter1.png') center/cover no-repeat;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
    transform: translateY(-50%);
}

.help-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: radial-gradient(circle at right, rgba(255, 0, 0, 0.5) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: glowPulse 3s infinite alternate ease-in-out;
}

@keyframes glowPulse {
    0% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

.help-text-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.help-text {
    font-size: 20px;
    font-weight: 600;
    color: #ffeeee;
    text-align: left;
    position: relative;
    z-index: 1;
}

.help-subtext {
    font-size: 14px;
    font-weight: 500;
    color: var(--highlight-color, #31aac9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
    position: relative;
    padding: 2px 4px;
    margin-left: -4px;
    width: fit-content;
}

.help-subtext:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.5);
}

.help-subtext::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.help-subtext:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.discord-help-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(114, 137, 218, 0.15);
    color: #f5f5f5;
    border: 1px solid rgba(114, 137, 218, 0.3);
    border-radius: 6px;
    padding: 0.7rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    position: relative;
    z-index: 2;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(114, 137, 218, 0.2);
    white-space: nowrap;
    text-overflow: ellipsis;
    min-width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
    gap: 8px;
    font-family: 'Oxanium', sans-serif;
}

.discord-help-button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(114, 137, 218, 0.4) 10%, transparent 10.01%);
    background-repeat: no-repeat;
    background-position: 50%;
    transform: scale(10, 10);
    opacity: 0;
    transition: transform 0.3s, opacity 0.5s;
}

.discord-help-button:hover {
    background-color: rgba(114, 137, 218, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(114, 137, 218, 0.3);
    border-color: rgba(114, 137, 218, 0.5);
    color: #7289da;
}

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

.discord-help-button:active::after {
    transform: scale(0, 0);
    opacity: 0.3;
    transition: 0s;
}

.discord-help-button svg {
    width: 20px;
    height: 20px;
    margin-left: 8px;
    vertical-align: middle;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.discord-help-button:hover svg {
    transform: scale(1.1);
}

.guidelines-link-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
    width: 100%;
}

.guidelines-link {
    background-color: rgba(30, 30, 30, 0.95);
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 0.7rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
    font-family: 'Oxanium', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    text-overflow: ellipsis;
    min-width: fit-content;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.guidelines-link:hover {
    background-color: rgba(40, 40, 40, 0.98);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-color);
}

.guidelines-link:active {
    transform: translateY(0);
}

.guidelines-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.4) 10%, transparent 10.01%);
    background-repeat: no-repeat;
    background-position: 50%;
    transform: scale(10, 10);
    opacity: 0;
    transition: transform 0.3s, opacity 0.5s;
}

.guidelines-link:active::after {
    transform: scale(0, 0);
    opacity: 0.3;
    transition: 0s;
}

.guidelines-link .arrow-icon {
    width: 16px;
    height: 16px;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.guidelines-link:hover .arrow-icon {
    transform: translateX(3px);
}

.help-links {
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Media Queries */
@media (max-width: 768px) {
    .help-box {
        flex-direction: column;
        text-align: left;
        gap: 20px;
        overflow: hidden;
    }
    
    .help-box::before {
        width: 100%;
        top: auto;
        bottom: 0;
        background: radial-gradient(circle at bottom, rgba(255, 0, 0, 0.5) 0%, transparent 70%);
    }
    
    .help-box::after {
        width: 500px;
        height: 500px;
        top: 80%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: url('../images/textures/bloodsplatter-mobile-helpbox.png') center/contain no-repeat;
    }
    
    .help-text-container {
        margin-bottom: 15px;
    }
    
    .help-title {
        font-size: 28px;
    }
    
    .guidelines-link-container {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .help-section {
        padding: 40px 0;
    }
    
    .help-box {
        padding: 20px;
    }
    
    .help-title {
        font-size: 24px;
        display: block;
    }
    
    .help-text {
        font-size: 18px;
    }
    
    .help-subtext {
        font-size: 13px;
    }
    
    .discord-help-button {
        width: 100%;
        font-size: 0.9rem;
        padding: 0.6rem 1.5rem;
    }
    
    .guidelines-link {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
    
    .help-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
} 