/* Reset and base styles */
* {
    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;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    color: #fff;
    padding: 2rem;
}

header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 90vw;
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

h1 {
    font-size: 1rem;
    font-weight: 300;
    color: #64ffda;
    margin-bottom: 2rem;
    line-height: 1.4;
    letter-spacing: 0.5px;
    word-break: break-word;
    overflow-wrap: break-word;
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
}

main {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    width: 90%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideUp 0.8s ease-out;
}

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

section {
    margin-bottom: 2.5rem;
    transition: transform 0.3s ease;
}

section:hover {
    transform: translateY(-2px);
}

section:last-child {
    margin-bottom: 0;
}

h2 {
    color: #64ffda;
    margin-bottom: 1.2rem;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

a {
    color: #64ffda;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

a:hover {
    color: #9effeb;
    text-shadow: 0 0 8px rgba(100, 255, 218, 0.5);
}

a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #64ffda;
    transition: width 0.3s ease;
}

a:hover::after {
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body {
        padding: 1.5rem;
    }
    
    main {
        padding: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    p {
        font-size: 1rem;
    }
}
