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

:root {
    --bg: #0a0a0a;
    --panel: #141414;
    --border: #252525;
    --text: #ffffff;
    --muted: #a7a7a7;
    --accent: #ff7a18;
    --accent-2: #ff3d00;
    --grad: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px 100px 20px;
}

h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 40px;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    width: 100%;
}

.tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
    background: var(--panel);
    padding: 8px;
    border-radius: 16px;
    border: 1px solid var(--border);
    position: sticky;
    top: 20px;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.tab {
    padding: 12px 24px;
    cursor: pointer;
    border: none;
    border-radius: 12px;
    background: transparent;
    color: var(--muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tab:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.tab.active {
    background: var(--grad);
    color: white;
    box-shadow: 0 8px 32px rgba(255, 122, 24, 0.25);
    transform: translateY(-2px);
}

.content {
    background: transparent;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #e6e6e6;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}


/* Links Section Styles */
.links-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.links-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 120px;
    backdrop-filter: blur(8px);
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--grad);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.link-card:hover::before {
    opacity: 0.1;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(255, 122, 24, 0.15), 0 2px 8px rgba(255, 122, 24, 0.1);
    border-color: var(--accent);
}

.link-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    z-index: 1;
    position: relative;
    transition: all 0.3s ease;
}

.link-card:hover i {
    transform: scale(1.1);
}

.link-card span {
    font-size: 1.1rem;
    font-weight: 600;
    z-index: 1;
    position: relative;
}

.link-card:nth-child(1) i { color: #0077b5; } /* LinkedIn */
.link-card:nth-child(2) i { color: #ff0000; } /* YouTube */
.link-card:nth-child(3) i { color: #333; } /* GitHub */
.link-card:nth-child(4) i { color: #8b89cc; } /* Email */

/* Responsive styles */
@media (max-width: 768px) {
    body {
        padding: 40px 15px 80px 15px;
    }
    
    .tabs {
        top: 15px;
    }
    
    h1 {
        font-size: 2.5rem;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .tabs {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }
    
    .tab {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .content {
        padding: 30px 20px;
        font-size: 1.1rem;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .link-card {
        padding: 25px 15px;
        min-height: 100px;
    }
    
    .link-card i {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .link-card span {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    body {
        padding: 30px 10px 70px 10px;
    }
    
    .tabs {
        top: 10px;
        padding: 6px;
        gap: 4px;
    }
    
    .tab {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .content {
        padding: 25px 15px;
        font-size: 1rem;
    }
}

