:root {
    --green: #8DC63F;
    --dark-gray: #333333;
    --light-gray: #666666;
    --lighter-gray: #f5f5f5;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
nav {
    background-color: var(--white);
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--dark-gray);
    font-size: 2rem;
    font-weight: 800;
    text-decoration: none;
    transition: opacity 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo:hover {
    opacity: 0.9;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--green);
}

.try-now-btn {
    background-color: var(--green);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.try-now-btn:hover {
    background-color: #7ab32f;
    transform: translateY(-2px);
}

.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 4px;
}

.menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--dark-gray);
    transition: transform 0.3s ease;
}

/* Main Content */
main {
    padding-top: 100px;
    padding-bottom: 80px;
}

h1 {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    font-style: italic;
    line-height: 1.2;
}

h1 span.highlight {
    color: var(--green);
}

.subtitle {
    font-size: 1.5rem;
    color: var(--light-gray);
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 3rem;
}

.hero-image {
    width: 100%;
    height: 70vh;
    position: relative;
    overflow: hidden;
    margin-bottom: 4rem;
    background-color: var(--lighter-gray);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Futuristic Box */
.futuristic-box {
    background: linear-gradient(145deg, rgba(141, 198, 63, 0.1), rgba(141, 198, 63, 0.05));
    border: 1px solid rgba(141, 198, 63, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2rem 0 3rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(141, 198, 63, 0.1);
    transition: all 0.3s ease;
}

.futuristic-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(141, 198, 63, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.futuristic-box:hover::before {
    transform: translateX(100%);
}

.futuristic-box h2 {
    color: var(--green);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.futuristic-box p {
    color: var(--dark-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0 0 1rem;
}

.futuristic-box p:last-child {
    margin-bottom: 0;
}

.futuristic-box .quote {
    color: var(--green);
    font-style: italic;
    font-size: 1.2rem;
    text-align: right;
    margin-top: 1.5rem;
}

/* Profile Page Styles */
.profile-page {
    padding-top: 120px;
    background-color: var(--white);
}

.profile-card {
    background: var(--lighter-gray);
    border-radius: 8px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.profile-info h2 {
    color: var(--dark-gray);
    font-size: 2rem;
    margin: 2rem 0 1rem;
    font-style: italic;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.info-item h3 {
    color: var(--green);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.info-item p {
    color: var(--dark-gray);
    font-size: 1.1rem;
}

.experience-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.experience-item {
    background-color: var(--lighter-gray);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.experience-item h3 {
    color: var(--dark-gray);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.experience-item .company {
    color: var(--green);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.experience-item .duration {
    color: var(--light-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Feed Styles */
.feeds-section {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.feed-container {
    background: var(--lighter-gray);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.feed-container h2 {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.feed-content {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
}

.feed-error {
    padding: 2rem;
    text-align: center;
    color: var(--light-gray);
}

.feed-links {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.feed-link {
    display: block;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid rgba(141, 198, 63, 0.2);
    transition: all 0.3s ease;
}

.feed-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(141, 198, 63, 0.15);
    border-color: var(--green);
}

.feed-link h3 {
    color: var(--green);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.feed-link p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin: 0;
}

.social-link {
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.8;
}

/* Full Image Display */
.full-image-container {
    margin: 3rem 0;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.full-image {
    max-width: 800px;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-right {
        gap: 1.5rem;
    }
    
    h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .menu-btn {
        display: flex;
    }

    .nav-right {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .nav-right.active {
        transform: translateY(0);
    }

    h1 {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
        padding: 0 20px;
    }

    .hero-image {
        height: 50vh;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .try-now-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .hero-image {
        height: 40vh;
    }
}
