* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    
    body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
    }
    .navbar-center {
        display: flex;
        gap: 2rem;
        align-items: center;
    }
    
    .navbar-center a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        transition: color 0.3s ease;
        position: relative;
    }
    
    .navbar-center a:hover {
        color: #667eea;
    }
    
    .navbar-center a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -5px;
        left: 0;
        background-color: #667eea;
        transition: width 0.3s ease;
    }
    
    .navbar-center a:hover::after {
        width: 100%;
    }
    
    .navbar-right {
        display: flex;
        gap: 2rem;
        align-items: center;
    }
    
    .login-btn {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .login-btn:hover {
        transform: translateY(-2px);
        background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .login-btn::after {
        display: none;
    }
    
    @media (max-width: 768px) {
        .navbar {
            flex-wrap: wrap;
            gap: 1rem;
        }
    
        .navbar-center {
            order: 3;
            width: 100%;
            justify-content: center;
            gap: 1.5rem;
        }
    
        .navbar-right {
            gap: 1.5rem;
        }
    }
    .navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    }
    
    .navbar-left img {
    height: 40px;
    width: auto;
    }
    
    .navbar-right {
    display: flex;
    gap: 2rem;
    }
    
    .navbar-right a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    }
    
    .navbar-right a:hover {
    color: #667eea;
    }
    
    .navbar-right a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #667eea;
    transition: width 0.3s ease;
    }
    
    .navbar-right a:hover::after {
    width: 100%;
    }
    
    .main-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    }
    
    h1 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin: 2rem 0 3rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.6s ease-out;
    }
    
    h2 {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-left: 1rem;
    animation: slideIn 0.6s ease-out;
    }
    
    h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    border-radius: 2px;
    }
    
    .storyDiv {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    line-height: 1.7;
    font-size: 1rem;
    color: #333;
    animation: slideIn 0.6s ease-out;
    transition: all 0.3s ease;
    }
    
    .storyDiv::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    }
    
    .storyDiv:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    }
    
    .storyDiv:nth-child(4)::before {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    }
    
    .storyDiv:nth-child(6)::before {
    background: linear-gradient(135deg, #ffd89b, #19547b);
    }
    
    .storyDiv a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    }
    
    .storyDiv a:hover {
    color: #764ba2;
    }
    
    .storyDiv a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transition: width 0.3s ease;
    }
    
    .storyDiv a:hover::after {
    width: 100%;
    }
    
    .storyDiv b {
    color: #667eea;
    font-weight: 600;
    }
    
    @keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
    }
    
    h1 { animation-delay: 0.1s; }
    h2:nth-of-type(1) { animation-delay: 0.2s; }
    .storyDiv:nth-child(4) { animation-delay: 0.3s; }
    h2:nth-of-type(2) { animation-delay: 0.4s; }
    .storyDiv:nth-child(6) { animation-delay: 0.5s; }
    
    @media (max-width: 768px) {
    .navbar {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .navbar-right {
        gap: 1rem;
    }
    
    .main-content {
        padding: 1rem;
    }
    
    h1 {
        font-size: 2.5rem;
        margin: 1.5rem 0 2rem;
    }
    
    .storyDiv {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
    }
    
    @media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    .storyDiv {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }
    }

    .logout-btn {
        background: linear-gradient(135deg, #f56565 0%, #c53030 100%); /* red gradient */
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .logout-btn:hover {
        transform: translateY(-2px);
        background: linear-gradient(135deg, #e53e3e 0%, #9b2c2c 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }