@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600&display=swap');

:root {
    --primary-color: rgba(255, 38, 150, 0.8);
    --primary-glow: rgba(255, 38, 150, 0.2);
    --hover-color: rgba(227, 27, 132, 0.9);
    --dark-color: #0D0A0F;
    --secondary-dark: rgba(64, 56, 72, 0.7);
    --light-gray: rgba(220, 217, 226, 0.5);
    --white: rgba(255, 255, 255, 0.95);
    --border-radius: 12px;
    --shadow: 0 8px 32px rgba(13, 10, 15, 0.1);
    --glass-border: 1px solid rgba(255, 255, 255, 0.18);
    --glass-background: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}

span {
    font-family: 'Nunito', sans-serif;
    color: var(--white);
}

btd {
    font-family: 'Nunito', sans-serif;
    color: var(--white) !important;

}

    table div thead tr th {
        border: 1px solid var(--white) !important;
        border-color: var(--white) !important;
    }

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background: linear-gradient(135deg, #0D0A0F 0%, #403848 100%);
    background-attachment: fixed;
    min-height: 100vh;
    font-weight: 300;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
}

.header {
    display: flex;
    justify-content: center;
    padding: 20px 0 40px;
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
}

.logo {
    height: 62px;
    max-width: 100%;
    opacity: 0.9;
}

.content {
    text-align: center;
    margin-bottom: 50px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.5px;
}

p {
    font-size: 1.05rem;
    margin-bottom: 40px;
    color: var(--light-gray);
    font-weight: 300;
}

.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    width: 100%;
    max-width: 600px;
}

.policy-button {
    display: inline-block;
    padding: 14px 26px;
    background: var(--glass-background);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 400;
    transition: all 0.3s ease;
    min-width: 200px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: var(--glass-border);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.policy-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: 0.5s;
}

.policy-button:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 38, 150, 0.2);
}

.policy-button:hover::before {
    left: 100%;
}

.footer {
    text-align: center;
    padding: 30px 0 10px;
    color: var(--light-gray);
    font-size: 0.9rem;
    margin-top: auto;
    width: 100%;
}

.policy-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    background: var(--glass-background);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: var(--glass-border);
    box-shadow: var(--shadow);
    color: var(--white);
    width: 100%;
    text-align: center;
}

main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.back-button {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 20px;
    background: var(--glass-background);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: var(--glass-border);
    font-weight: 300;
}

.back-button:hover {
    background: rgba(220, 217, 226, 0.2);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .button-container {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .policy-button {
        width: 100%;
        max-width: 250px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 20px;
    }
} 