:root {
    --bg-color: #1a1a1a;
    --bg-color-light: #f5f5f5;
    --text-color: #ffffff;
    --text-color-dark: #333333;
    --text-color-light: #999999;
    --secondary-text: #999999;
    --secondary-text-dark: #666666;
    --accent-color: #ff4d00;
    --border-color: #333333;
    --side-padding: 80px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    color: var(--text-color);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
}

.page-wrapper {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-color);
    z-index: 1000;
    padding: 20px 0;
    height: 80px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--side-padding);
}

/* Logo */
.site-logo {
    width: 80px;
    height: auto;
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 5px;
    position: relative;
}

.nav-links a.active {
    color: var(--text-color);
    border-bottom: 2px solid var(--accent-color);
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 80px;
    padding: 40px 0 80px 0;
}

.hero .left-aligned-content {
    padding: 0 var(--side-padding);
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    padding-top: 40px;
}

.author-name {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-color);
}

.title-container {
    max-width: fit-content;
}

.accent-line {
    width: 100%;
    height: 3px;
    background-color: var(--accent-color);
    margin: 30px 0;
}

.title-stack {
    font-size: 84px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-color);
    width: 100%;
}

.title-stack span {
    display: block;
}

.hero-intro {
    font-size: 20px;
    line-height: 1.6;
    /* color: var(--secondary-text); */
    max-width: 600px;
    margin-top: 0;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 65%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    z-index: 1;
    opacity: 1;
}

.hero::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        var(--bg-color) 15%, 
        rgba(26, 26, 26, 0.75) 35%, 
        rgba(26, 26, 26, 0.6) 45%, 
        rgba(26, 26, 26, 0) 100%
    );
    z-index: 1;
}

/* Section Styles */
section {
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
}

section .left-aligned-content {
    padding: 0 var(--side-padding);
}

section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 700;
}

.section-content {
    color: var(--secondary-text);
    font-size: 17px;
}

/* Experience Section */
#experience {
    background-color: var(--bg-color);
    padding: 100px 0;
}

.experience-container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    margin-top: 40px;
}

.experience-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.experience-item {
    display: flex;
    flex-direction: column;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.experience-item:last-child {
    border-bottom: none;
}

.experience-content h3 {
    color: var(--text-color-light);
    font-size: 24px;
    margin-bottom: 8px;
}

.company-info {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-color-muted);
    font-size: 16px;
}

.company {
    font-weight: 600;
    color: var(--accent-color);
}

.experience-content p {
    /* color: var(--text-color-light); */
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    opacity: 0.9;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.skill-tag {
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 400;
    margin: 0 4px;
}

.experience-image-container {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.experience-profile-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.1);
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .experience-container {
        grid-template-columns: 1fr;
    }

    .experience-image-container {
        order: -1;
        position: static;
        max-width: 200px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .experience-item {
        padding: 20px 0;
    }

    .company-info {
        flex-direction: column;
        gap: 4px;
    }
}

/* About Section */
#about {
    padding: 0;
    background-color: var(--bg-color-light);
    position: relative;
}

#about .section-header h2 {
    color: var(--text-color-dark);
    font-size: 32px;
    margin-bottom: 8px;
}

#about .accent-line {
    width: 200px;
    height: 3px;
    background-color: var(--accent-color);
    margin-bottom: 5px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    position: relative;
    margin-left: calc(var(--side-padding) * -1);
    width: calc(100% + var(--side-padding));
}

.about-image {
    position: relative;
    height: 100%;
    min-height: 600px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.about-right-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px var(--side-padding) 100px 60px;
}

.section-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 15px;
}

.accent-line {
    width: 50%;
    height: 3px;
    background-color: var(--accent-color);
    margin-bottom: 5px;
}

.about-text {
    color: var(--text-color-dark);
    font-size: 18px;
    line-height: 1.7;
    width: 100%;
}

.about-text p {
    margin-bottom: 20px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --side-padding: 20px;
    }
    
    .site-logo {
        width: 60px;
    }
    
    .nav-links {
        display: none;
    }
    
    .title-stack {
        font-size: 48px;
    }
    
    .hero::after {
        background: linear-gradient(180deg, var(--bg-color) 40%, transparent 100%);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        margin-left: calc(var(--side-padding) * -1);
        width: calc(100% + var(--side-padding) * 2);
    }

    .about-image {
        min-height: 400px;
    }

    .about-right-column {
        padding: 60px var(--side-padding);
    }

    .section-header {
        align-items: flex-start;
    }

    .experience-item {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 0;
    }

    .company-logo {
        max-width: 80px;
        margin: 0;
    }

    .company-info {
        flex-direction: column;
        gap: 4px;
    }
}

/* Contact Section */
#contact {
    background-color: #333333;
    padding: 40px 0;
}

#contact .left-aligned-content {
    padding: 0;
    text-align: center;
}

#contact h2 {
    color: var(--text-color);
    margin-bottom: 20px;
}

#contact p {
    color: var(--secondary-text);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.linkedin-link {
    display: inline-block;
    transition: opacity 0.2s ease;
}

.linkedin-link:hover {
    opacity: 0.8;
}

.linkedin-logo {
    height: 40px;
    width: auto;
}

/* Footer */
footer {
    padding: 40px 0;
    color: var(--secondary-text);
    font-size: 15px;
    border-top: 1px solid var(--border-color);
}

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

.hero, section {
    animation: fadeIn 0.8s ease-out forwards;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.project-card {
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    border-radius: 12px;
    box-shadow: 
        -5px -5px 10px rgba(255, 255, 255, 0.1),
        5px 5px 15px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.8);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    padding: 2px;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.9),
        rgba(255, 255, 255, 0.7) 30%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.7) 70%,
        rgba(255, 255, 255, 0.9)
    );
    border-radius: 12px;
    z-index: 1;
    pointer-events: none;
}

.project-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #ff8533);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.project-card-content {
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    border-radius: 10px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        -8px -8px 15px rgba(255, 255, 255, 0.1),
        8px 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.9);
}

.project-card:hover::after {
    opacity: 1;
}

.project-card img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.project-card h2 {
    margin: 20px 24px;
    font-size: 1.5em;
    color: var(--text-color-dark);
    font-weight: 600;
}

.project-card h2 a {
    color: var(--text-color-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-card h2 a:hover {
    color: var(--accent-color);
}

.project-card p {
    margin: 0 24px 24px;
    color: var(--text-color-dark);
    line-height: 1.6;
}

/* Projects Section */
.projects {
    padding: 40px 0;
    margin-top: 80px;
}

.projects .left-aligned-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--side-padding);
}

.projects .section-header {
    max-width: 60%;
}

.projects .section-header h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-color);
    font-weight: 700;
}

.projects .section-header p {
    font-size: 17px;
    color: var(--secondary-text);
    line-height: 1.6;
    margin-bottom: 30px;
}

.projects .accent-line {
    width: 100%;
    height: 3px;
    background-color: var(--accent-color);
    margin: 0;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

/* Project Card Styles */
.project-card {
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    border-radius: 12px;
    box-shadow: 
        -5px -5px 10px rgba(255, 255, 255, 0.1),
        5px 5px 15px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.8);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    padding: 2px;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.9),
        rgba(255, 255, 255, 0.7) 30%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.7) 70%,
        rgba(255, 255, 255, 0.9)
    );
    border-radius: 12px;
    z-index: 1;
    pointer-events: none;
}

.project-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #ff8533);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.project-card-content {
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    border-radius: 10px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        -8px -8px 15px rgba(255, 255, 255, 0.1),
        8px 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.9);
}

.project-card:hover::after {
    opacity: 1;
}

.project-card img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.project-card h2 {
    margin: 20px 24px;
    font-size: 1.5em;
    color: var(--text-color-dark);
    font-weight: 600;
}

.project-card h2 a {
    color: var(--text-color-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-card h2 a:hover {
    color: var(--accent-color);
}

.project-card p {
    margin: 0 24px 24px;
    color: var(--text-color-dark);
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .projects .section-header {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .projects .section-header {
        max-width: 100%;
    }

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

html {
    scroll-behavior: smooth;
}

/* AI Tools Page Styles */
.ai-tools {
    padding: 40px 0;
    margin-top: 80px;
}

.ai-tools .left-aligned-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--side-padding);
}

.ai-tools .section-header {
    max-width: 70%;
}

.ai-tools .section-header h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-color);
    font-weight: 700;
}

.ai-tools .section-header p {
    font-size: 17px;
    color: var(--secondary-text);
    line-height: 1.6;
    margin-bottom: 30px;
}

.ai-tools .accent-line {
    width: 100%;
    height: 3px;
    background-color: var(--accent-color);
    margin: 0;
}

/* Tools Controls */
.tools-controls {
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.search-container {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.search-input {
    width: 100%;
    padding: 12px 16px 12px 45px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-color);
    color: var(--text-color);
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.search-input::placeholder {
    color: var(--secondary-text);
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-text);
    pointer-events: none;
}

.filter-container {
    min-width: 200px;
}

.category-filter {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-color);
    color: var(--text-color);
    font-size: 16px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.category-filter:focus {
    outline: none;
    border-color: var(--accent-color);
}

.add-tool-btn {
    padding: 12px 24px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.add-tool-btn:hover {
    background: #e04400;
    transform: translateY(-2px);
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tool-card {
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    border-radius: 12px;
    box-shadow: 
        -5px -5px 10px rgba(255, 255, 255, 0.1),
        5px 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        -8px -8px 15px rgba(255, 255, 255, 0.1),
        8px 8px 25px rgba(0, 0, 0, 0.3);
}

.tool-card-content {
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tool-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 16px;
}

.tool-header h3 {
    font-size: 1.4em;
    color: var(--text-color-dark);
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.tool-category {
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.tool-description {
    color: var(--text-color-dark);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.tool-actions {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tool-link {
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    width: 100%;
}

.tool-link:hover {
    background: #e04400;
    transform: translateY(-1px);
}



/* No Results */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--secondary-text);
}

.no-results i {
    font-size: 3em;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-results h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--text-color);
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: var(--bg-color);
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid var(--border-color);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 0;
    margin-bottom: 20px;
}

.modal-header h3 {
    color: var(--text-color);
    font-size: 1.5em;
    font-weight: 600;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5em;
    color: var(--secondary-text);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: var(--border-color);
    color: var(--text-color);
}

.add-tool-form {
    padding: 0 24px 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-color);
    color: var(--text-color);
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Category Selection Styles */
.category-selection {
    margin-bottom: 16px;
}

.radio-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.radio-group input[type="radio"] {
    width: auto;
    margin: 0;
}

.radio-group label {
    margin: 0;
    font-weight: 500;
    cursor: pointer;
}

.category-select {
    margin-top: 8px;
}

.new-category-inputs {
    margin-top: 12px;
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
}

.new-category-inputs input[type="text"] {
    margin-bottom: 16px;
}

.color-picker-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.color-picker-group label {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.color-picker-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.color-picker-container input[type="color"] {
    width: 60px;
    height: 40px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    background: none;
    padding: 0;
}

.color-picker-container input[type="color"]::-webkit-color-swatch {
    border-radius: 6px;
    border: none;
}

.color-picker-container input[type="color"]::-moz-color-swatch {
    border-radius: 6px;
    border: none;
}

.color-preview {
    width: 80px;
    height: 32px;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: 500;
    position: relative;
}

.color-preview::after {
    content: "Preview";
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 30px;
}

.cancel-btn,
.submit-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cancel-btn {
    background: var(--border-color);
    color: var(--text-color);
}

.cancel-btn:hover {
    background: var(--secondary-text);
}

.submit-btn {
    background: var(--accent-color);
    color: white;
}

.submit-btn:hover {
    background: #e04400;
}

/* Notifications */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--bg-color);
    color: var(--text-color);
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 3000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    border-left: 4px solid var(--accent-color);
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-left-color: #28a745;
}

.notification-error {
    border-left-color: #dc3545;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-content i {
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ai-tools .section-header {
        max-width: 90%;
    }

    .tools-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .ai-tools .section-header {
        max-width: 100%;
    }

    .tools-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .search-container,
    .filter-container {
        min-width: unset;
    }

    .tools-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tool-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .tool-actions {
        width: 100%;
    }

    .modal-content {
        margin: 10px;
        max-height: calc(100vh - 20px);
    }

    .form-actions {
        flex-direction: column;
    }

    .notification {
        right: 10px;
        left: 10px;
        transform: translateY(-100px);
    }

    .notification.show {
        transform: translateY(0);
    }
}