/* Skills Page Styles */
#skills {
    background: 
        linear-gradient(45deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
    position: relative;
    overflow: hidden;
}

.code-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(0, 255, 0, 0.1);
    white-space: pre;
    animation: scrollCode 20s linear infinite;
}

@keyframes scrollCode {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
}

.code-background::before {
    content: "public class Skills {\n    private String[] uiSkills = {\n        'Figma', 'Adobe XD', 'User Research',\n        'Wireframing', 'Prototyping', 'UI Design'\n    };\n\n    private String[] videoSkills = {\n        'Premiere Pro', 'After Effects', 'DaVinci Resolve',\n        'Motion Graphics', 'Color Grading', 'Video Effects'\n    };\n\n    private String[] programmingSkills = {\n        'Python', 'Java', 'C++', 'JavaScript'\n    };\n\n    private String[] webSkills = {\n        'HTML', 'CSS', 'React', 'Node.js'\n    };\n\n    private String[] tools = {\n        'Git', 'Docker', 'SQL', 'Linux'\n    };\n\n    public void displaySkills() {\n        System.out.println('UI/UX Design Skills:');\n        for (String skill : uiSkills) {\n            System.out.println('    - ' + skill);\n        }\n\n        System.out.println('\\nVideo Editing Skills:');\n        for (String skill : videoSkills) {\n            System.out.println('    - ' + skill);\n        }\n\n        System.out.println('\\nProgramming Skills:');\n        for (String skill : programmingSkills) {\n            System.out.println('    - ' + skill);\n        }\n\n        System.out.println('\\nWeb Development Skills:');\n        for (String skill : webSkills) {\n            System.out.println('    - ' + skill);\n        }\n\n        System.out.println('\\nTools & Technologies:');\n        for (String skill : tools) {\n            System.out.println('    - ' + skill);\n        }\n    }\n}";
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
}

#skills::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, 
        transparent 0%, 
        rgba(0, 255, 0, 0.03) 50%, 
        transparent 100%),
        repeating-linear-gradient(
            0deg,
            rgba(0, 255, 0, 0.1) 0px,
            rgba(0, 255, 0, 0.1) 1px,
            transparent 1px,
            transparent 2px
        );
    animation: scan 2s linear infinite;
    opacity: 0.3;
    z-index: 1;
}

#skills::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at center,
            transparent 0%,
            rgba(0, 0, 0, 0.8) 100%),
        linear-gradient(45deg,
            rgba(0, 255, 0, 0.1) 0%,
            rgba(0, 0, 255, 0.1) 50%,
            rgba(0, 255, 0, 0.1) 100%);
    background-blend-mode: overlay;
    animation: pulse 4s ease-in-out infinite;
    opacity: 0.5;
    z-index: 1;
}

@keyframes scan {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 100%;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.02);
    }
}

.skill-category {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 0, 0.2);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.1);
}

.skill-category:hover {
    border-color: rgba(0, 255, 0, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
} 