/* Import Custom Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #ffffff;
    --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --shadow-hover: 0 12px 48px 0 rgba(31, 38, 135, 0.5);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-gradient);
    background-attachment: fixed;
    color: var(--text-light);
    overflow-x: hidden;
    min-height: 100vh;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Prevent Right Click & Developer Tools */
body.blur-effect {
    filter: blur(10px);
    pointer-events: none;
    transition: filter 0.3s ease;
}

/* Glassmorphism Effect */
.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
}

.glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    padding: 2rem;
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.5s ease;
}

.modal-content {
    max-width: 600px;
    width: 90%;
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    animation: scaleIn 0.5s ease;
}

.modal-logo {
    margin-bottom: 1.5rem;
}

.logo-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    animation: pulse 2s infinite;
}

.modal-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.creator-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #e0e7ff;
}

.disclaimer-text {
    text-align: left;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #e5e7eb;
}

.disclaimer-text p {
    margin-bottom: 1rem;
}

.disclaimer-text strong {
    color: #fbbf24;
}

.tc-link {
    color: #60a5fa;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.tc-link:hover {
    color: #93c5fd;
}

.agree-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.agree-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
}

/* Main Content */
.main-content {
    opacity: 1;
    transition: opacity 0.5s ease;
}

.main-content.hidden {
    display: none;
}

/* Navigation */
.top-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    animation: rotate 10s linear infinite;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #fff, #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero-section {
    padding: 5rem 5%;
    text-align: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #e5e7eb;
    font-weight: 300;
}

/* Section Container */
.section-container {
    padding: 2rem 5%;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.title-icon {
    font-size: 2.5rem;
}

/* Profile Grid */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

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

.profile-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.profile-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.profile-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #f3f4f6;
}

.profile-link {
    display: inline-block;
    color: #60a5fa;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    background: rgba(96, 165, 250, 0.1);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.profile-link:hover {
    background: rgba(96, 165, 250, 0.2);
    transform: scale(1.05);
}

/* Content Page */
.content-page {
    padding: 2rem 5%;
    min-height: 80vh;
}

.profile-header {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
}

.profile-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 1.5rem;
    animation: pulse 3s infinite;
}

.profile-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.profile-bio {
    font-size: 1.1rem;
    color: #d1d5db;
    margin-bottom: 2rem;
}

.profile-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #fbbf24;
}

.stat-label {
    font-size: 0.9rem;
    color: #d1d5db;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.content-item {
    overflow: hidden;
}

.media-container {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.no-download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.content-video,
.content-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    pointer-events: none;
}

.content-video {
    pointer-events: auto;
}

.content-caption {
    color: #e5e7eb;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Information Page */
.info-page {
    padding: 2rem 5%;
    min-height: 80vh;
}

.info-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(45deg, #fff, #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-section {
    margin-bottom: 2.5rem;
}

.info-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.info-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e5e7eb;
}

.info-list {
    list-style: none;
    padding-left: 0;
}

.info-list li {
    font-size: 1.1rem;
    line-height: 2;
    color: #e5e7eb;
    padding-left: 2rem;
    position: relative;
}

.info-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.3rem;
}

.warning-box {
    background: rgba(251, 191, 36, 0.1);
    border-left: 4px solid #fbbf24;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.warning-box p {
    margin-bottom: 0.5rem;
    color: #fef3c7;
}

/* Terms Page */
.terms-page {
    padding: 2rem 5%;
    min-height: 80vh;
}

.terms-container {
    max-width: 900px;
    margin: 0 auto;
}

.terms-section {
    margin-bottom: 2rem;
}

.terms-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #a78bfa;
}

.terms-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #e5e7eb;
}

.terms-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.terms-footer p {
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    margin-top: 5rem;
    padding: 2rem 5%;
}

.footer-content {
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
}

.footer-content p {
    color: #d1d5db;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease 0.3s forwards;
    opacity: 0;
}

.animate-slide-up {
    animation: slideUp 0.8s ease forwards;
}

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

.animate-scale {
    animation: scaleIn 0.6s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .profile-grid {
        grid-template-columns: 1fr;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-stats {
        gap: 2rem;
    }
    
    .modal-content {
        padding: 2rem 1.5rem;
    }
    
    .modal-title {
        font-size: 2rem;
    }
    
    .section-container {
        padding: 1rem 3%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .nav-brand {
        gap: 0.5rem;
    }
    
    .brand-name {
        font-size: 1.2rem;
    }
    
    .nav-logo {
        width: 40px;
        height: 40px;
    }
}
