/* Minimal & Elegant Layout */

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

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    cursor: none;
}

/* Custom Glowy Cursor */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 40%, rgba(0,0,0,0.4) 70%, rgba(0,0,0,0.1) 90%, transparent 100%);
    box-shadow: 0 0 15px rgba(0,0,0,0.8), 0 0 30px rgba(0,0,0,0.5), 0 0 45px rgba(0,0,0,0.3), 0 0 60px rgba(0,0,0,0.1);
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-follower {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.2) 80%, transparent 100%);
    box-shadow: 0 0 10px rgba(0,0,0,0.7), 0 0 20px rgba(0,0,0,0.4), 0 0 30px rgba(0,0,0,0.2);
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.1s ease;
}

/* Navigation */
.web-ring {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 120px;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.web-ring a {
    text-decoration: none;
    color: #666;
    padding: 12px 20px;
    transition: all 0.3s ease;
    font-weight: 400;
    position: relative;
}

.web-ring a:hover {
    color: #333;
    text-shadow: 0 0 8px rgba(0,0,0,0.5), 0 0 16px rgba(0,0,0,0.3);
    transform: translateY(-1px);
}

.web-ring a.current {
    color: #333;
    text-shadow: 0 0 10px rgba(0,0,0,0.6), 0 0 20px rgba(0,0,0,0.4), 0 0 30px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

/* Header */
header {
    text-align: center;
    padding: 60px 20px;
    margin-left: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

h1 {
    font-weight: 400;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

/* Main Content */
main {
    max-width: 700px;
    margin: 0 auto;
    margin-left: 140px;
    padding: 0 20px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
}

h2 {
    font-weight: 400;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
    margin-top: 40px;
}

p {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #555;
}

/* Lists */
ul, ol {
    margin: 20px 0;
    padding-left: 30px;
}

li {
    margin-bottom: 8px;
    color: #555;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    margin: 30px 0;
}

/* Links */
a {
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    cursor: none !important;
}

a:hover {
    border-bottom: 1px solid transparent;
    cursor: none !important;
}

/* Navigation links - no underline on hover */
.web-ring a {
    border-bottom: none !important;
}

.web-ring a:hover {
    border-bottom: none !important;
}

/* Sections and Articles */
section, article {
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: left;
}

/* Blockquotes */
blockquote {
    padding: 20px 0;
    margin: 30px 0;
    font-style: italic;
    color: #666;
}

/* Figures */
figure {
    margin: 30px 0;
    text-align: center;
}

figcaption {
    font-size: 0.9rem;
    color: #888;
    margin-top: 10px;
}

/* Asides */
aside {
    padding: 20px 0;
    margin: 30px 0;
}

aside h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Details/Summary */
details {
    margin: 30px 0;
}

summary {
    padding: 15px 0;
    cursor: pointer;
    font-weight: 400;
    color: #333;
}

details p {
    padding: 15px 0;
    margin: 0;
    color: #555;
}

/* Mark */
mark {
    background-color: transparent;
    color: #333;
    font-weight: 400;
}

/* Footer */
footer {
    text-align: center;
    padding: 60px 20px;
    margin-top: 60px;
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .web-ring {
        width: 80px;
        padding: 20px 0;
        gap: 20px;
    }
    
    .web-ring a {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    header {
        margin-left: 100px;
        padding: 40px 15px;
        min-height: 100vh;
    }
    
    main {
        margin-left: 100px;
        padding: 0 15px 40px;
        min-height: calc(100vh - 200px);
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    footer {
        padding: 40px 15px;
        margin-left: 100px;
    }
}
