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

body {
    font-family: 'Inter', sans-serif;
    background: #0b0b0b;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Glassmorphism Effects */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
}

.glass-header {
    background: rgba(11, 11, 11, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.glass-footer {
    background: rgba(11, 11, 11, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

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

/* Buttons */
.btn-gold {
    background: linear-gradient(135deg, #d4af37 0%, #c5a028 100%);
    color: #0b0b0b;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
    padding: 10px 28px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    background: #d4af37;
    color: #0b0b0b;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Header Styles */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 20px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    height: 40px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.logo-text .gold {
    color: #d4af37;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover,
.nav-link.active {
    color: #d4af37;
}

/* Search Bar */
.search-bar {
    flex: 1;
    max-width: 400px;
    position: relative;
}

.search-form {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    overflow: hidden;
}

.search-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 20px;
    color: white;
    outline: none;
}

.search-form button {
    background: transparent;
    border: none;
    padding: 0 15px;
    color: #d4af37;
    cursor: pointer;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #121212;
    border-radius: 8px;
    margin-top: 10px;
    display: none;
    z-index: 1000;
}

/* User Actions */
.user-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.notification-icon,
.message-icon {
    position: relative;
    cursor: pointer;
}

.notification-badge,
.message-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #d4af37;
    color: #0b0b0b;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: bold;
}

.profile-dropdown {
    position: relative;
}

.profile-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.profile-trigger img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #121212;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    min-width: 200px;
    display: none;
    margin-top: 10px;
    z-index: 1000;
}

.profile-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.dropdown-menu a:hover {
    background: rgba(212, 175, 55, 0.1);
}

.dropdown-menu hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 5px 0;
}

/* Mobile Navigation */
.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background: #0b0b0b;
    z-index: 1001;
    transition: left 0.3s ease;
    padding: 20px;
}

.mobile-nav.active {
    left: 0;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #0b0b0b 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 64px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title .gold {
    color: #d4af37;
}

.animated-text {
    display: inline-block;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 80px;
}

.stat h3 {
    font-size: 36px;
    color: #d4af37;
}

/* Stories Section */
.stories-section {
    padding: 60px 0;
    background: #0b0b0b;
}

.stories-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
}

.story-item {
    text-align: center;
    cursor: pointer;
    flex-shrink: 0;
}

.story-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #d4af37, #ffd700);
    padding: 2px;
    margin-bottom: 10px;
}

.story-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #0b0b0b;
}

/* Categories Section */
.categories-section {
    padding: 60px 0;
    background: #121212;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.category-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    text-align: center;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.1);
}

.category-icon i {
    font-size: 48px;
    color: #d4af37;
    margin-bottom: 15px;
}

/* Photographers Grid */
.photographers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.photographer-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.photographer-card:hover {
    transform: translateY(-5px);
}

.photographer-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.photographer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.followers-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #d4af37;
    color: #0b0b0b;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.photographer-info {
    padding: 20px;
}

.photographer-info h3 {
    margin-bottom: 10px;
}

.photographer-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.post-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.post-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
}

.post-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.post-user-info h4 {
    font-size: 14px;
    margin-bottom: 2px;
}

.post-user-info span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.post-image {
    position: relative;
}

.post-image img {
    width: 100%;
    height: auto;
}

.post-category {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #d4af37;
    color: #0b0b0b;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.post-actions {
    display: flex;
    gap: 20px;
    padding: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.action-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.action-btn:hover {
    color: #d4af37;
}

.liked {
    color: #ff4444;
}

.post-caption {
    padding: 0 15px 15px;
    font-size: 14px;
}

/* Footer */
.main-footer {
    margin-top: 80px;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
}

.footer-description {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #d4af37;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
}

.contact-info li {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info i {
    color: #d4af37;
    margin-top: 3px;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px 0 0 30px;
    color: white;
    outline: none;
}

.newsletter-form button {
    padding: 10px 20px;
    background: #d4af37;
    border: none;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    color: #0b0b0b;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.payment-methods i {
    font-size: 32px;
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.5);
}

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

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }
    
    .main-nav {
        display: none;
    }
    
    .search-bar {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .photographers-grid {
        grid-template-columns: 1fr;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Utility Classes */
.gold {
    color: #d4af37;
}

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

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.p-20 {
    padding: 20px;
}