/* How to Play Page Styles */
:root {
    --primary: #DA2700;
    --secondary: #FFA700;
    --accent: #DA2700;
    --dark: #1b1b1b;
    --light: #F6F5F5;
    --text-gray: #c4c4c4;
    --gradient-1: linear-gradient(270deg, #DA2A00 60%, #FFA700 110%);
}

/* Main Content Styles */
.terms-policy {
    background-color: #000000;
    color: var(--light);
    padding: 60px 0;
    position: relative;
}

.terms-policy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
}

.terms-policy__container {
    position: relative;
    z-index: 1;
}

/* Section Styles */
.terms-policy__section {
    margin-bottom: 40px;
    position: relative;
    border-left: 3px solid var(--primary);
    padding-left: 25px;
    transition: all 0.3s ease;
}

.terms-policy__section:hover {
    transform: translateX(5px);
}

.terms-policy__section::before {
    content: '';
    position: absolute;
    left: -3px;
    top: 0;
    width: 3px;
    height: 30px;
    background-color: var(--primary);
    box-shadow: 0 0 15px var(--primary);
}

/* Typography */
.terms-policy h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    font-family: 'Unbounded', sans-serif;
}

.terms-policy h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--light);
    font-family: 'Unbounded', sans-serif;
}

.terms-policy p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: var(--text-gray);
}

/* Lists */
.terms-policy ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.terms-policy ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
    color: var(--text-gray);
}

.terms-policy ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--secondary);
    border-radius: 50%;
}

/* Components */
.terms-policy__date {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--primary);
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 30px;
    color: white;
}

.terms-policy__highlight {
    background-color: rgba(166, 215, 25, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 3px solid #A6D719;
}

.terms-policy__highlight p {
    margin-bottom: 0;
}

/* Contact Section */
.terms-policy__contact {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    margin-top: 40px;
}

.terms-policy__contact h3 {
    margin-bottom: 15px;
}

.terms-policy__contact p {
    margin-bottom: 10px;
}

.terms-policy__contact a {
    color: #A6D719;
    text-decoration: none;
    transition: all 0.3s ease;
}

.terms-policy__contact a:hover {
    text-decoration: underline;
}

/* Decorative Shapes */
.terms-policy__shape {
    position: absolute;
    z-index: 0;
}

.terms-policy__shape--1 {
    top: 10%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.terms-policy__shape--2 {
    bottom: 15%;
    right: 5%;
    animation: float 8s ease-in-out infinite;
}

/* Step Numbers */
.terms-policy__number {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: var(--secondary);
    color: #0F0F0F;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: 700;
    margin-right: 10px;
    font-family: 'Unbounded', sans-serif;
}

.terms-policy__title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.terms-policy__title h2 {
    margin-bottom: 0;
}

/* Step Cards */
.step {
    background: #141414;
    border-left: 5px solid var(--primary);
    padding: 25px 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.step h2 {
    color: var(--secondary);
    margin-top: 0;
    font-size: 1.6rem;
}

.step ul {
    padding-left: 20px;
    margin: 0;
}

.step ul li {
    margin-bottom: 8px;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

/* UI Elements */
.auth-form-side,
.logged-in-state,
.profile-menu,
#kycSteps,
.status-icon.uploaded {
    display: none;
}

/* Layout */
.subscription-section {
    margin-bottom: 150px;
}

.sidemenu-subtitle.sidemenu-item {
    padding-left: 150px;
}

.vs-footer__social {
    margin-left: 180px;
}

/* Icons */
.fa-search {
    color: #f6f5f5;
    font-size: 20px;
}

#kycSteps {
    padding: 10px 20px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .terms-policy {
        padding: 40px 0;
    }
    
    .terms-policy h2 {
        font-size: 24px;
    }
    
    .terms-policy h3 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    .step h2 {
        font-size: 1.3rem;
    }
}
