@font-face {
    font-family: "Nunito";
    src: url("./fonts/Nunito-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: "Nunito";
    src: url("./fonts/Nunito-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Nunito";
    src: url("./fonts/Nunito-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

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

body {
    font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        sans-serif;
    background: #f8f9fa;
    color: #2d3436;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    min-height: 100vh;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #4285f4 0%, #667eea 100%);
    color: white;
    padding: 60px 40px;
    text-align: center;
    position: relative;
}

.brand-section {
    margin-bottom: 20px;
}

.brand-title {
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    font-size: 48px;
    margin: 0;
    line-height: 1;
    letter-spacing: -1px;
    color: white;
}

.brand-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin: 10px 0 0 0;
    opacity: 0.9;
}

.last-updated {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 14px;
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* Content Styles */
.content {
    padding: 40px;
}

.privacy-section {
    margin-bottom: 50px;
}

.privacy-section h2 {
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    font-size: 32px;
    color: #4285f4;
    margin-bottom: 30px;
    border-bottom: 3px solid #4285f4;
    padding-bottom: 10px;
}

/* Privacy Cards */
.privacy-card {
    background: white;
    border: 1px solid #e1e8ed;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.privacy-card.highlight {
    background: linear-gradient(135deg, #4285f4 0%, #667eea 100%);
    color: white;
    border: none;
}

.privacy-card h3 {
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #2d3436;
    margin-bottom: 15px;
}

.privacy-card.highlight h3 {
    color: white;
}

.privacy-card p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #4a5568;
}

.privacy-card.highlight p {
    color: white;
}

.privacy-card ul {
    list-style: none;
    padding-left: 0;
}

.privacy-card li {
    position: relative;
    padding: 8px 0 8px 25px;
    font-size: 16px;
    color: #4a5568;
}

.privacy-card.highlight li {
    color: white;
}

.privacy-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    top: 8px;
    color: #4285f4;
    font-weight: bold;
    font-size: 18px;
}

.privacy-card.highlight li:before {
    color: white;
}

.privacy-card strong {
    color: #2d3436;
    font-weight: 600;
}

/* Permission Items */
.permission-item {
    background: #f8f9fa;
    border-left: 4px solid #4285f4;
    padding: 15px 20px;
    margin: 10px 0;
    border-radius: 0 8px 8px 0;
    font-size: 16px;
    color: #4a5568;
}

.permission-item strong {
    color: #4285f4;
    font-weight: 600;
    font-family: monospace;
    background: rgba(66, 133, 244, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Action Section */
.action-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin: 50px 0;
}

.action-section h2 {
    color: #2d3436;
    margin-bottom: 30px;
    border: none;
    padding: 0;
}

.button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.action-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    min-width: 150px;
}

.action-btn.primary {
    background: #4285f4;
    color: white;
}

.action-btn.secondary {
    background: #6c757d;
    color: white;
}

.action-btn.danger {
    background: #dc3545;
    color: white;
}

/* Footer */
.footer {
    background: #2d3436;
    color: white;
    text-align: center;
    padding: 30px 40px;
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        margin: 0;
        box-shadow: none;
    }

    .header {
        padding: 40px 20px;
    }

    .brand-title {
        font-size: 36px;
    }

    .brand-subtitle {
        font-size: 20px;
    }

    .last-updated {
        position: static;
        display: inline-block;
        margin-top: 20px;
    }

    .content {
        padding: 20px;
    }

    .privacy-section h2 {
        font-size: 24px;
    }

    .privacy-card {
        padding: 20px;
    }

    .button-group {
        flex-direction: column;
        align-items: center;
    }

    .action-btn {
        width: 100%;
        max-width: 300px;
    }

    .footer {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .privacy-card {
        padding: 15px;
    }

    .privacy-card h3 {
        font-size: 18px;
    }

    .privacy-card p,
    .privacy-card li {
        font-size: 14px;
    }

    .permission-item {
        padding: 10px 15px;
        font-size: 14px;
    }
}

/* Smooth scrolling and animations */
html {
    scroll-behavior: smooth;
}

.privacy-card {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Remove loading animation for interactive elements */
.action-btn {
    position: relative;
}
