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

:root {
    --primary-color: #8B4513;
    --secondary-color: #D2691E;
    --accent-color: #00AFF0;
    --onlyfans-blue: #00AFF0;
    --dark-bg: #1a1a1a;
    --light-bg: #f5f5f5;
    --text-dark: #333;
    --text-light: #fff;
    --gradient-1: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    --gradient-2: linear-gradient(135deg, #00AFF0 0%, #0088CC 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--light-bg);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-light);
}

.logo-icon {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

.logo-text {
    display: flex;
    align-items: center;
}

.logo-only {
    color: #fff;
    font-weight: 900;
}

.logo-poo {
    color: var(--onlyfans-blue);
    font-weight: 900;
}

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

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-2);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-bg);
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(139, 69, 19, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.2) 0%, transparent 50%),
        var(--dark-bg);
    animation: backgroundShift 10s ease-in-out infinite;
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: var(--text-light);
}

.hero-title {
    font-size: clamp(3rem, 10vw, 6rem);
    margin-bottom: 1rem;
    font-weight: 900;
}

.glitch {
    position: relative;
    display: inline-flex;
    animation: glitch 3s infinite;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient-2);
    color: var(--text-light);
    box-shadow: 0 5px 15px rgba(0, 175, 240, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 175, 240, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background: var(--onlyfans-blue);
    transform: translateY(-3px);
}

/* Submission Notice */
.submission-notice {
    background: rgba(0, 175, 240, 0.1);
    border-left: 4px solid var(--onlyfans-blue);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notice-icon {
    font-size: 2rem;
}

.submission-notice p {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
}

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

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

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--onlyfans-blue);
}

/* Contract Address Section */
.ca-section {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(0, 175, 240, 0.1);
    border: 2px solid var(--onlyfans-blue);
    border-radius: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ca-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ca-address {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: var(--onlyfans-blue);
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 8px;
    word-break: break-all;
    margin-bottom: 1rem;
    font-weight: 600;
}

.ca-copy-btn {
    width: 100%;
    background: var(--gradient-2);
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.ca-copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 175, 240, 0.4);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Upload Section */
.upload-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--light-bg) 0%, #fff 100%);
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.emoji-bounce {
    display: inline-block;
    animation: bounce 2s infinite;
}

.upload-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 2rem;
}

.upload-area {
    border: 3px dashed var(--secondary-color);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: #fafafa;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-area .preview-image {
    cursor: pointer;
    transition: filter 0.3s, transform 0.3s;
}

.upload-area .preview-image:not(.revealed):hover {
    transform: scale(1.05);
}

.upload-area:hover {
    border-color: var(--accent-color);
    background: #fff;
    transform: scale(1.02);
}

.upload-area.dragover {
    border-color: var(--accent-color);
    background: rgba(255, 107, 53, 0.1);
}

.upload-placeholder {
    pointer-events: none;
}

.upload-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.upload-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.upload-subtext {
    color: #666;
}

.preview-image {
    max-width: 100%;
    max-height: 400px;
    border-radius: 10px;
    object-fit: contain;
    filter: blur(15px);
}

.preview-image.revealed {
    filter: blur(0);
}

.upload-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-upload {
    width: 100%;
    background: var(--gradient-1);
    color: var(--text-light);
    padding: 1.2rem;
    font-size: 1.1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.btn-upload:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.4);
}

.btn-upload:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background: white;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--secondary-color);
    background: transparent;
    color: var(--secondary-color);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.filter-btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--gradient-1);
    color: white;
    border-color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.gallery-item {
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    animation: fadeInUp 0.5s ease-out;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.gallery-image-container {
    position: relative;
    width: 100%;
    height: 250px;
    background: #f0f0f0;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(20px);
    transition: filter 0.3s;
}

.gallery-image.revealed {
    filter: blur(0);
}

.nsfw-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.nsfw-overlay:hover {
    background: rgba(0, 0, 0, 0.9);
}

.nsfw-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.nsfw-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    animation: pulse 2s infinite;
}

.nsfw-text {
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    text-align: center;
    padding: 0 1rem;
}

.nsfw-subtext {
    color: var(--onlyfans-blue);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Hide Overlay (for revealed images) */
.hide-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border: 2px solid var(--onlyfans-blue);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    z-index: 5;
    display: none;
}

.hide-overlay.visible {
    display: block;
}

.hide-overlay:hover {
    background: var(--onlyfans-blue);
    transform: scale(1.05);
}

.social-icon {
    font-size: 1.2rem;
    margin-right: 0.3rem;
}

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

.gallery-info {
    padding: 1.5rem;
}

.gallery-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.gallery-description {
    font-size: 0.9rem;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.empty-gallery {
    text-align: center;
    padding: 5rem 0;
}

.empty-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-gallery p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, white 0%, var(--light-bg) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s;
}

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

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

.about-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.about-card p {
    color: #666;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-text {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer-disclaimer {
    background: rgba(255, 107, 53, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin: 2rem auto;
    max-width: 600px;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link {
    display: inline-flex;
    align-items: center;
}

.footer-link:hover {
    color: var(--onlyfans-blue);
}

.copyright {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Confirmation Dialog */
.confirmation-dialog {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3000;
    align-items: center;
    justify-content: center;
}

.confirmation-dialog.active {
    display: flex;
}

.confirmation-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
}

.confirmation-content {
    position: relative;
    max-width: 500px;
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    animation: modalSlideIn 0.3s ease-out;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.confirmation-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: bounce 1s infinite;
}

.confirmation-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.confirmation-message {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.confirmation-warning {
    background: rgba(255, 107, 53, 0.1);
    border-left: 4px solid var(--accent-color);
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: 5px;
}

.confirmation-warning p {
    font-size: 1rem;
    color: var(--onlyfans-blue);
    font-weight: 600;
    margin: 0;
}

.confirmation-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.confirmation-btn {
    padding: 1rem 2rem;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.confirmation-btn-yes {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.confirmation-btn-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.4);
}

.confirmation-btn-no {
    background: #f0f0f0;
    color: var(--text-dark);
}

.confirmation-btn-no:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

/* Dialog Info Section */
.dialog-info {
    background: rgba(0, 175, 240, 0.1);
    border: 1px solid rgba(0, 175, 240, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin: 1.5rem 0;
}

.dialog-ca {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.dialog-ca-label {
    font-weight: bold;
    color: var(--text-dark);
}

.dialog-ca-value {
    font-family: 'Courier New', monospace;
    color: var(--onlyfans-blue);
    font-weight: 600;
    word-break: break-all;
    flex: 1;
}

.dialog-x-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--onlyfans-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    padding: 0.5rem 0;
}

.dialog-x-link:hover {
    color: #0088CC;
    transform: translateX(5px);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease-out;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 1;
}

.modal-close:hover {
    transform: rotate(90deg);
    background: var(--primary-color);
}

.modal-hide-btn {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 175, 240, 0.9);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 1;
}

.modal-hide-btn:hover {
    background: var(--onlyfans-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 175, 240, 0.4);
}

#modalImage {
    max-width: 100%;
    max-height: 60vh;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.modal-info {
    text-align: center;
}

#modalTitle {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

#modalDescription {
    color: #666;
    margin-bottom: 1.5rem;
}

.modal-footer {
    border-top: 2px solid rgba(0, 175, 240, 0.2);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.modal-ca {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.modal-ca-label {
    font-weight: bold;
    color: var(--text-dark);
}

.modal-ca-value {
    font-family: 'Courier New', monospace;
    color: var(--onlyfans-blue);
    font-weight: 600;
    word-break: break-all;
    flex: 1;
    background: rgba(0, 175, 240, 0.1);
    padding: 0.5rem;
    border-radius: 5px;
}

.modal-x-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--onlyfans-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    padding: 0.8rem 1rem;
    background: rgba(0, 175, 240, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(0, 175, 240, 0.3);
}

.modal-x-link:hover {
    background: rgba(0, 175, 240, 0.2);
    transform: translateX(5px);
    border-color: var(--onlyfans-blue);
}

.modal-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

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

#modalAvgRating {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-color);
}

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

@keyframes glitch {
    0%, 90%, 100% {
        transform: translate(0);
    }
    92% {
        transform: translate(-2px, 2px);
    }
    94% {
        transform: translate(2px, -2px);
    }
    96% {
        transform: translate(-2px, -2px);
    }
    98% {
        transform: translate(2px, 2px);
    }
}

@keyframes backgroundShift {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .confirmation-content {
        max-width: 95%;
        padding: 2rem 1.5rem;
    }
    
    .confirmation-title {
        font-size: 1.5rem;
    }
    
    .confirmation-message {
        font-size: 1rem;
    }
    
    .dialog-ca {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .dialog-ca-value {
        font-size: 0.8rem;
    }
    
    .modal-ca {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .modal-ca-value {
        font-size: 0.85rem;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        max-width: 95%;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .upload-card {
        padding: 1rem;
    }
    
    .upload-area {
        padding: 2rem 1rem;
        min-height: 200px;
    }
}

