* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Fonts, Inc.', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow-x: hidden;
}

.hero-header {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(25, 25, 112, 0.4) 0%,
        rgba(0, 100, 100, 0.3) 50%,
        rgba(25, 25, 112, 0.5) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin: 0;
    font-family: 'Fonts, Inc.', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-feature-settings: 'liga' 1, 'kern' 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-subtitle {
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-top: 20px;
    letter-spacing: 0.02em;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.5s ease-out 0.9s both;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
        letter-spacing: 0.03em;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 2vw, 1.2rem);
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(2rem, 5vw, 3rem);
        letter-spacing: 0.02em;
    }
    
    .hero-subtitle {
        font-size: clamp(0.8rem, 1.8vw, 1rem);
        margin-top: 12px;
    }
}

/* Subtle animation for the title */
.hero-title {
    animation: fadeInUp 1.5s ease-out;
}

/* Menu Button Styles */
.menu-container {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    z-index: 4;
}

.menu-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    cursor: pointer;
    padding: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 20px;
    height: 16px;
}

.menu-icon span {
    width: 100%;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.menu-btn.active .menu-icon span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-btn.active .menu-icon span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active .menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Full Screen Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(25, 25, 112, 0.95) 0%, rgba(0, 100, 100, 0.9) 50%, rgba(25, 25, 112, 0.95) 100%);
    backdrop-filter: blur(20px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    padding: 80px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.menu-left {
    flex: 2;
    display: flex;
    align-items: flex-start;
    padding-right: 60px;
}

.menu-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.menu-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-heading {
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

.menu-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.menu-item {
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 300;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1.2;
}

.menu-item:hover {
    color: rgba(255, 255, 255, 0.7);
    transform: translateX(10px);
}

.menu-item-with-subtitle {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.menu-subtitle {
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    margin-left: 10px;
}

.menu-item-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.menu-item-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    left: 0;
    top: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 10px;
    min-width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
}

.menu-item-dropdown.active .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.2s ease;
    border-radius: 4px;
    margin: 0 8px;
}

.dropdown-item:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #000;
    transform: translateX(5px);
}

.menu-info {
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: white;
    margin: 0;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.contact-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.close-btn {
    position: absolute;
    top: 40px;
    right: 60px;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

/* Password Protection Styles */
.password-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.password-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 60px 50px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 90%;
    position: relative;
}

.password-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: rotate(90deg);
}

.password-title {
    font-family: 'Orbitron', 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.password-subtitle {
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.5;
}

.password-input-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.password-input {
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: 16px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.password-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

.password-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.password-submit-btn {
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 10px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.password-submit-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.password-error {
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: 14px;
    color: #ff6b6b;
    margin-top: 10px;
    min-height: 20px;
}

/* Client Work Styles */
.client-work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.client-project {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.client-project:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.project-title {
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.project-description {
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-status {
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #4ecdc4;
    background: rgba(78, 205, 196, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid rgba(78, 205, 196, 0.3);
}

.contact-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-title {
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.contact-text {
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Personal Page Styles */
.personal-header {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: visible;
    padding-top: 80px;
    padding-bottom: 60px;
}

.personal-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
    padding: 0 60px;
    margin: 0 auto;
}

.section-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.section-btn {
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.section-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
}

.section-btn.active {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
    color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.content-sections {
    width: 100%;
    position: relative;
}

.content-section {
    display: none;
    animation: fadeInUp 0.5s ease-out both;
}

.content-section.active {
    display: block;
}

.section-title {
    font-family: 'Orbitron', 'Electric Type', 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    margin-bottom: 40px;
    color: white;
    text-align: center;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.profile-section {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1.5s ease-out 0.1s both;
}

.profile-image-container {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    animation: fadeInScale 1.5s ease-out;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.profile-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(25, 25, 112, 0.2) 0%,
        rgba(0, 100, 100, 0.1) 50%,
        rgba(25, 25, 112, 0.2) 100%
    );
    transition: opacity 0.3s ease;
}

.profile-image-container:hover .profile-image {
    transform: scale(1.1);
}

.profile-image-container:hover .profile-image-overlay {
    opacity: 0.7;
}

.media-passion-section {
    flex: 2;
    color: white;
    animation: slideInRight 1.5s ease-out 0.1s both;
    margin-bottom: 60px;
}

.media-passion-title {
    font-family: 'Orbitron', 'Electric Type', 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    margin-bottom: 40px;
    color: white;
    text-align: center;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.media-passion-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.media-passion-intro {
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.media-passion-main {
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    text-align: left;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.media-passion-highlight {
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 500;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    font-style: italic;
    margin: 30px 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
}

.media-passion-highlight::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateY(-50%);
}

.story-section {
    flex: 2;
    color: white;
    animation: slideInRight 1.5s ease-out 0.3s both;
}

.story-title {
    font-family: 'Orbitron', 'Electric Type', 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
    opacity: 1;
    animation: fadeInUp 1.5s ease-out 0.6s both;
    color: white;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.story-intro {
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    opacity: 1;
    animation: fadeInUp 1.5s ease-out 0.9s both;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.story-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    margin: 20px 0;
    opacity: 0;
    animation: slideInLeft 1.5s ease-out 1.2s both;
}

.story-main {
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    opacity: 1;
    animation: fadeInUp 1.5s ease-out 1.5s both;
    color: white;
}

.story-highlight {
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 20px 0;
    opacity: 1;
    animation: fadeInScale 1.5s ease-out 1.8s both;
    position: relative;
    overflow: hidden;
    color: white;
}

.story-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Responsive Personal Page */
@media (max-width: 1024px) {
    .personal-content {
        gap: 60px;
        padding: 0 40px;
    }
    
    .profile-image-container {
        width: 250px;
        height: 250px;
    }
    
    .story-intro {
        font-size: 16px;
    }
    
    .story-main {
        font-size: 15px;
    }
    
    .story-highlight {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .personal-header {
        padding-top: 60px;
        padding-bottom: 40px;
    }
    
    .personal-content {
        flex-direction: column;
        gap: 30px;
        padding: 0 30px;
        text-align: center;
    }
    
    .section-buttons {
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .section-btn {
        font-size: 16px;
        padding: 10px 25px;
    }
    
    .profile-image-container {
        width: 200px;
        height: 200px;
    }
    
    .section-title {
        font-size: clamp(2rem, 4vw, 3rem);
        margin-bottom: 30px;
    }
    
    .media-passion-content {
        gap: 20px;
    }
    
    .media-passion-intro {
        font-size: 15px;
        padding: 20px;
    }
    
    .media-passion-main {
        font-size: 14px;
    }
    
    .media-passion-highlight {
        font-size: 16px;
        padding: 15px;
    }
    
    .story-content {
        gap: 20px;
    }
    
    .story-intro {
        font-size: 15px;
        padding: 20px;
    }
    
    .story-main {
        font-size: 14px;
    }
    
    .story-highlight {
        font-size: 16px;
        padding: 15px;
    }
}
    
    .story-title {
        font-size: clamp(2rem, 4vw, 3rem);
        margin-bottom: 30px;
    }
    
    .story-content {
        gap: 20px;
    }
    
    .story-intro {
        font-size: 15px;
        padding: 20px;
    }
    
    .story-main {
        font-size: 14px;
    }
    
    .story-highlight {
        font-size: 16px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .personal-content {
        padding: 0 20px;
        gap: 30px;
    }
    
    .profile-image-container {
        width: 150px;
        height: 150px;
    }
    
    .story-title {
        font-size: clamp(1.5rem, 3vw, 2.5rem);
        margin-bottom: 25px;
    }
    
    .story-content {
        gap: 15px;
    }
    
    .story-intro {
        font-size: 14px;
        padding: 15px;
    }
    
    .story-main {
        font-size: 13px;
    }
    
    .story-highlight {
        font-size: 15px;
        padding: 12px;
    }
}

/* Media Portfolio Page Styles */
.portfolio-header {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 0;
}

.portfolio-content {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    width: 100%;
    padding: 0 60px;
}

.portfolio-title-section {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 1.5s ease-out;
}

.portfolio-title {
    font-family: 'Orbitron', 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.portfolio-subtitle {
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.05em;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    animation: fadeInUp 1.5s ease-out;
    position: relative;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.project-card.active-project {
    border-color: rgba(0, 100, 100, 0.5);
    background: rgba(0, 100, 100, 0.1);
}

.project-card.coming-soon {
    opacity: 0.6;
    border-style: dashed;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.project-title {
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: white;
    margin: 0;
}

.project-status {
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.active-project .project-status {
    background: rgba(0, 100, 100, 0.3);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 100, 100, 0.5);
}

.coming-soon .project-status {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-content {
    color: white;
}

.project-content h3 {
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin: 20px 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.project-content p {
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 15px 0;
}

.project-content ul {
    margin: 0;
    padding-left: 20px;
}

.project-content li {
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.tech-tag {
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.coming-soon-content {
    text-align: center;
    padding: 40px 20px;
}

.coming-soon-icon {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.coming-soon-content p {
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Responsive Portfolio */
@media (max-width: 1024px) {
    .portfolio-content {
        padding: 0 40px;
    }
    
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
    }
    
    .project-card {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .portfolio-header {
        padding: 60px 0;
    }
    
    .portfolio-content {
        padding: 0 30px;
    }
    
    .portfolio-title-section {
        margin-bottom: 60px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .project-card {
        padding: 20px;
    }
    
    .project-title {
        font-size: 20px;
    }
    
    .project-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .portfolio-content {
        padding: 0 20px;
    }
    
    .portfolio-title-section {
        margin-bottom: 40px;
    }
    
    .project-card {
        padding: 15px;
    }
    
    .project-title {
        font-size: 18px;
    }
    
    .project-content h3 {
        font-size: 14px;
    }
    
    .project-content p,
    .project-content li {
        font-size: 13px;
    }
    
    .tech-tag {
        font-size: 11px;
        padding: 4px 8px;
    }
}

/* Favorites Popup Styles */
.favorites-popup-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 100;
}

.favorites-popup-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    color: white;
    font-size: 24px;
}

.favorites-popup-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.popup-arrow {
    transition: transform 0.3s ease;
}

.favorites-popup-btn:hover .popup-arrow {
    transform: translateY(-3px);
}

.favorites-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(25, 25, 112, 0.95) 0%, rgba(0, 100, 100, 0.9) 50%, rgba(25, 25, 112, 0.95) 100%);
    backdrop-filter: blur(20px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.favorites-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.favorites-popup-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    backdrop-filter: blur(20px);
    animation: fadeInScale 0.5s ease-out;
}

.favorites-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.favorites-title {
    font-family: 'Orbitron', 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: white;
    margin: 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.favorites-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.favorites-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.favorites-intro {
    margin-bottom: 40px;
}

.favorites-intro p {
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-align: center;
}

.favorites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.favorite-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.favorite-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.favorite-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.favorite-info {
    color: white;
}

.favorite-category {
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 8px 0;
}

.favorite-name {
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: white;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Favorites Popup */
@media (max-width: 768px) {
    .favorites-popup-container {
        bottom: 20px;
        left: 20px;
    }
    
    .favorites-popup-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .favorites-popup-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .favorites-title {
        font-size: 24px;
    }
    
    .favorites-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .favorite-item {
        padding: 15px;
    }
    
    .favorite-logo {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .favorites-popup-container {
        bottom: 15px;
        left: 15px;
    }
    
    .favorites-popup-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .favorites-popup-content {
        padding: 25px 15px;
        margin: 15px;
    }
    
    .favorites-title {
        font-size: 20px;
    }
    
    .favorites-intro p {
        font-size: 14px;
    }
    
    .favorite-name {
        font-size: 14px;
    }
}

/* Page Layout Styles */
.page-header {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 0;
}

.page-content {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    width: 100%;
    padding: 0 60px;
}

.page-title-section {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 1.5s ease-out;
}

.page-title {
    font-family: 'Orbitron', 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.page-subtitle {
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.05em;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.content-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    animation: fadeInUp 1.5s ease-out;
    position: relative;
    overflow: hidden;
}

.content-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-title {
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-content {
    color: white;
}

.card-content p {
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 20px 0;
}

.card-content h3 {
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin: 25px 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-content ul {
    margin: 0;
    padding-left: 20px;
}

.card-content li {
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.card-content strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.status-indicator {
    margin-bottom: 20px;
}

.status-badge {
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
}

.status-badge.in-production {
    background: rgba(0, 100, 100, 0.3);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 100, 100, 0.5);
}

.status-badge.coming-soon {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive Page Layout */
@media (max-width: 1024px) {
    .page-content {
        padding: 0 40px;
    }
    
    .content-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
    }
    
    .content-card {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0;
    }
    
    .page-content {
        padding: 0 30px;
    }
    
    .page-title-section {
        margin-bottom: 60px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .content-card {
        padding: 20px;
    }
    
    .card-title {
        font-size: 20px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .page-content {
        padding: 0 20px;
    }
    
    .page-title-section {
        margin-bottom: 40px;
    }
    
    .content-card {
        padding: 15px;
    }
    
    .card-title {
        font-size: 18px;
    }
    
    .card-content p,
    .card-content li {
        font-size: 14px;
    }
    
    .page-subtitle {
        font-size: 14px;
    }
}

/* Blog Styles */
.blog-controls {
    margin-bottom: 60px;
    text-align: center;
}

.filter-section h3 {
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.month-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.filter-btn {
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: rgba(0, 100, 100, 0.3);
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 100, 100, 0.5);
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-date {
    color: rgba(255, 255, 255, 0.7);
}

.blog-category {
    color: rgba(0, 100, 100, 0.8);
}

/* Responsive Blog */
@media (max-width: 768px) {
    .month-filters {
        gap: 8px;
    }
    
    .filter-btn {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 5px;
    }
}

/* Glossary Styles */
.glossary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.glossary-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    animation: fadeInUp 1.5s ease-out;
}

.glossary-section:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.glossary-category {
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: white;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.glossary-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.glossary-item {
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 3px solid rgba(0, 100, 100, 0.5);
    transition: all 0.3s ease;
}

.glossary-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-left-color: rgba(0, 100, 100, 0.8);
    transform: translateX(5px);
}

.glossary-item .term {
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.glossary-item .definition {
    font-family: 'Fonts, Inc.', 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Responsive Glossary */
@media (max-width: 1024px) {
    .glossary-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .glossary-section {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .glossary-section {
        padding: 20px;
    }
    
    .glossary-category {
        font-size: 18px;
    }
    
    .glossary-item .term {
        font-size: 15px;
    }
    
    .glossary-item .definition {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .glossary-section {
        padding: 15px;
    }
    
    .glossary-category {
        font-size: 16px;
    }
    
    .glossary-item {
        padding: 12px;
    }
    
    .glossary-item .term {
        font-size: 14px;
    }
    
    .glossary-item .definition {
        font-size: 12px;
    }
}

/* Responsive Menu */
@media (max-width: 1024px) {
    .menu-content {
        padding: 60px 40px;
    }
    
    .menu-left {
        padding-right: 40px;
    }
    
    .menu-item {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .menu-container {
        right: 3%;
        top: 60%;
    }
    
    .menu-content {
        flex-direction: column;
        padding: 40px 30px;
        gap: 40px;
    }
    
    .menu-left {
        padding-right: 0;
    }
    
    .menu-right {
        gap: 30px;
    }
    
    .menu-item {
        font-size: 28px;
    }
    
    .close-btn {
        top: 20px;
        right: 30px;
    }
}

@media (max-width: 480px) {
    .menu-container {
        right: 2%;
        top: 65%;
    }
    
    .menu-content {
        padding: 30px 20px;
    }
    
    .menu-item {
        font-size: 24px;
    }
    
    .menu-nav {
        gap: 20px;
    }
    
    .menu-right {
        gap: 25px;
    }
    
    .close-btn {
        top: 15px;
        right: 20px;
        font-size: 24px;
    }
}
