/* Privacy Policy Styles - Ultra-Advanced Gaming Theme */
:root {
    --primary-color: #7dd43a;
    --secondary-color: #8b5cf6;
    --accent-color: #ff6b35;
    --background-dark: #0a0a0f;
    --surface-color: #141421;
    --text-primary: #ffffff;
    --text-secondary: #b4b4c8;
    --glow-primary: rgba(0, 255, 136, 0.4);
    --glow-secondary: rgba(139, 92, 246, 0.3);
    --glow-accent: rgba(255, 107, 53, 0.3);
}

.privacy-main {
    background: linear-gradient(135deg, 
        var(--background-dark) 0%, 
        #1a0a1a 25%,
        #0f0a1a 50%,
        #1a0f1a 75%,
        var(--background-dark) 100%);
    min-height: 100vh;
    padding-top: 80px;
    position: relative;
    overflow-x: hidden;
}

/* Advanced Background Effects */
.privacy-main::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, var(--glow-primary) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, var(--glow-secondary) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, var(--glow-accent) 0%, transparent 50%);
    opacity: 0.1;
    animation: backgroundPulse 8s ease-in-out infinite;
    z-index: -1;
}

.privacy-main::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="matrix" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse"><text x="5" y="5" font-family="monospace" font-size="8" fill="rgba(0,255,136,0.1)" text-anchor="middle">0</text><text x="5" y="15" font-family="monospace" font-size="8" fill="rgba(0,255,136,0.05)" text-anchor="middle">1</text></pattern></defs><rect width="100" height="100" fill="url(%23matrix)"/></svg>') repeat;
    animation: matrixRain 20s linear infinite;
    z-index: -1;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 0.1; transform: scale(1); }
    50% { opacity: 0.2; transform: scale(1.05); }
}

@keyframes matrixRain {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* Ultra-Advanced Hero Section */
.privacy-hero {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.15) 0%, 
        rgba(139, 92, 246, 0.1) 50%,
        rgba(255, 107, 53, 0.15) 100%);
    padding: 120px 0;
    margin-bottom: 80px;
    overflow: hidden;
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0 10px 50px var(--glow-primary);
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circuit" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M0 10h5v-5h5v5h5v5h-5v5h-5v-5h-5z" fill="none" stroke="rgba(0,255,136,0.2)" stroke-width="0.5"/><circle cx="10" cy="10" r="1" fill="rgba(0,255,136,0.3)"/></pattern></defs><rect width="100" height="100" fill="url(%23circuit)"/></svg>') repeat;
    opacity: 0.4;
    animation: circuitFlow 15s linear infinite;
}

.privacy-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 255, 136, 0.1) 25%, 
        rgba(139, 92, 246, 0.1) 50%, 
        rgba(255, 107, 53, 0.1) 75%, 
        transparent 100%);
    animation: heroScan 8s ease-in-out infinite;
}

@keyframes circuitFlow {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

@keyframes heroScan {
    0%, 100% { transform: translateX(-50%); opacity: 0; }
    50% { transform: translateX(0%); opacity: 1; }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: heroContentRise 1.5s ease-out;
}

@keyframes heroContentRise {
    0% { 
        opacity: 0; 
        transform: translateY(50px) scale(0.95); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

.hero-icon {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    animation: iconFloat 4s ease-in-out infinite, iconGlow 2s ease-in-out infinite alternate;
    position: relative;
    display: inline-block;
}

.hero-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: iconRing 3s ease-in-out infinite;
}

.hero-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--glow-primary) 0%, transparent 70%);
    border-radius: 50%;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconRing {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1); 
        opacity: 1; 
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2); 
        opacity: 0.5; 
    }
}

@keyframes iconPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes iconGlow {
    from { 
        filter: drop-shadow(0 0 20px var(--primary-color));
        text-shadow: 0 0 30px var(--primary-color); 
    }
    to { 
        filter: drop-shadow(0 0 40px var(--primary-color));
        text-shadow: 0 0 50px var(--primary-color), 0 0 70px var(--primary-color); 
    }
}

.privacy-hero h1 {
    font-family: 'Orbitron', monospace;
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 25px;
    text-shadow: 0 0 30px var(--primary-color);
    animation: titleNeon 3s ease-in-out infinite alternate, titleRise 1s ease-out 0.5s both;
    position: relative;
    display: inline-block;
}

.privacy-hero h1::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: var(--secondary-color);
    animation: titleGlitch 4s ease-in-out infinite;
    z-index: -1;
}

.privacy-hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    animation: underlineExpand 2s ease-out 1s both;
}

@keyframes titleNeon {
    from { 
        text-shadow: 0 0 30px var(--primary-color);
    }
    to { 
        text-shadow: 
            0 0 50px var(--primary-color), 
            0 0 70px var(--primary-color),
            0 0 90px var(--secondary-color); 
    }
}

@keyframes titleGlitch {
    0%, 90%, 100% { 
        transform: translate(0); 
        opacity: 0; 
    }
    91%, 94% { 
        transform: translate(-2px, -2px); 
        opacity: 0.7; 
    }
    92%, 93% { 
        transform: translate(2px, 2px); 
        opacity: 0.5; 
    }
}

@keyframes titleRise {
    0% { 
        opacity: 0; 
        transform: translateY(30px) rotateX(45deg); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0) rotateX(0deg); 
    }
}

@keyframes underlineExpand {
    0% { 
        width: 0%; 
        opacity: 0; 
    }
    100% { 
        width: 100%; 
        opacity: 1; 
    }
}

.privacy-hero p {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: subtitleFade 1.5s ease-out 1s both;
    line-height: 1.6;
}

@keyframes subtitleFade {
    0% { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.last-updated {
    background: linear-gradient(135deg, var(--glow-primary), var(--glow-secondary));
    border: 2px solid var(--primary-color);
    padding: 15px 30px;
    border-radius: 30px;
    color: var(--text-primary);
    font-weight: 600;
    display: inline-block;
    position: relative;
    overflow: hidden;
    animation: badgeSlide 1.5s ease-out 1.5s both;
    transition: all 0.3s ease;
}

.last-updated::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: badgeShine 3s ease-in-out infinite;
}

.last-updated:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px var(--glow-primary);
}

@keyframes badgeSlide {
    0% { 
        opacity: 0; 
        transform: translateX(-50px) rotateY(45deg); 
    }
    100% { 
        opacity: 1; 
        transform: translateX(0) rotateY(0deg); 
    }
}

@keyframes badgeShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Content Section */
.privacy-content {
    padding: 80px 0;
    position: relative;
}

.content-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 80px;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
    animation: gridSlideIn 1.5s ease-out;
}

@keyframes gridSlideIn {
    0% { 
        opacity: 0; 
        transform: translateY(50px); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* Ultra-Advanced Navigation */
.content-nav {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(20, 20, 33, 0.9) 50%, 
        rgba(0, 0, 0, 0.8) 100%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    padding: 35px;
    height: fit-content;
    position: sticky;
    top: 120px;
    overflow: hidden;
    animation: navSlideIn 1.5s ease-out 0.3s both;
    box-shadow: 0 20px 60px var(--glow-primary);
}

.content-nav::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent 0deg,
        var(--primary-color) 45deg,
        transparent 90deg,
        var(--secondary-color) 180deg,
        transparent 270deg,
        var(--accent-color) 315deg,
        transparent 360deg
    );
    animation: navRotatingBorder 8s linear infinite;
    z-index: -1;
}

.content-nav::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(0, 255, 136, 0.1) 50%, 
        transparent 70%);
    animation: navScanline 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes navSlideIn {
    0% { 
        opacity: 0; 
        transform: translateX(-100px) rotateY(45deg); 
    }
    100% { 
        opacity: 1; 
        transform: translateX(0) rotateY(0deg); 
    }
}

@keyframes navRotatingBorder {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes navScanline {
    0%, 100% { 
        opacity: 0; 
        transform: translateY(-100%); 
    }
    50% { 
        opacity: 1; 
        transform: translateY(100%); 
    }
}

.content-nav h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 0 20px var(--primary-color);
    animation: navTitleGlow 3s ease-in-out infinite alternate;
}

@keyframes navTitleGlow {
    from { text-shadow: 0 0 20px var(--primary-color); }
    to { text-shadow: 0 0 40px var(--primary-color), 0 0 60px var(--secondary-color); }
}

.content-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-nav li {
    margin-bottom: 15px;
    animation: navItemSlide 1s ease-out calc(var(--index) * 0.1s) both;
}

.content-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 15px;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    font-weight: 500;
}

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

.content-nav a:hover {
    background: linear-gradient(135deg, var(--glow-primary), var(--glow-secondary));
    color: var(--text-primary);
    border-color: var(--primary-color);
    transform: translateX(10px) scale(1.05);
    box-shadow: 0 10px 30px var(--glow-primary);
}

.content-nav a:hover::before {
    left: 100%;
}

@keyframes navItemSlide {
    0% { 
        opacity: 0; 
        transform: translateX(-30px); 
    }
    100% { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

/* Ultra-Advanced Main Content */
.content-main {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(20, 20, 33, 0.8) 50%, 
        rgba(0, 0, 0, 0.7) 100%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 2px solid var(--secondary-color);
    border-radius: 25px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    animation: contentSlideIn 1.5s ease-out 0.6s both;
    box-shadow: 
        0 20px 60px var(--glow-secondary),
        inset 0 0 40px rgba(139, 92, 246, 0.1);
}

.content-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 48%, 
        rgba(139, 92, 246, 0.1) 50%, 
        transparent 52%);
    animation: contentScanline 6s ease-in-out infinite;
    pointer-events: none;
}

.content-main::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 25%, 
        var(--accent-color) 50%, 
        var(--secondary-color) 75%, 
        var(--primary-color) 100%);
    z-index: -1;
    border-radius: 25px;
    animation: contentBorderFlow 8s linear infinite;
}

@keyframes contentSlideIn {
    0% { 
        opacity: 0; 
        transform: translateX(100px) rotateY(-45deg); 
    }
    100% { 
        opacity: 1; 
        transform: translateX(0) rotateY(0deg); 
    }
}

@keyframes contentScanline {
    0%, 100% { 
        transform: translateY(-100%) rotateZ(45deg); 
        opacity: 0; 
    }
    50% { 
        transform: translateY(100%) rotateZ(45deg); 
        opacity: 1; 
    }
}

@keyframes contentBorderFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.content-section {
    margin-bottom: 60px;
    padding-bottom: 50px;
    border-bottom: 2px solid rgba(139, 92, 246, 0.3);
    position: relative;
    animation: sectionFadeIn 1s ease-out calc(var(--section-index) * 0.2s) both;
}

.content-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.content-section::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    animation: sectionUnderline 2s ease-out calc(var(--section-index) * 0.3s + 1s) both;
}

@keyframes sectionFadeIn {
    0% { 
        opacity: 0; 
        transform: translateY(30px) rotateX(15deg); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0) rotateX(0deg); 
    }
}

@keyframes sectionUnderline {
    0% { width: 0%; }
    100% { width: 100%; }
}

.content-section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 700;
    position: relative;
    animation: headingGlow 3s ease-in-out infinite alternate;
}

.content-section h2::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    transform: translateY(-50%);
    animation: headingLine 2s ease-out calc(var(--section-index) * 0.3s + 1.5s) both;
}

@keyframes headingGlow {
    from { 
        text-shadow: 0 0 20px var(--primary-color);
        filter: drop-shadow(0 0 10px var(--primary-color)); 
    }
    to { 
        text-shadow: 0 0 40px var(--primary-color), 0 0 60px var(--secondary-color);
        filter: drop-shadow(0 0 20px var(--primary-color)); 
    }
}

@keyframes headingLine {
    0% { width: 0; opacity: 0; }
    100% { width: 50px; opacity: 1; }
}

.content-section h2 i {
    font-size: 2rem;
    animation: iconSpin 4s ease-in-out infinite;
    filter: drop-shadow(0 0 10px currentColor);
}

@keyframes iconSpin {
    0%, 100% { transform: rotateY(0deg) scale(1); }
    50% { transform: rotateY(180deg) scale(1.1); }
}

.content-section p {
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.15rem;
    animation: paragraphSlide 1s ease-out calc(var(--p-index) * 0.1s + 1s) both;
}

@keyframes paragraphSlide {
    0% { 
        opacity: 0; 
        transform: translateX(-20px); 
    }
    100% { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

/* Ultra-Advanced Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.info-card {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.6) 0%, 
        rgba(20, 20, 33, 0.7) 50%, 
        rgba(0, 0, 0, 0.6) 100%);
    border: 2px solid var(--accent-color);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: cardFloat 1.2s ease-out calc(var(--card-index) * 0.2s) both;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 107, 53, 0.3), 
        transparent);
    transition: left 0.6s ease;
}

.info-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--accent-color), 
        var(--primary-color), 
        var(--secondary-color), 
        var(--accent-color));
    z-index: -1;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.info-card:hover {
    border-color: var(--primary-color);
    box-shadow: 
        0 20px 60px var(--glow-accent),
        0 0 40px var(--glow-primary);
    transform: translateY(-10px) scale(1.02) rotateX(5deg);
}

.info-card:hover::before {
    left: 100%;
}

.info-card:hover::after {
    opacity: 1;
    animation: cardBorderPulse 2s ease-in-out infinite;
}

@keyframes cardFloat {
    0% { 
        opacity: 0; 
        transform: translateY(50px) rotateY(45deg); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0) rotateY(0deg); 
    }
}

@keyframes cardBorderPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.info-card h4 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
    text-shadow: 0 0 15px var(--accent-color);
    animation: cardTitleGlow 3s ease-in-out infinite alternate;
}

@keyframes cardTitleGlow {
    from { text-shadow: 0 0 15px var(--accent-color); }
    to { text-shadow: 0 0 25px var(--accent-color), 0 0 35px var(--primary-color); }
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card li {
    color: var(--text-secondary);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    animation: listItemSlide 0.8s ease-out calc(var(--item-index) * 0.1s + 0.5s) both;
    transition: color 0.3s ease;
}

.info-card li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.9rem;
    animation: arrowPulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.info-card:hover li {
    color: var(--text-primary);
}

.info-card:hover li::before {
    color: var(--accent-color);
    transform: translateX(5px);
}

@keyframes listItemSlide {
    0% { 
        opacity: 0; 
        transform: translateX(-20px); 
    }
    100% { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

@keyframes arrowPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Ultra-Advanced Usage List */
.usage-list {
    display: grid;
    gap: 25px;
    margin: 40px 0;
}

.usage-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.5) 0%, 
        rgba(20, 20, 33, 0.6) 100%);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: usageSlideIn 1s ease-out calc(var(--usage-index) * 0.2s) both;
}

.usage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s ease;
}

.usage-item::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--glow-secondary) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease;
}

.usage-item:hover {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.1) 0%, 
        rgba(0, 0, 0, 0.6) 100%);
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 15px 50px var(--glow-secondary);
}

.usage-item:hover::before {
    transform: scaleY(1);
}

.usage-item:hover::after {
    opacity: 0.3;
    right: 20px;
}

@keyframes usageSlideIn {
    0% { 
        opacity: 0; 
        transform: translateX(-50px) rotateZ(-5deg); 
    }
    100% { 
        opacity: 1; 
        transform: translateX(0) rotateZ(0deg); 
    }
}

.usage-item i {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-top: 5px;
    min-width: 50px;
    animation: usageIconFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 15px var(--secondary-color));
    transition: all 0.3s ease;
}

.usage-item:hover i {
    transform: scale(1.2) rotateY(180deg);
    color: var(--primary-color);
    filter: drop-shadow(0 0 25px var(--primary-color));
}

@keyframes usageIconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.usage-item h4 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
    animation: usageTitleGlow 3s ease-in-out infinite alternate;
}

@keyframes usageTitleGlow {
    from { text-shadow: 0 0 10px rgba(255, 255, 255, 0.3); }
    to { text-shadow: 0 0 20px rgba(255, 255, 255, 0.5), 0 0 30px var(--secondary-color); }
}

.usage-item p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.usage-item:hover p {
    color: var(--text-primary);
}

/* Ultra-Advanced Sharing Grid */
.sharing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.sharing-card {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.6) 0%, 
        rgba(20, 20, 33, 0.7) 100%);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: sharingCardRise 1.2s ease-out calc(var(--sharing-index) * 0.3s) both;
}

.sharing-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, var(--glow-accent) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.sharing-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent 0deg,
        var(--accent-color) 90deg,
        transparent 180deg
    );
    animation: sharingCardRotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.sharing-card:hover {
    border-color: var(--accent-color);
    box-shadow: 
        0 25px 70px var(--glow-accent),
        0 0 50px var(--glow-accent);
    transform: translateY(-15px) scale(1.05) rotateX(10deg);
}

.sharing-card:hover::before {
    width: 200px;
    height: 200px;
    opacity: 0.2;
}

.sharing-card:hover::after {
    opacity: 0.3;
}

@keyframes sharingCardRise {
    0% { 
        opacity: 0; 
        transform: translateY(60px) rotateX(45deg); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0) rotateX(0deg); 
    }
}

@keyframes sharingCardRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.sharing-card i {
    color: var(--accent-color);
    font-size: 3rem;
    margin-bottom: 20px;
    animation: sharingIconPulse 2.5s ease-in-out infinite;
    filter: drop-shadow(0 0 20px var(--accent-color));
    transition: all 0.4s ease;
}

.sharing-card:hover i {
    transform: scale(1.3) rotateY(360deg);
    color: var(--primary-color);
    filter: drop-shadow(0 0 30px var(--primary-color));
}

@keyframes sharingIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.sharing-card h4 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
    animation: sharingTitleGlow 3s ease-in-out infinite alternate;
}

@keyframes sharingTitleGlow {
    from { text-shadow: 0 0 15px rgba(255, 255, 255, 0.3); }
    to { text-shadow: 0 0 25px rgba(255, 255, 255, 0.5), 0 0 35px var(--accent-color); }
}

.sharing-card p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.sharing-card:hover p {
    color: var(--text-primary);
}

/* Security Features */
.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.security-item {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.security-item:hover {
    background: rgba(0, 255, 0, 0.15);
    transform: scale(1.05);
}

.security-item i {
    color: #00ff00;
    font-size: 2rem;
    margin-bottom: 10px;
}

.security-item span {
    color: white;
    font-weight: 600;
    display: block;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.right-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.right-item:hover {
    border-color: rgba(0, 255, 255, 0.3);
    background: rgba(0, 255, 255, 0.05);
}

.right-item h4 {
    color: #00ffff;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.right-item p {
    color: #b0b0b0;
    margin: 0;
    font-size: 0.95rem;
}

/* Contact Info */
.contact-info {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
}

.contact-methods {
    display: grid;
    gap: 15px;
    margin-top: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #e0e0e0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.contact-method i {
    color: #00ffff;
    font-size: 1.2rem;
    min-width: 20px;
}

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

@keyframes neonGlow {
    from { text-shadow: 0 0 30px rgba(0, 255, 255, 0.5); }
    to { text-shadow: 0 0 50px rgba(0, 255, 255, 0.8), 0 0 60px rgba(0, 255, 255, 0.6); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .content-nav {
        position: relative;
        top: 0;
    }
    
    .privacy-hero h1 {
        font-size: 2.5rem;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .sharing-grid {
        grid-template-columns: 1fr;
    }
    
    .security-features {
        grid-template-columns: repeat(2, 1fr);
    }
}
