/* ========== GDPR DOCUMENTS CUSTOM STYLES ========== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    background: linear-gradient(135deg, #05070c 0%, #0a0e1a 50%, #05070c 100%);
    min-height: 100vh;
    padding: 0;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.gdpr-container {
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(40px, 8vh, 80px) clamp(20px, 4vw, 40px);
    position: relative;
}

/* Back to Home Button */
.back-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.back-home:hover {
    color: #ff4d00;
    gap: 12px;
}

.back-home svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.back-home:hover svg {
    transform: translateX(-4px);
}

/* Header */
h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 clamp(16px, 3vh, 24px) 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
    padding-bottom: 20px;
}

h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff4d00 0%, rgba(255, 77, 0, 0.3) 100%);
    border-radius: 2px;
}

.last-updated {
    display: inline-block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: clamp(32px, 5vh, 48px);
    font-weight: 400;
}

/* Sections */
h2 {
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 600;
    color: #ffffff;
    margin: clamp(40px, 6vh, 56px) 0 clamp(16px, 2vh, 20px) 0;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

h3 {
    font-size: clamp(17px, 2vw, 20px);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: clamp(28px, 4vh, 36px) 0 clamp(12px, 1.5vh, 16px) 0;
    letter-spacing: -0.005em;
}

/* Paragraphs */
p {
    margin: 0 0 18px 0;
    font-size: clamp(15px, 1.1vw, 16px);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* Lists */
ul, ol {
    margin: 0 0 20px 0;
    padding-left: 28px;
    color: rgba(255, 255, 255, 0.7);
}

li {
    margin-bottom: 12px;
    font-size: clamp(15px, 1.1vw, 16px);
    line-height: 1.7;
    padding-left: 8px;
}

ul li::marker {
    color: #ff4d00;
}

ol li::marker {
    color: #ff4d00;
    font-weight: 600;
}

/* Strong/Bold text */
strong {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

/* Info Block - Highlighted Information */
.info-block {
    background: linear-gradient(135deg, rgba(255, 77, 0, 0.08) 0%, rgba(255, 77, 0, 0.04) 100%);
    border-left: 3px solid #ff4d00;
    padding: clamp(20px, 3vh, 28px) clamp(20px, 3vw, 32px);
    margin: clamp(28px, 4vh, 36px) 0;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.info-block p {
    margin: 8px 0;
    font-size: clamp(14px, 1vw, 15px);
    color: rgba(255, 255, 255, 0.85);
}

.info-block strong {
    color: #ff4d00;
}

/* Warning/Notice Block */
.notice-block {
    background: linear-gradient(135deg, rgba(255, 77, 0, 0.08) 0%, rgba(255, 77, 0, 0.04) 100%);
    border-left: 3px solid #ff4d00;
    padding: clamp(18px, 2.5vh, 24px) clamp(20px, 3vw, 28px);
    margin: clamp(24px, 3vh, 32px) 0;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.notice-block p {
    margin: 0;
    font-size: clamp(14px, 1vw, 15px);
    color: rgba(255, 255, 255, 0.8);
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: clamp(24px, 4vh, 32px) 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

th, td {
    padding: clamp(14px, 2vh, 18px) clamp(16px, 2vw, 20px);
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

th {
    background: rgba(255, 77, 0, 0.1);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(14px, 1vw, 15px);
    letter-spacing: 0.01em;
}

td {
    font-size: clamp(14px, 1vw, 15px);
    color: rgba(255, 255, 255, 0.75);
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background: rgba(255, 77, 0, 0.03);
}

/* Links */
a {
    color: #ff4d00;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

a:hover {
    color: #ff6a2e;
    border-bottom-color: #ff6a2e;
}

/* Divider */
hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    margin: clamp(32px, 5vh, 48px) 0;
}

/* Section Numbers */
.section-number {
    display: inline-block;
    color: #ff4d00;
    font-weight: 700;
    margin-right: 8px;
    font-size: 0.9em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gdpr-container {
        padding: clamp(32px, 6vh, 60px) clamp(16px, 4vw, 24px);
    }
    
    h1::after {
        width: 50px;
        height: 2px;
    }
    
    ul, ol {
        padding-left: 20px;
    }
    
    li {
        padding-left: 4px;
    }
    
    table {
        font-size: 13px;
    }
    
    th, td {
        padding: 12px 14px;
    }
}

@media (max-width: 480px) {
    .back-home {
        font-size: 13px;
    }
    
    .info-block,
    .notice-block {
        padding: 16px 18px;
    }
    
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Smooth scroll padding for anchor links */
html {
    scroll-padding-top: 20px;
}

/* Selection color */
::selection {
    background: rgba(255, 77, 0, 0.3);
    color: #ffffff;
}

::-moz-selection {
    background: rgba(255, 77, 0, 0.3);
    color: #ffffff;
}
