/* Privacy Policy Styles */

/* Header styles */
.policy-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.back-button {
    display: flex;
    align-items: center;
    padding: 0.6rem 1.2rem;
    background: rgba(15, 15, 15, 0.8);
    border-radius: 8px;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
    border: 1px solid rgba(227, 252, 2, 0.5);
    backdrop-filter: blur(5px);
    margin-top: 10px;
    margin-left: 20px;
}

.back-button:hover {
    transform: translateY(-3px);
    background: rgba(30, 30, 30, 0.9);
    border-color: #e3fc02;
    color: #e3fc02;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.back-arrow {
    margin-right: 8px;
    font-size: 1.2rem;
}

.logo-container {
    text-align: center;
    margin-right: 120px; /* To center the logo with the back button taking space */
}

.logo-name {
    font-size: 2.5rem;
    margin: 0;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(227, 252, 2, 0.7);
    font-family: 'Arial Black', sans-serif;
    position: relative;
    letter-spacing: 2px;
    color: white;
}

.logo-name::after {
    content: 'STREAMER';
    position: absolute;
    font-size: 14px;
    bottom: -15px;
    right: -5px;
    background-color: #e3fc02;
    color: black;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
    transform: rotate(-2deg);
}

/* Policy container styles */
.policy-container {
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(10, 10, 10, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(227, 252, 2, 0.3);
    margin-bottom: 5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.policy-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, #e3fc02, transparent);
}

.policy-title {
    font-size: 2.5rem;
    text-align: center;
    color: #e3fc02;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(227, 252, 2, 0.7);
}

.policy-date {
    text-align: center;
    color: #999;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.policy-section {
    margin-bottom: 2.5rem;
    position: relative;
}

.policy-section:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: -1.25rem;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(227, 252, 2, 0.3), transparent);
}

.policy-section h2 {
    color: #e3fc02;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    text-shadow: 0 0 5px rgba(227, 252, 2, 0.3);
    display: flex;
    align-items: center;
}

.policy-section h2::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #e3fc02;
    margin-right: 10px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.policy-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.policy-list {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 0.5rem;
}

.policy-list li::before {
    content: "→";
    color: #e3fc02;
    position: absolute;
    left: -1.2rem;
}

.highlight {
    color: #e3fc02;
    font-weight: bold;
}

.contact-email {
    color: #e3fc02;
    padding: 0.2rem 0.5rem;
    background: rgba(227, 252, 2, 0.1);
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.95rem;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

#back-to-top-btn {
    padding: 0.8rem 1.2rem;
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid #e3fc02;
    border-radius: 8px;
    color: #e3fc02;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 0 10px rgba(227, 252, 2, 0.3);
}

#back-to-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(227, 252, 2, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .policy-header {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .logo-container {
        margin-right: 0;
    }
    
    .logo-name {
        font-size: 2rem;
    }
    
    .policy-container {
        width: 95%;
        padding: 1.5rem;
        margin-top: 1rem;
    }
    
    .back-button {
        margin-left: 0px;
    }
    
    .policy-title {
        font-size: 1.8rem;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
    }
}