:root{
    --bg:#0c0c0c;
    --panel:#171717;
    --panel-hover:#202020;

    --border:#2f2f2f;

    --text:#dddddd;
    --muted:#8f8f8f;

    --accent:#ff8c00;
}

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

body{
    background:var(--bg);
    color:var(--text);

    font-family:Georgia, serif;

    line-height:1.7;
}

.container{
    width:min(1000px,95%);
    margin:auto;
}

header{
    text-align:center;
    padding:60px 0;
}

.logo{
    width:180px;
    height:180px;

    object-fit:cover;

    border-radius:50%;

    border:3px solid var(--accent);
}

h1{
    font-size:4rem;

    margin-top:20px;
}

.tagline{
    color:var(--accent);

    margin-top:10px;

    font-weight:bold;

    letter-spacing:1px;
}

nav{
    margin-top:30px;
}

nav a{
    color:var(--text);

    text-decoration:none;

    margin:0 15px;
}

nav a:hover{
    color:var(--accent);
}

.card{
    background:var(--panel);

    border-left:4px solid var(--accent);

    padding:30px;

    margin-bottom:30px;

    border-radius:6px;
}

h2{
    color:var(--accent);

    margin-bottom:20px;
}

p{
    margin-bottom:15px;
}

blockquote{
    border-left:4px solid var(--accent);

    padding-left:15px;

    color:var(--muted);

    font-style:italic;

    margin-top:20px;
}

ul{
    margin-left:25px;
}

.grid{
    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(280px,1fr));

    gap:20px;

    margin-bottom:30px;
}

.project,
.link-box{
    background:var(--panel);

    border:1px solid var(--border);

    padding:20px;

    transition:.2s;
}

.project:hover,
.link-box:hover{
    background:var(--panel-hover);

    transform:translateY(-3px);

    border-color:var(--accent);
}

.link-box{
    text-decoration:none;
    color:inherit;
}

footer{
    text-align:center;

    padding:50px 0;

    color:var(--muted);
}

.footer-line{
    margin-top:10px;

    color:#666;
}

@media(max-width:700px){

    h1{
        font-size:2.5rem;
    }

    nav a{
        display:block;
        margin:10px 0;
    }

    .logo{
        width:140px;
        height:140px;
    }
}* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', Times, serif;
    background: linear-gradient(135deg, #050510 0%, #1a1a3a 50%, #050510 100%);
    background-attachment: fixed;
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 30%, rgba(0, 212, 255, 0.2) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 70%, rgba(0, 150, 200, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    padding: 40px 0;
    border-bottom: 2px solid #333;
    margin-bottom: 40px;
}

.logo img {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 50%;
    border: 3px solid #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.site-title {
    color: #00d4ff;
    font-size: 36px;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.tagline {
    color: #888;
    font-size: 16px;
    margin-bottom: 20px;
    font-style: italic;
}

nav {
    margin-top: 20px;
}

nav a {
    color: #00d4ff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
    transition: color 0.3s;
}

nav a:hover {
    color: #00a8cc;
    text-decoration: underline;
}

.section {
    margin-bottom: 50px;
    padding: 30px;
    background: #252525;
    border: 1px solid #333;
    border-radius: 4px;
}

h2 {
    color: #00d4ff;
    font-size: 24px;
    margin-bottom: 20px;
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
}

p {
    margin-bottom: 15px;
    font-size: 16px;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.link-card {
    display: block;
    padding: 25px;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
}

.link-card:hover {
    background: #333;
    border-color: #00d4ff;
    transform: translateY(-2px);
}

.link-card h3 {
    color: #00d4ff;
    font-size: 20px;
    margin-bottom: 10px;
}

.link-card p {
    color: #b0b0b0;
    font-size: 14px;
    margin: 0;
}

.project-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.project-item {
    padding: 20px;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 4px;
    transition: all 0.3s;
}

.project-item:hover {
    background: #333;
    border-color: #00d4ff;
}

.project-item h3 {
    color: #00d4ff;
    font-size: 18px;
    margin-bottom: 10px;
}

.project-item p {
    color: #b0b0b0;
    font-size: 14px;
    margin: 0;
}

.contact-info {
    margin-top: 20px;
    padding: 20px;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 4px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info strong {
    color: #00d4ff;
}

.footer-note {
    margin-top: 10px;
    color: #666;
    font-size: 12px;
}

footer {
    text-align: center;
    padding: 30px 0;
    border-top: 2px solid #333;
    margin-top: 40px;
    color: #888;
    font-size: 14px;
}

@media (max-width: 600px) {
    .container {
        padding: 15px;
    }

    header {
        padding: 30px 0;
    }

    .logo img {
        max-width: 150px;
    }

    nav a {
        display: block;
        margin: 10px 0;
    }

    .section {
        padding: 20px;
    }

    .links-grid {
        grid-template-columns: 1fr;
    }
}
