<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>dicio</title>
    <link>https://dicio.tistory.com/</link>
    <description>전력반도체 1위 기업 디시오에서 반도체를 쉽게 설명하기 위해 운영하는 블로그입니다.</description>
    <language>ko</language>
    <pubDate>Fri, 12 Jun 2026 06:43:06 +0900</pubDate>
    <generator>TISTORY</generator>
    <ttl>100</ttl>
    <managingEditor>디시오</managingEditor>
    <image>
      <title>dicio</title>
      <url>https://tistory1.daumcdn.net/tistory/8294240/attach/c0f775161657476fa2d291ed4808818c</url>
      <link>https://dicio.tistory.com</link>
    </image>
    <item>
      <title>  AI 반도체와 함께 여는 미래 - AI반도체 16편</title>
      <link>https://dicio.tistory.com/36</link>
      <description>&lt;p data-ke-size=&quot;size16&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;div&gt;
&lt;style&gt;
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Noto Sans KR', sans-serif;
            line-height: 1.8;
            color: #333;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            background-size: 400% 400%;
            animation: backgroundShift 10s ease infinite;
            min-height: 100vh;
        }

        @keyframes backgroundShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            border-radius: 25px;
            overflow: hidden;
            margin-top: 20px;
            margin-bottom: 20px;
        }

        .header {
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
            background-size: 500% 500%;
            color: white;
            padding: 80px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
            animation: headerGradient 8s ease infinite;
        }

        @keyframes headerGradient {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,&lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 100 100&quot;&gt;&lt;circle cx=&quot;20&quot; cy=&quot;20&quot; r=&quot;2&quot; fill=&quot;rgba(255,255,255,0.3)&quot; opacity=&quot;0.6&quot;&gt;&lt;animate attributeName=&quot;r&quot; values=&quot;1;3;1&quot; dur=&quot;4s&quot; repeatCount=&quot;indefinite&quot;/&gt;&lt;/circle&gt;&lt;circle cx=&quot;60&quot; cy=&quot;40&quot; r=&quot;1.5&quot; fill=&quot;rgba(255,255,255,0.4)&quot; opacity=&quot;0.7&quot;&gt;&lt;animate attributeName=&quot;r&quot; values=&quot;0.5;2.5;0.5&quot; dur=&quot;3s&quot; repeatCount=&quot;indefinite&quot;/&gt;&lt;/circle&gt;&lt;circle cx=&quot;80&quot; cy=&quot;70&quot; r=&quot;2.5&quot; fill=&quot;rgba(255,255,255,0.2)&quot; opacity=&quot;0.5&quot;&gt;&lt;animate attributeName=&quot;r&quot; values=&quot;1.5;4;1.5&quot; dur=&quot;5s&quot; repeatCount=&quot;indefinite&quot;/&gt;&lt;/circle&gt;&lt;/svg&gt;') repeat;
            animation: starField 20s linear infinite;
        }

        @keyframes starField {
            0% { transform: translate(0, 0); }
            100% { transform: translate(-200px, -200px); }
        }

        .header h1 {
            font-size: 3.2em;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
            animation: titlePulse 3s ease-in-out infinite;
        }

        @keyframes titlePulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.02); }
        }

        .header .subtitle {
            font-size: 1.4em;
            opacity: 0.95;
            position: relative;
            z-index: 1;
        }

        .finale-badge {
            background: rgba(255,255,255,0.2);
            padding: 10px 20px;
            border-radius: 25px;
            display: inline-block;
            margin-bottom: 20px;
            font-weight: bold;
            font-size: 1.1em;
        }

        .content {
            padding: 50px;
        }

        .section {
            margin-bottom: 60px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section h2 {
            color: #667eea;
            font-size: 2.2em;
            margin-bottom: 30px;
            position: relative;
            padding-left: 50px;
        }

        .section h2::before {
            content: ' ';
            position: absolute;
            left: 0;
            font-size: 1.3em;
        }

        .journey-recap {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 50px;
            border-radius: 25px;
            margin: 50px 0;
            position: relative;
            overflow: hidden;
        }

        .journey-recap::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: journeyPulse 6s ease-in-out infinite;
        }

        @keyframes journeyPulse {
            0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.3; }
            50% { transform: scale(1.2) rotate(180deg); opacity: 0.7; }
        }

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

        .episode-card {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .episode-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
            transition: left 0.5s;
        }

        .episode-card:hover {
            transform: translateY(-8px) scale(1.03);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .episode-card:hover::before {
            left: 100%;
        }

        .episode-number {
            background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .future-scenarios {
            background: #f8f9fa;
            padding: 40px;
            border-radius: 20px;
            margin: 40px 0;
        }

        .scenario-selector {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .scenario-btn {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border: none;
            padding: 15px 25px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 1em;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .scenario-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.2);
        }

        .scenario-btn.active {
            background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
            transform: scale(1.05);
        }

        .scenario-content {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            min-height: 200px;
            position: relative;
        }

        .day-timeline {
            background: linear-gradient(135deg, #4ecdc4, #44a08d);
            color: white;
            padding: 40px;
            border-radius: 20px;
            margin: 40px 0;
            position: relative;
        }

        .timeline-controls {
            text-align: center;
            margin-bottom: 30px;
        }

        .time-slider {
            width: 80%;
            margin: 20px 0;
            height: 8px;
            border-radius: 5px;
            background: rgba(255,255,255,0.3);
            outline: none;
            -webkit-appearance: none;
        }

        .time-slider::-webkit-slider-thumb {
            appearance: none;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #ff6b6b;
            cursor: pointer;
            box-shadow: 0 2px 6px rgba(0,0,0,0.3);
        }

        .current-time {
            font-size: 1.8em;
            font-weight: bold;
            margin: 15px 0;
        }

        .timeline-scenario {
            background: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 10px;
            margin-top: 20px;
            backdrop-filter: blur(10px);
        }

        .impact-meter {
            background: white;
            padding: 40px;
            border-radius: 20px;
            margin: 40px 0;
            text-align: center;
        }

        .meter-container {
            display: flex;
            justify-content: space-around;
            align-items: flex-end;
            height: 200px;
            margin: 30px 0;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 15px;
        }

        .meter-bar {
            width: 60px;
            background: linear-gradient(to top, #667eea, #764ba2);
            border-radius: 5px 5px 0 0;
            transition: all 0.8s ease;
            cursor: pointer;
            position: relative;
            display: flex;
            align-items: flex-end;
            justify-content: center;
        }

        .meter-bar:hover {
            background: linear-gradient(to top, #ff6b6b, #4ecdc4);
            transform: scale(1.05);
        }

        .meter-label {
            position: absolute;
            bottom: -35px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.9em;
            font-weight: bold;
            color: #333;
            white-space: nowrap;
        }

        .meter-value {
            position: absolute;
            top: -25px;
            background: #333;
            color: white;
            padding: 5px 8px;
            border-radius: 5px;
            font-size: 0.8em;
            font-weight: bold;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .meter-bar:hover .meter-value {
            opacity: 1;
        }

        .inspiration-section {
            background: linear-gradient(135deg, #ff6b6b, #ee5a52);
            color: white;
            padding: 50px;
            border-radius: 25px;
            margin: 50px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .inspiration-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,&lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 100 100&quot;&gt;&lt;path d=&quot;M20,50 Q30,30 40,50 T60,50 T80,50&quot; stroke=&quot;rgba(255,255,255,0.1)&quot; stroke-width=&quot;2&quot; fill=&quot;none&quot;&gt;&lt;animate attributeName=&quot;d&quot; values=&quot;M20,50 Q30,30 40,50 T60,50 T80,50;M20,50 Q30,70 40,50 T60,50 T80,50;M20,50 Q30,30 40,50 T60,50 T80,50&quot; dur=&quot;4s&quot; repeatCount=&quot;indefinite&quot;/&gt;&lt;/path&gt;&lt;/svg&gt;') repeat;
            animation: inspirationWave 8s ease-in-out infinite;
        }

        @keyframes inspirationWave {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(-50px); }
        }

        .career-paths {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }

        .career-card {
            background: rgba(255,255,255,0.1);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            z-index: 1;
        }

        .career-card:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-5px);
        }

        .career-icon {
            font-size: 3em;
            margin-bottom: 15px;
            animation: careerFloat 3s ease-in-out infinite;
        }

        @keyframes careerFloat {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-10px) rotate(5deg); }
        }

        .interactive-quiz {
            background: linear-gradient(135deg, #4ecdc4, #44a08d);
            color: white;
            padding: 40px;
            border-radius: 20px;
            margin: 40px 0;
        }

        .quiz-question {
            font-size: 1.4em;
            margin-bottom: 25px;
            text-align: center;
        }

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

        .quiz-option {
            background: rgba(255,255,255,0.2);
            padding: 20px;
            border-radius: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .quiz-option:hover {
            background: rgba(255,255,255,0.3);
            transform: scale(1.05);
        }

        .quiz-option.selected {
            background: rgba(255,255,255,0.4);
            transform: scale(1.1);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .thank-you-section {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 60px 40px;
            border-radius: 25px;
            text-align: center;
            margin-top: 60px;
            position: relative;
            overflow: hidden;
        }

        .thank-you-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,&lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 100 100&quot;&gt;&lt;circle cx=&quot;20&quot; cy=&quot;20&quot; r=&quot;1&quot; fill=&quot;rgba(255,255,255,0.2)&quot;&gt;&lt;animate attributeName=&quot;r&quot; values=&quot;1;3;1&quot; dur=&quot;3s&quot; repeatCount=&quot;indefinite&quot;/&gt;&lt;/circle&gt;&lt;circle cx=&quot;60&quot; cy=&quot;40&quot; r=&quot;1.5&quot; fill=&quot;rgba(255,255,255,0.3)&quot;&gt;&lt;animate attributeName=&quot;r&quot; values=&quot;0.5;2.5;0.5&quot; dur=&quot;4s&quot; repeatCount=&quot;indefinite&quot;/&gt;&lt;/circle&gt;&lt;circle cx=&quot;80&quot; cy=&quot;70&quot; r=&quot;2&quot; fill=&quot;rgba(255,255,255,0.15)&quot;&gt;&lt;animate attributeName=&quot;r&quot; values=&quot;1;4;1&quot; dur=&quot;5s&quot; repeatCount=&quot;indefinite&quot;/&gt;&lt;/circle&gt;&lt;/svg&gt;') repeat;
            animation: thankYouStars 15s linear infinite;
        }

        @keyframes thankYouStars {
            0% { transform: translate(0, 0) rotate(0deg); }
            100% { transform: translate(-100px, -100px) rotate(360deg); }
        }

        .celebration-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1000;
        }

        .confetti {
            position: absolute;
            width: 10px;
            height: 10px;
            background: #ff6b6b;
            animation: confettiFall 3s linear infinite;
        }

        @keyframes confettiFall {
            0% {
                transform: translateY(-100vh) rotate(0deg);
                opacity: 1;
            }
            100% {
                transform: translateY(100vh) rotate(720deg);
                opacity: 0;
            }
        }

        @media (max-width: 768px) {
            .header {
                padding: 60px 20px;
            }
            
            .header h1 {
                font-size: 2.5em;
            }
            
            .content {
                padding: 30px 20px;
            }
            
            .episode-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            }
            
            .scenario-selector {
                flex-direction: column;
                align-items: center;
            }
            
            .meter-container {
                flex-direction: column;
                height: auto;
                gap: 20px;
            }
            
            .meter-bar {
                width: 100%;
                height: 30px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 0 15px;
            }
        }

        .highlight-number {
            color: #ff6b6b;
            font-weight: bold;
            font-size: 1.3em;
        }

        .fun-fact {
            background: #e8f4fd;
            border-left: 5px solid #667eea;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 15px 15px 0;
            position: relative;
        }

        .fun-fact::before {
            content: '✨';
            position: absolute;
            top: -10px;
            left: 20px;
            background: #e8f4fd;
            padding: 0 10px;
            font-size: 1.5em;
        }
    &lt;/style&gt;
&lt;/div&gt;
&lt;div class=&quot;container&quot;&gt;
&lt;div class=&quot;header&quot;&gt;
&lt;div class=&quot;finale-badge&quot;&gt;  GRAND FINALE&lt;/div&gt;
&lt;h1&gt;  AI 반도체와 함께 여는 미래&lt;/h1&gt;
&lt;p class=&quot;subtitle&quot; data-ke-size=&quot;size16&quot;&gt;16편 대장정의 감동적인 마무리 ✨&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;content&quot;&gt;
&lt;div class=&quot;section&quot;&gt;
&lt;h2 data-ke-size=&quot;size26&quot;&gt;  놀라운 여행이 끝나가고 있어요&lt;/h2&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;여러분, 정말 긴 여행이었죠!  ️ 16편에 걸쳐 함께한 &lt;b&gt;AI 반도체의 신비로운 세계&lt;/b&gt; 탐험이 드디어 막을 내리려고 해요. 처음 모래 한 줌에서 시작해서 미래의 양자컴퓨터까지, 우리가 함께 걸어온 길을 되돌아보니 정말 감동적이네요!  &lt;/p&gt;
&lt;div class=&quot;journey-recap&quot;&gt;
&lt;h3 style=&quot;font-size: 1.8em; margin-bottom: 20px; position: relative; z-index: 1;&quot; data-ke-size=&quot;size23&quot;&gt;  우리가 함께 달려온 16편의 대모험&lt;/h3&gt;
&lt;p style=&quot;font-size: 1.2em; position: relative; z-index: 1;&quot; data-ke-size=&quot;size16&quot;&gt;일상 속 AI 발견부터 미래 기술까지, 놀라운 발견들로 가득했던 여정을 기억하시나요?&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;episode-grid&quot;&gt;
&lt;div class=&quot;episode-card&quot;&gt;
&lt;div class=&quot;episode-number&quot;&gt;1&lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;아침부터 밤까지 AI와 함께&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;우리 일상 속 숨어있는 AI들&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;episode-card&quot;&gt;
&lt;div class=&quot;episode-number&quot;&gt;2&lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;반도체가 뭐길래?&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;모래에서 시작된 마법의 이야기&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;episode-card&quot;&gt;
&lt;div class=&quot;episode-number&quot;&gt;3&lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;AI란 무엇인가?&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;컴퓨터 두뇌 만들기 프로젝트&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;episode-card&quot;&gt;
&lt;div class=&quot;episode-number&quot;&gt;4&lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;기계가 배운다고?&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;AI의 신비한 학습 과정&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;episode-card&quot;&gt;
&lt;div class=&quot;episode-number&quot;&gt;5&lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;게임 그래픽카드의 변신&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;GPU가 AI의 친구가 된 이야기&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;episode-card&quot;&gt;
&lt;div class=&quot;episode-number&quot;&gt;6&lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;특별한 AI 칩들의 탄생&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;맞춤형 AI 가속기의 등장&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;episode-card&quot;&gt;
&lt;div class=&quot;episode-number&quot;&gt;7&lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;스마트폰 속 AI 비서&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;손바닥 안의 작은 천재&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;episode-card&quot;&gt;
&lt;div class=&quot;episode-number&quot;&gt;8&lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;데이터 센터의 비밀&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;인터넷을 떠받치는 거대한 두뇌&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;episode-card&quot;&gt;
&lt;div class=&quot;episode-number&quot;&gt;9&lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;전기 먹는 하마 이야기&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;데이터 센터와 전력의 관계&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;episode-card&quot;&gt;
&lt;div class=&quot;episode-number&quot;&gt;10&lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;AI 뒤의 숨은 영웅&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;전력반도체의 중요한 역할&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;episode-card&quot;&gt;
&lt;div class=&quot;episode-number&quot;&gt;11&lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;IGBT vs MOSFET&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;전력반도체 두 형제의 대결&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;episode-card&quot;&gt;
&lt;div class=&quot;episode-number&quot;&gt;12&lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;실리콘의 한계를 넘어서&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;실리콘카바이드의 혁신&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;episode-card&quot;&gt;
&lt;div class=&quot;episode-number&quot;&gt;13&lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;친환경 AI의 꿈&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;에너지 효율이 답이다&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;episode-card&quot;&gt;
&lt;div class=&quot;episode-number&quot;&gt;14&lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;모래가 컴퓨터가 되기까지&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;반도체 제조의 마법&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;episode-card&quot;&gt;
&lt;div class=&quot;episode-number&quot;&gt;15&lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;미래의 AI 반도체&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;더 작게, 더 똑똑하게&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;episode-card&quot;&gt;
&lt;div class=&quot;episode-number&quot;&gt;16&lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;대장정의 끝&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;AI와 함께 여는 미래&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&quot;episode-detail&quot; style=&quot;display: none; margin-top: 30px; padding: 30px; background: #f8f9fa; border-radius: 15px;&quot;&gt;
&lt;h3 id=&quot;episode-title&quot; data-ke-size=&quot;size23&quot;&gt;&amp;nbsp;&lt;/h3&gt;
&lt;p id=&quot;episode-description&quot; data-ke-size=&quot;size16&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;section&quot;&gt;
&lt;h2 data-ke-size=&quot;size26&quot;&gt;  2030년, 여러분의 하루는 어떨까요?&lt;/h2&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;AI 반도체 기술이 발전하면 우리 일상이 어떻게 바뀔지 직접 체험해보세요!&lt;/p&gt;
&lt;div class=&quot;day-timeline&quot;&gt;
&lt;div class=&quot;timeline-controls&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;⏰ 2030년의 하루 체험하기&lt;/h3&gt;
&lt;input id=&quot;daySlider&quot; class=&quot;time-slider&quot; max=&quot;22&quot; min=&quot;6&quot; type=&quot;range&quot; value=&quot;6&quot; /&gt;
&lt;div id=&quot;currentTime&quot; class=&quot;current-time&quot;&gt;오전 6시&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&quot;dayScenario&quot; class=&quot;timeline-scenario&quot;&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;  새로운 하루의 시작&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;뉴로모픽 칩이 내장된 AI가 여러분의 수면 패턴을 분석해서 가장 좋은 타이밍에 깨워줘요. 오늘의 컨디션과 날씨를 고려한 맞춤형 아침 루틴을 제안합니다!&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;fun-fact&quot;&gt;&lt;b&gt;놀라운 미래 예측&lt;/b&gt;&lt;br /&gt;2030년에는 AI 반도체 하나가 현재 슈퍼컴퓨터 100대보다 똑똑할 거예요! 그리고 전력 소모는 지금 스마트폰보다도 적을 수 있답니다. 마치 주머니 속에 아인슈타인을 데리고 다니는 것 같겠죠?  ✨&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;section&quot;&gt;
&lt;h2 data-ke-size=&quot;size26&quot;&gt;  AI가 우리 생활에 미치는 영향&lt;/h2&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;AI 반도체 기술 발전이 여러 분야에 어떤 변화를 가져올지 살펴보세요!&lt;/p&gt;
&lt;div class=&quot;impact-meter&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  미래 변화 지수 측정기&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;각 막대를 클릭해서 상세 정보를 확인해보세요!&lt;/p&gt;
&lt;div class=&quot;meter-container&quot;&gt;
&lt;div class=&quot;meter-bar&quot; style=&quot;height: 90%;&quot;&gt;
&lt;div class=&quot;meter-value&quot;&gt;95%&lt;/div&gt;
&lt;div class=&quot;meter-label&quot;&gt;교육&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;meter-bar&quot; style=&quot;height: 85%;&quot;&gt;
&lt;div class=&quot;meter-value&quot;&gt;90%&lt;/div&gt;
&lt;div class=&quot;meter-label&quot;&gt;의료&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;meter-bar&quot; style=&quot;height: 80%;&quot;&gt;
&lt;div class=&quot;meter-value&quot;&gt;85%&lt;/div&gt;
&lt;div class=&quot;meter-label&quot;&gt;교통&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;meter-bar&quot; style=&quot;height: 75%;&quot;&gt;
&lt;div class=&quot;meter-value&quot;&gt;80%&lt;/div&gt;
&lt;div class=&quot;meter-label&quot;&gt;엔터테인먼트&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;meter-bar&quot; style=&quot;height: 70%;&quot;&gt;
&lt;div class=&quot;meter-value&quot;&gt;75%&lt;/div&gt;
&lt;div class=&quot;meter-label&quot;&gt;직업&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&quot;impact-detail&quot; style=&quot;margin-top: 30px; padding: 20px; background: #f8f9fa; border-radius: 10px; display: none;&quot;&gt;
&lt;h4 id=&quot;impact-title&quot; data-ke-size=&quot;size20&quot;&gt;&amp;nbsp;&lt;/h4&gt;
&lt;p id=&quot;impact-description&quot; data-ke-size=&quot;size16&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;section&quot;&gt;
&lt;h2 data-ke-size=&quot;size26&quot;&gt;  여러분도 미래의 주인공이 될 수 있어요!&lt;/h2&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;AI 반도체 분야에서 활약할 수 있는 다양한 진로를 알아보세요!&lt;/p&gt;
&lt;div class=&quot;inspiration-section&quot;&gt;
&lt;h3 style=&quot;font-size: 2em; margin-bottom: 25px; position: relative; z-index: 1;&quot; data-ke-size=&quot;size23&quot;&gt;  꿈을 현실로 만드는 사람들&lt;/h3&gt;
&lt;p style=&quot;font-size: 1.3em; margin-bottom: 30px; position: relative; z-index: 1;&quot; data-ke-size=&quot;size16&quot;&gt;지금 이 글을 읽고 있는 여러분 중에도 미래의 AI 반도체 혁명을 이끌 주인공이 있을 거예요!&lt;/p&gt;
&lt;div class=&quot;career-paths&quot;&gt;
&lt;div class=&quot;career-card&quot;&gt;
&lt;div class=&quot;career-icon&quot;&gt; &lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;AI 칩 설계자&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;미래의 똑똑한 칩을 설계해요&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;career-card&quot;&gt;
&lt;div class=&quot;career-icon&quot;&gt; &lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;AI 연구원&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;새로운 AI 알고리즘을 개발해요&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;career-card&quot;&gt;
&lt;div class=&quot;career-icon&quot;&gt;⚙️&lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;반도체 엔지니어&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;칩을 실제로 만드는 일을 해요&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;career-card&quot;&gt;
&lt;div class=&quot;career-icon&quot;&gt; &lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;AI 기업가&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;혁신적인 AI 회사를 만들어요&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&quot;career-detail&quot; style=&quot;display: none; margin-top: 30px; padding: 25px; background: rgba(255,255,255,0.1); border-radius: 15px; position: relative; z-index: 1;&quot;&gt;
&lt;h4 id=&quot;career-title&quot; data-ke-size=&quot;size20&quot;&gt;&amp;nbsp;&lt;/h4&gt;
&lt;p id=&quot;career-description&quot; data-ke-size=&quot;size16&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;section&quot;&gt;
&lt;h2 data-ke-size=&quot;size26&quot;&gt;  미래 예측 퀴즈&lt;/h2&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;지금까지 배운 내용을 바탕으로 미래를 예측해보세요!&lt;/p&gt;
&lt;div class=&quot;interactive-quiz&quot;&gt;
&lt;div class=&quot;quiz-question&quot;&gt;  2040년에 가장 먼저 현실이 될 기술은?&lt;/div&gt;
&lt;div class=&quot;quiz-grid&quot;&gt;
&lt;div class=&quot;quiz-option&quot;&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt; &lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;뇌 업로드&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;quiz-option&quot;&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt; ️&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;실시간 전세계 언어 통역&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;quiz-option&quot;&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt; &lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;물질 텔레포트&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;quiz-option&quot;&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt; &lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;AI 개인 주치의&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&quot;quiz-result&quot; style=&quot;display: none; margin-top: 25px; padding: 20px; background: rgba(255,255,255,0.2); border-radius: 10px;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;section&quot;&gt;
&lt;h2 data-ke-size=&quot;size26&quot;&gt;  여러분에게 전하고 싶은 마지막 이야기&lt;/h2&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;16편의 긴 여행을 함께해주신 모든 분들께 진심으로 감사드려요!  &lt;/p&gt;
&lt;div class=&quot;fun-fact&quot;&gt;&lt;b&gt;놀라운 사실 하나 더!&lt;/b&gt;&lt;br /&gt;여러분이 이 글을 읽는 동안에도 전 세계에서는 수백만 개의 AI 칩이 여러분을 위해 일하고 있어요. 검색 결과를 찾아주고, 번역을 도와주고, 광고를 맞춤화해주고 있답니다. 정말 신기하지 않나요?  &lt;/div&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;과학기술은 &lt;b&gt;인간의 꿈과 상상력&lt;/b&gt;에서 시작됩니다. 불과 100년 전만 해도 스마트폰은 마법의 도구처럼 여겨졌을 거예요. 하지만 누군가의 꿈과 도전이 그것을 현실로 만들어냈죠.&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;여러분도 &lt;b&gt;호기심을 잃지 마세요&lt;/b&gt;!   &quot;왜 이렇게 될까?&quot;, &quot;더 좋은 방법은 없을까?&quot;, &quot;이걸 응용하면 어떻게 될까?&quot; 같은 질문들이 미래를 바꾸는 혁신의 씨앗이 됩니다.&lt;/p&gt;
&lt;div class=&quot;highlight-box&quot; style=&quot;background: linear-gradient(135deg, #4ecdc4, #44a08d); color: white; padding: 40px; border-radius: 20px; margin: 40px 0; text-align: center;&quot;&gt;
&lt;h3 style=&quot;font-size: 1.8em; margin-bottom: 20px;&quot; data-ke-size=&quot;size23&quot;&gt;  여러분을 위한 응원 메시지&lt;/h3&gt;
&lt;p style=&quot;font-size: 1.2em;&quot; data-ke-size=&quot;size16&quot;&gt;AI와 반도체는 어렵지만 알고 보면 정말 매력적인 분야예요. 여러분 중 누군가는 더 똑똑한 AI를 만들고, 누군가는 더 효율적인 칩을 설계하고, 누군가는 새로운 소재를 발견할지도 몰라요. &lt;b&gt;미래는 여러분 손에 달려 있어요!&lt;/b&gt;  &lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;thank-you-section&quot;&gt;
&lt;h3 style=&quot;font-size: 2.5em; margin-bottom: 25px; position: relative; z-index: 1;&quot; data-ke-size=&quot;size23&quot;&gt;  감사합니다!&lt;/h3&gt;
&lt;p style=&quot;font-size: 1.4em; margin-bottom: 30px; position: relative; z-index: 1;&quot; data-ke-size=&quot;size16&quot;&gt;16편의 긴 여행을 끝까지 함께해주셔서 정말 고마워요!&lt;/p&gt;
&lt;p style=&quot;font-size: 1.2em; position: relative; z-index: 1;&quot; data-ke-size=&quot;size16&quot;&gt;여러분의 미래가 AI와 함께 더욱 밝고 흥미진진하길 바라며...&lt;/p&gt;
&lt;p style=&quot;font-size: 1.5em; font-weight: bold; margin-top: 20px; position: relative; z-index: 1;&quot; data-ke-size=&quot;size16&quot;&gt;✨ 꿈을 향해 달려가세요! ✨&lt;/p&gt;
&lt;button style=&quot;background: rgba(255,255,255,0.2); color: white; border: none; padding: 15px 30px; border-radius: 25px; font-size: 1.1em; cursor: pointer; margin-top: 30px; position: relative; z-index: 1;&quot;&gt;   완주 축하하기 &lt;/button&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&quot;celebrationAnimation&quot; class=&quot;celebration-animation&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;script&gt;
        // 스크롤 애니메이션
        function revealOnScroll() {
            const sections = document.querySelectorAll('.section');
            const windowHeight = window.innerHeight;
            const elementVisible = 150;

            sections.forEach(section =&gt; {
                const elementTop = section.getBoundingClientRect().top;
                
                if (elementTop &lt; windowHeight - elementVisible) {
                    section.classList.add('visible');
                }
            });
        }

        window.addEventListener('scroll', revealOnScroll);
        window.addEventListener('load', revealOnScroll);

        // 에피소드 상세 정보
        function showEpisodeDetail(episode) {
            const episodeInfo = {
                1: { title: &quot;일상 속 AI 발견기&quot;, desc: &quot;스마트폰 얼굴인식부터 유튜브 추천까지, 우리 주변의 숨어있는 AI들을 찾아보는 여행의 시작이었어요!&quot; },
                2: { title: &quot;모래의 마법&quot;, desc: &quot;평범한 해변 모래가 어떻게 최첨단 컴퓨터 칩이 되는지 알아보는 놀라운 변신 이야기였죠!&quot; },
                3: { title: &quot;AI의 정체&quot;, desc: &quot;컴퓨터가 어떻게 사람처럼 생각하고 배우는지, 인공지능의 기본 원리를 탐구했어요!&quot; },
                4: { title: &quot;기계의 학습법&quot;, desc: &quot;AI가 고양이와 강아지를 구분하는 법을 배우는 신기한 과정을 들여다봤어요!&quot; },
                5: { title: &quot;게임칩의 대변신&quot;, desc: &quot;게임용 그래픽카드가 어떻게 AI의 든든한 파트너가 되었는지 알아봤죠!&quot; },
                6: { title: &quot;맞춤형 AI 칩&quot;, desc: &quot;TPU, NPU 등 AI만을 위한 특별한 칩들의 탄생 스토리를 다뤘어요!&quot; },
                7: { title: &quot;손 안의 천재&quot;, desc: &quot;스마트폰 속 작은 AI 칩이 어떻게 우리를 도와주는지 살펴봤어요!&quot; },
                8: { title: &quot;인터넷의 심장&quot;, desc: &quot;데이터센터라는 거대한 컴퓨터 도시의 비밀을 탐험했죠!&quot; },
                9: { title: &quot;전력의 고민&quot;, desc: &quot;AI가 많은 전기를 쓰는 문제와 해결책을 고민해봤어요!&quot; },
                10: { title: &quot;숨은 영웅&quot;, desc: &quot;전력반도체라는 보이지 않는 조력자의 중요성을 알아봤어요!&quot; },
                11: { title: &quot;두 형제의 대결&quot;, desc: &quot;IGBT와 MOSFET, 전력반도체 형제들의 특징과 역할을 비교했죠!&quot; },
                12: { title: &quot;소재의 혁신&quot;, desc: &quot;실리콘을 넘어선 새로운 소재 SiC의 놀라운 능력을 발견했어요!&quot; },
                13: { title: &quot;친환경의 꿈&quot;, desc: &quot;AI도 지구를 생각해야 한다는 중요한 메시지를 전했어요!&quot; },
                14: { title: &quot;제조의 마법&quot;, desc: &quot;반도체 공장에서 일어나는 마법 같은 제조 과정을 들여다봤죠!&quot; },
                15: { title: &quot;미래의 문&quot;, desc: &quot;뉴로모픽, 양자컴퓨터 등 꿈같은 미래 기술들을 미리 만나봤어요!&quot; },
                16: { title: &quot;여행의 끝&quot;, desc: &quot;16편의 대장정을 마무리하며 AI가 만들 밝은 미래를 상상해봤어요!&quot; }
            };

            const detail = document.getElementById('episode-detail');
            const title = document.getElementById('episode-title');
            const description = document.getElementById('episode-description');

            title.textContent = `${episode}편: ${episodeInfo[episode].title}`;
            description.textContent = episodeInfo[episode].desc;
            detail.style.display = 'block';
            detail.scrollIntoView({ behavior: 'smooth' });
        }

        // 하루 시나리오 업데이트
        function updateDayScenario(hour) {
            const timeDisplay = document.getElementById('currentTime');
            const scenario = document.getElementById('dayScenario');
            
            const timeTexts = {
                6: &quot;오전 6시&quot;, 7: &quot;오전 7시&quot;, 8: &quot;오전 8시&quot;, 9: &quot;오전 9시&quot;, 10: &quot;오전 10시&quot;,
                11: &quot;오전 11시&quot;, 12: &quot;오후 12시&quot;, 13: &quot;오후 1시&quot;, 14: &quot;오후 2시&quot;, 15: &quot;오후 3시&quot;,
                16: &quot;오후 4시&quot;, 17: &quot;오후 5시&quot;, 18: &quot;오후 6시&quot;, 19: &quot;오후 7시&quot;, 20: &quot;오후 8시&quot;,
                21: &quot;오후 9시&quot;, 22: &quot;오후 10시&quot;
            };

            const scenarios = {
                6: { title: &quot;  스마트한 기상&quot;, desc: &quot;뉴로모픽 칩이 수면 패턴을 분석해 최적의 타이밍에 깨워줘요. 오늘의 컨디션에 맞는 아침 루틴을 제안합니다!&quot; },
                7: { title: &quot;  AI 요리사&quot;, desc: &quot;냉장고의 AI가 남은 재료로 영양 균형 잡힌 아침 메뉴를 추천해줘요. 요리 로봇이 맛있게 준비해줍니다!&quot; },
                8: { title: &quot;  자율주행 등교&quot;, desc: &quot;완전 자율주행차가 교통상황을 실시간 분석해 가장 빠른 루트로 안전하게 학교까지 데려다줘요!&quot; },
                9: { title: &quot;  홀로그램 수업&quot;, desc: &quot;양자 통신으로 연결된 홀로그램 선생님과 실시간 상호작용하며 몰입도 높은 수업을 받아요!&quot; },
                12: { title: &quot;  맞춤 영양 점심&quot;, desc: &quot;AI 영양사가 개인의 유전자와 운동량을 분석해 딱 맞는 점심 메뉴를 실시간으로 조리해줘요!&quot; },
                15: { title: &quot;  뇌파 게임&quot;, desc: &quot;뇌-컴퓨터 인터페이스로 생각만으로 조종하는 게임을 즐겨요. 상상이 현실이 되는 놀라운 경험!&quot; },
                18: { title: &quot; ‍♀️ AI 개인 트레이너&quot;, desc: &quot;웨어러블 AI가 실시간으로 운동 자세를 분석하고 최적의 운동 프로그램을 제공해줘요!&quot; },
                21: { title: &quot;  수면 최적화&quot;, desc: &quot;AI가 하루의 활동을 분석해 최적의 수면 환경을 조성하고, 꿈까지 맞춤형으로 선사해줘요!&quot; }
            };

            timeDisplay.textContent = timeTexts[hour];
            if (scenarios[hour]) {
                scenario.innerHTML = `&lt;h4&gt;${scenarios[hour].title}&lt;/h4&gt;&lt;p&gt;${scenarios[hour].desc}&lt;/p&gt;`;
            } else {
                scenario.innerHTML = `&lt;h4&gt;✨ 평범한 일상도 AI와 함께라면&lt;/h4&gt;&lt;p&gt;모든 순간이 더 편리하고 스마트하게 바뀔 거예요!&lt;/p&gt;`;
            }
        }

        // 영향도 상세 정보
        function showImpactDetail(category) {
            const impactInfo = {
                education: {
                    title: &quot;  교육 혁명 (95% 변화 예상)&quot;,
                    desc: &quot;AI 개인 튜터가 각자의 학습 속도와 스타일에 맞춰 완전 맞춤형 교육을 제공해요. 홀로그램으로 역사 현장을 체험하고, 가상현실로 우주를 탐험할 수 있을 거예요!&quot;
                },
                healthcare: {
                    title: &quot;  의료 혁신 (90% 변화 예상)&quot;,
                    desc: &quot;AI 주치의 칩이 24시간 건강을 모니터링하고, 질병을 미리 예측해줘요. 나노로봇이 혈관 속에서 암세포를 찾아 치료하는 시대가 올 거예요!&quot;
                },
                transport: {
                    title: &quot;  교통 혁명 (85% 변화 예상)&quot;,
                    desc: &quot;완전 자율주행으로 교통사고가 99% 줄어들고, AI가 실시간 교통 최적화로 길막힘을 해결해줘요. 하늘을 나는 자동차도 현실이 될 거예요!&quot;
                },
                entertainment: {
                    title: &quot;  오락 진화 (80% 변화 예상)&quot;,
                    desc: &quot;뇌파로 조종하는 게임, 개인 맞춤형 영화 실시간 제작, 가상 아이돌과의 실시간 대화 등 상상을 초월하는 엔터테인먼트를 즐길 수 있어요!&quot;
                },
                work: {
                    title: &quot;  직업 변화 (75% 변화 예상)&quot;,
                    desc: &quot;단순 반복 업무는 AI가 대신하고, 인간은 더 창의적이고 의미 있는 일에 집중할 수 있어요. 새로운 직업들(AI 윤리학자, 로봇 심리학자 등)이 생겨날 거예요!&quot;
                }
            };

            const detail = document.getElementById('impact-detail');
            const title = document.getElementById('impact-title');
            const description = document.getElementById('impact-description');

            title.textContent = impactInfo[category].title;
            description.textContent = impactInfo[category].desc;
            detail.style.display = 'block';
        }

        // 진로 상세 정보
        function showCareerDetail(career) {
            const careerInfo = {
                designer: {
                    title: &quot;  AI 칩 설계자가 되는 법&quot;,
                    desc: &quot;전자공학이나 컴퓨터공학을 전공하고, 회로 설계와 AI 알고리즘을 모두 이해해야 해요. 미래의 스마트폰, 자동차, 로봇의 두뇌를 직접 설계하는 멋진 일이에요!&quot;
                },
                researcher: {
                    title: &quot;  AI 연구원이 되는 법&quot;,
                    desc: &quot;수학, 컴퓨터과학, 인지과학 등을 공부하고 새로운 AI 알고리즘을 개발해요. 인간의 뇌를 모방한 새로운 학습 방법을 발견하는 탐험가 같은 직업이에요!&quot;
                },
                engineer: {
                    title: &quot;⚙️ 반도체 엔지니어가 되는 법&quot;,
                    desc: &quot;화학, 물리학, 전자공학을 바탕으로 실제 칩을 만드는 공정을 개발해요. 원자 단위의 정밀한 작업으로 미래 기술의 기반을 만드는 중요한 역할이에요!&quot;
                },
                entrepreneur: {
                    title: &quot;  AI 기업가가 되는 법&quot;,
                    desc: &quot;기술 지식과 비즈니스 감각을 모두 갖춰 세상을 바꿀 AI 제품을 만들어요. 스티브 잡스나 일론 머스크처럼 혁신적인 아이디어로 새로운 미래를 창조해요!&quot;
                }
            };

            const detail = document.getElementById('career-detail');
            const title = document.getElementById('career-title');
            const description = document.getElementById('career-description');

            title.textContent = careerInfo[career].title;
            description.textContent = careerInfo[career].desc;
            detail.style.display = 'block';
        }

        // 퀴즈 선택
        function selectQuizOption(element, option) {
            const options = element.parentElement.querySelectorAll('.quiz-option');
            const result = document.getElementById('quiz-result');

            options.forEach(opt =&gt; {
                opt.classList.remove('selected');
                opt.style.pointerEvents = 'none';
            });

            element.classList.add('selected');

            const responses = {
                brain: &quot;  뇌 업로드는 아직 너무 먼 미래의 이야기예요. 과학적으로 많은 난제가 남아있어요!&quot;,
                translation: &quot;  정답! 실시간 언어 통역은 이미 기술적으로 가능하고, 2040년에는 완벽해질 가능성이 높아요!&quot;,
                teleport: &quot;  물질 텔레포트는 양자역학적으로 불가능에 가까워요. SF 영화에서나 가능한 일이죠!&quot;,
                &quot;ai-doctor&quot;: &quot;  좋은 선택! AI 개인 주치의도 실현 가능성이 높은 기술이에요!&quot;
            };

            result.innerHTML = responses[option];
            result.style.display = 'block';
        }

        // 완주 축하 애니메이션
        function celebrateFinish() {
            const animation = document.getElementById('celebrationAnimation');
            animation.innerHTML = '';

            // 폭죽 효과 생성
            for (let i = 0; i &lt; 50; i++) {
                const confetti = document.createElement('div');
                confetti.className = 'confetti';
                confetti.style.left = Math.random() * 100 + '%';
                confetti.style.animationDelay = Math.random() * 3 + 's';
                confetti.style.backgroundColor = ['#ff6b6b', '#4ecdc4', '#45b7d1', '#96ceb4', '#feca57'][Math.floor(Math.random() * 5)];
                animation.appendChild(confetti);

                setTimeout(() =&gt; {
                    if (confetti.parentNode) {
                        confetti.remove();
                    }
                }, 4000);
            }

            // 축하 메시지
            alert('  축하합니다! 16편의 대장정을 완주하셨네요! 정말 대단해요!  ');
        }

        // 초기 로드
        window.addEventListener('load', () =&gt; {
            revealOnScroll();
            updateDayScenario(6);
        });
    &lt;/script&gt;</description>
      <category>AI반도체</category>
      <category>AI #AI반도체 #반도체 #시스템반도체 #HBM3 #초거대AI #LLM #데이터센터 #전력효율 #전력반도체 #디시오</category>
      <author>디시오</author>
      <guid isPermaLink="true">https://dicio.tistory.com/36</guid>
      <comments>https://dicio.tistory.com/36#entry36comment</comments>
      <pubDate>Tue, 4 Nov 2025 14:59:20 +0900</pubDate>
    </item>
    <item>
      <title>  더 작게, 더 똑똑하게 - 미래의 AI 반도체 - AI반도체 15편</title>
      <link>https://dicio.tistory.com/35</link>
      <description>&lt;p data-ke-size=&quot;size16&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;div&gt;
&lt;style&gt;
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Noto Sans KR', sans-serif;
            line-height: 1.8;
            color: #333;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            border-radius: 20px;
            overflow: hidden;
            margin-top: 20px;
            margin-bottom: 20px;
        }

        .header {
            background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #f5576c);
            background-size: 400% 400%;
            color: white;
            padding: 60px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
            animation: gradientShift 6s ease infinite;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,&lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 100 100&quot;&gt;&lt;circle cx=&quot;20&quot; cy=&quot;20&quot; r=&quot;1&quot; fill=&quot;rgba(255,255,255,0.3)&quot;/&gt;&lt;circle cx=&quot;60&quot; cy=&quot;40&quot; r=&quot;1.5&quot; fill=&quot;rgba(255,255,255,0.2)&quot;/&gt;&lt;circle cx=&quot;80&quot; cy=&quot;70&quot; r=&quot;1&quot; fill=&quot;rgba(255,255,255,0.4)&quot;/&gt;&lt;/svg&gt;') repeat;
            animation: starField 15s linear infinite;
        }

        @keyframes starField {
            0% { transform: translate(0, 0); }
            100% { transform: translate(-100px, -100px); }
        }

        .header h1 {
            font-size: 2.8em;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .header .subtitle {
            font-size: 1.3em;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }

        .content {
            padding: 40px;
        }

        .section {
            margin-bottom: 50px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section h2 {
            color: #667eea;
            font-size: 2em;
            margin-bottom: 25px;
            position: relative;
            padding-left: 40px;
        }

        .section h2::before {
            content: ' ';
            position: absolute;
            left: 0;
            font-size: 1.2em;
        }

        .mega-fact {
            background: linear-gradient(135deg, #ff6b6b, #ee5a52);
            color: white;
            padding: 40px;
            border-radius: 20px;
            margin: 40px 0;
            position: relative;
            overflow: hidden;
            transform: perspective(1000px) rotateX(5deg);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .mega-fact::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        .transistor-counter {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 15px;
            margin: 30px 0;
            text-align: center;
        }

        .counter-display {
            font-size: 3em;
            font-weight: bold;
            color: #667eea;
            margin: 20px 0;
            font-family: 'Courier New', monospace;
        }

        .counter-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }

        .counter-btn {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border: none;
            padding: 15px 25px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 1em;
            transition: all 0.3s ease;
        }

        .counter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .brain-comparison {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 40px 0;
        }

        .brain-card {
            background: linear-gradient(135deg, #4facfe, #00f2fe);
            color: white;
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .brain-card.computer {
            background: linear-gradient(135deg, #fa709a, #fee140);
        }

        .brain-icon {
            font-size: 4em;
            margin-bottom: 20px;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .power-consumption {
            font-size: 2em;
            font-weight: bold;
            margin: 15px 0;
        }

        .tech-showcase {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }

        .tech-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .tech-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }

        .tech-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.5s;
        }

        .tech-card:hover::before {
            left: 100%;
        }

        .tech-icon {
            font-size: 3em;
            margin-bottom: 20px;
            text-align: center;
        }

        .tech-title {
            font-size: 1.3em;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
        }

        .3d-visualization {
            background: #1a1a1a;
            color: white;
            padding: 40px;
            border-radius: 20px;
            margin: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .layer-stack {
            display: flex;
            justify-content: center;
            align-items: flex-end;
            height: 200px;
            margin: 30px 0;
        }

        .layer {
            width: 60px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            margin: 0 5px;
            border-radius: 5px 5px 0 0;
            position: relative;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .layer:hover {
            transform: translateY(-10px);
            background: linear-gradient(135deg, #ff6b6b, #ee5a52);
        }

        .layer:nth-child(1) { height: 40px; }
        .layer:nth-child(2) { height: 60px; }
        .layer:nth-child(3) { height: 80px; }
        .layer:nth-child(4) { height: 100px; }
        .layer:nth-child(5) { height: 120px; }
        .layer:nth-child(6) { height: 140px; }
        .layer:nth-child(7) { height: 160px; }

        .timeline-container {
            background: #f8f9fa;
            padding: 40px;
            border-radius: 20px;
            margin: 40px 0;
        }

        .timeline-slider {
            width: 100%;
            margin: 30px 0;
        }

        .timeline-year {
            text-align: center;
            font-size: 2em;
            font-weight: bold;
            color: #667eea;
            margin: 20px 0;
        }

        .timeline-tech {
            text-align: center;
            font-size: 1.2em;
            padding: 20px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .quantum-demo {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 40px;
            border-radius: 20px;
            margin: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .quantum-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .quantum-particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(255,255,255,0.8);
            border-radius: 50%;
            animation: quantumFloat 3s ease-in-out infinite;
        }

        @keyframes quantumFloat {
            0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
            33% { transform: translate(20px, -20px) scale(1.5); opacity: 1; }
            66% { transform: translate(-15px, 15px) scale(0.8); opacity: 0.7; }
        }

        .speed-comparison {
            background: #fff5f5;
            padding: 30px;
            border-radius: 15px;
            margin: 30px 0;
        }

        .speed-bars {
            display: flex;
            align-items: flex-end;
            justify-content: space-around;
            height: 150px;
            margin: 20px 0;
        }

        .speed-bar {
            width: 60px;
            background: linear-gradient(to top, #ff6b6b, #ee5a52);
            border-radius: 5px 5px 0 0;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
        }

        .speed-bar:hover {
            transform: scale(1.1);
            background: linear-gradient(to top, #667eea, #764ba2);
        }

        .speed-label {
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.8em;
            text-align: center;
            width: 80px;
        }

        .interactive-quiz {
            background: linear-gradient(135deg, #4ecdc4, #44a08d);
            color: white;
            padding: 40px;
            border-radius: 20px;
            margin: 40px 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .interactive-quiz:hover {
            transform: scale(1.02);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .quiz-question {
            font-size: 1.3em;
            margin-bottom: 20px;
        }

        .quiz-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin: 20px 0;
        }

        .quiz-option {
            background: rgba(255,255,255,0.2);
            padding: 15px;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }

        .quiz-option:hover {
            background: rgba(255,255,255,0.3);
            transform: scale(1.05);
        }

        .quiz-option.correct {
            background: rgba(0,255,0,0.3);
            animation: correctPulse 0.5s ease;
        }

        .quiz-option.wrong {
            background: rgba(255,0,0,0.3);
            animation: wrongShake 0.5s ease;
        }

        @keyframes correctPulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        @keyframes wrongShake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-5px); }
            75% { transform: translateX(5px); }
        }

        .future-preview {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 50px 40px;
            border-radius: 20px;
            text-align: center;
            margin-top: 50px;
            position: relative;
            overflow: hidden;
        }

        .future-preview::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,&lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 100 100&quot;&gt;&lt;circle cx=&quot;20&quot; cy=&quot;20&quot; r=&quot;1&quot; fill=&quot;rgba(255,255,255,0.1)&quot;/&gt;&lt;circle cx=&quot;60&quot; cy=&quot;40&quot; r=&quot;1.5&quot; fill=&quot;rgba(255,255,255,0.1)&quot;/&gt;&lt;circle cx=&quot;80&quot; cy=&quot;70&quot; r=&quot;1&quot; fill=&quot;rgba(255,255,255,0.1)&quot;/&gt;&lt;/svg&gt;') repeat;
            animation: futureFloat 20s linear infinite;
        }

        @keyframes futureFloat {
            0% { transform: translate(0, 0); }
            100% { transform: translate(-200px, -200px); }
        }

        .future-preview h3 {
            font-size: 1.8em;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 768px) {
            .header {
                padding: 40px 20px;
            }
            
            .header h1 {
                font-size: 2.2em;
            }
            
            .content {
                padding: 20px;
            }
            
            .brain-comparison {
                grid-template-columns: 1fr;
            }
            
            .tech-showcase {
                grid-template-columns: 1fr;
            }
            
            .counter-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        .highlight-number {
            color: #ff6b6b;
            font-weight: bold;
            font-size: 1.2em;
        }

        .fun-fact {
            background: #e8f4fd;
            border-left: 5px solid #667eea;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 15px 15px 0;
            position: relative;
        }

        .fun-fact::before {
            content: ' ';
            position: absolute;
            top: -10px;
            left: 20px;
            background: #e8f4fd;
            padding: 0 10px;
            font-size: 1.5em;
        }
    &lt;/style&gt;
&lt;/div&gt;
&lt;div class=&quot;container&quot;&gt;
&lt;div class=&quot;header&quot;&gt;
&lt;h1&gt;  미래의 AI 반도체&lt;/h1&gt;
&lt;p class=&quot;subtitle&quot; data-ke-size=&quot;size16&quot;&gt;더 작게, 더 똑똑하게, 더 놀랍게! ✨&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;content&quot;&gt;
&lt;div class=&quot;section&quot;&gt;
&lt;h2 data-ke-size=&quot;size26&quot;&gt;  상상을 초월하는 미래가 온다!&lt;/h2&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;여러분, 지금까지 AI 반도체의 놀라운 세계를 함께 탐험해왔는데요, 이제 정말 흥미진진한 &lt;b&gt;미래 이야기&lt;/b&gt;를 해볼 시간이에요!  &lt;/p&gt;
&lt;div class=&quot;mega-fact&quot;&gt;
&lt;h3 style=&quot;font-size: 1.5em; margin-bottom: 15px;&quot; data-ke-size=&quot;size23&quot;&gt; ️ 접시만 한 크기에 2조 6천억 개!&lt;/h3&gt;
&lt;p style=&quot;font-size: 1.2em;&quot; data-ke-size=&quot;size16&quot;&gt;미국의 세레브라스(Cerebras)라는 회사가 만든 WSE-2 칩은 여러분이 저녁 먹을 때 쓰는 접시만 한 크기인데, 그 안에 &lt;span class=&quot;highlight-number&quot;&gt;2조 6천억 개&lt;/span&gt;의 트랜지스터가 들어있어요! 이는 전 세계 모든 사람이 각자 300개씩 나눠 가져도 되는 숫자랍니다!  &lt;/p&gt;
&lt;/div&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;미래의 AI 반도체는 &lt;b&gt;&quot;더 작게, 더 똑똑하게, 더 효율적으로&quot;&lt;/b&gt;라는 세 가지 마법 주문을 외치며 발전하고 있어요. 오늘은 이 놀라운 미래 기술들을 하나씩 만나보겠습니다!&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;section&quot;&gt;
&lt;h2 data-ke-size=&quot;size26&quot;&gt;  트랜지스터 개수의 폭발적 증가&lt;/h2&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;먼저 트랜지스터 개수가 얼마나 빠르게 늘어나고 있는지 직접 체험해보세요!&lt;/p&gt;
&lt;div class=&quot;transistor-counter&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  트랜지스터 카운터&lt;/h3&gt;
&lt;div id=&quot;transistorCount&quot; class=&quot;counter-display&quot;&gt;150억 개&lt;/div&gt;
&lt;p id=&quot;countDescription&quot; data-ke-size=&quot;size16&quot;&gt;현재 스마트폰 칩&lt;/p&gt;
&lt;div class=&quot;counter-buttons&quot;&gt;&lt;button class=&quot;counter-btn&quot;&gt;  스마트폰&lt;/button&gt; &lt;button class=&quot;counter-btn&quot;&gt;  GPU&lt;/button&gt; &lt;button class=&quot;counter-btn&quot;&gt; ️ 세레브라스&lt;/button&gt; &lt;button class=&quot;counter-btn&quot;&gt;  미래&lt;/button&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;fun-fact&quot;&gt;&lt;b&gt;트랜지스터가 이렇게 많으면 뭐가 좋을까요?&lt;/b&gt;&lt;br /&gt;트랜지스터 하나하나는 아주 작은 스위치예요. 이 스위치가 많을수록 컴퓨터는 더 복잡한 계산을 할 수 있어요. 마치 레고 블록이 많을수록 더 멋진 작품을 만들 수 있는 것처럼요!  &lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;section&quot;&gt;
&lt;h2 data-ke-size=&quot;size26&quot;&gt;  뇌 vs 컴퓨터: 누가 더 효율적일까?&lt;/h2&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;인간의 뇌와 컴퓨터의 전력 소모를 비교해보면 정말 놀라운 사실을 발견할 수 있어요!&lt;/p&gt;
&lt;div class=&quot;brain-comparison&quot;&gt;
&lt;div class=&quot;brain-card&quot;&gt;
&lt;div class=&quot;brain-icon&quot;&gt; &lt;/div&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;인간의 뇌&lt;/h3&gt;
&lt;div class=&quot;power-consumption&quot;&gt;20W&lt;/div&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;전구 1개 정도의 전력으로 모든 생각과 감정을 처리해요!&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;brain-card computer&quot;&gt;
&lt;div class=&quot;brain-icon&quot;&gt; &lt;/div&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;AI 컴퓨터&lt;/h3&gt;
&lt;div class=&quot;power-consumption&quot;&gt;200,000W&lt;/div&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;에어컨 100대를 동시에 켜는 것만큼의 전력이 필요해요!&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;fun-fact&quot;&gt;&lt;b&gt;뇌가 이렇게 효율적인 이유&lt;/b&gt;&lt;br /&gt;인간의 뇌는 1000억 개의 뉴런이 서로 연결되어 있어서, 필요한 부분만 활성화하고 나머지는 쉬게 해요. 마치 도시에서 필요한 구역만 불을 켜는 것처럼요! 그래서 과학자들은 뇌를 모방한 칩을 만들려고 노력하고 있답니다.  &lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;section&quot;&gt;
&lt;h2 data-ke-size=&quot;size26&quot;&gt;  미래 기술 쇼케이스&lt;/h2&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;이제 정말 신기한 미래 기술들을 만나볼까요? 각 카드를 클릭해보세요!&lt;/p&gt;
&lt;div class=&quot;tech-showcase&quot;&gt;
&lt;div class=&quot;tech-card&quot;&gt;
&lt;div class=&quot;tech-icon&quot;&gt; &lt;/div&gt;
&lt;div class=&quot;tech-title&quot;&gt;뉴로모픽 칩&lt;/div&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;인간의 뇌처럼 생각하는 칩이에요. 적은 전력으로도 똑똑하게 학습할 수 있어요!&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;tech-card&quot;&gt;
&lt;div class=&quot;tech-icon&quot;&gt;⚛️&lt;/div&gt;
&lt;div class=&quot;tech-title&quot;&gt;양자 컴퓨터&lt;/div&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;원자의 신비한 성질을 이용해서 계산하는 마법 같은 컴퓨터예요!&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;tech-card&quot;&gt;
&lt;div class=&quot;tech-icon&quot;&gt; &lt;/div&gt;
&lt;div class=&quot;tech-title&quot;&gt;광반도체&lt;/div&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;전기 대신 빛으로 계산하는 칩이에요. 빛의 속도로 계산한다고 상상해보세요!&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;tech-card&quot;&gt;
&lt;div class=&quot;tech-icon&quot;&gt; &lt;/div&gt;
&lt;div class=&quot;tech-title&quot;&gt;탄소 나노튜브&lt;/div&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;탄소로 만든 극도로 작은 튜브를 이용한 차세대 트랜지스터예요!&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&quot;tech-detail&quot; style=&quot;display: none; margin-top: 30px; padding: 30px; background: #f8f9fa; border-radius: 15px;&quot;&gt;
&lt;h3 id=&quot;tech-detail-title&quot; data-ke-size=&quot;size23&quot;&gt;&amp;nbsp;&lt;/h3&gt;
&lt;p id=&quot;tech-detail-description&quot; data-ke-size=&quot;size16&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;section&quot;&gt;
&lt;h2 data-ke-size=&quot;size26&quot;&gt; ️ 3D 적층: 반도체계의 마천루&lt;/h2&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;지금까지 반도체는 평면에 회로를 그렸다면, 미래에는 &lt;b&gt;위로 쌓아 올릴&lt;/b&gt; 거예요!&lt;/p&gt;
&lt;div class=&quot;3d-visualization&quot;&gt;
&lt;h3 style=&quot;text-align: center; margin-bottom: 20px;&quot; data-ke-size=&quot;size23&quot;&gt;  반도체 마천루 시뮬레이션&lt;/h3&gt;
&lt;p style=&quot;text-align: center; margin-bottom: 30px;&quot; data-ke-size=&quot;size16&quot;&gt;각 층을 클릭해보세요!&lt;/p&gt;
&lt;div class=&quot;layer-stack&quot;&gt;
&lt;div class=&quot;layer&quot; data-layer=&quot;1&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;layer&quot; data-layer=&quot;2&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;layer&quot; data-layer=&quot;3&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;layer&quot; data-layer=&quot;4&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;layer&quot; data-layer=&quot;5&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;layer&quot; data-layer=&quot;6&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;layer&quot; data-layer=&quot;7&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&quot;layer-info&quot; style=&quot;text-align: center; margin-top: 20px; min-height: 50px;&quot;&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;층을 클릭하면 정보가 나타납니다!&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;fun-fact&quot;&gt;&lt;b&gt;3D 적층의 장점&lt;/b&gt;&lt;br /&gt;같은 면적에 더 많은 트랜지스터를 넣을 수 있고, 층 사이의 거리가 가까워서 신호가 더 빨리 전달돼요. 마치 아파트에 사는 이웃끼리 더 빨리 만날 수 있는 것처럼요!  &lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;section&quot;&gt;
&lt;h2 data-ke-size=&quot;size26&quot;&gt;⚛️ 양자컴퓨팅: 미래의 마법&lt;/h2&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;양자컴퓨터는 일반 컴퓨터와 완전히 다른 방식으로 계산해요!&lt;/p&gt;
&lt;div class=&quot;quantum-demo&quot;&gt;
&lt;div class=&quot;quantum-particles&quot;&gt;
&lt;div class=&quot;quantum-particle&quot; style=&quot;left: 10%; top: 20%;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;quantum-particle&quot; style=&quot;left: 30%; top: 60%; animation-delay: 1s;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;quantum-particle&quot; style=&quot;left: 70%; top: 30%; animation-delay: 2s;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;quantum-particle&quot; style=&quot;left: 90%; top: 80%; animation-delay: 0.5s;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;h3 style=&quot;position: relative; z-index: 1;&quot; data-ke-size=&quot;size23&quot;&gt;  양자의 신비한 세계&lt;/h3&gt;
&lt;div style=&quot;position: relative; z-index: 1;&quot;&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&lt;b&gt;일반 컴퓨터:&lt;/b&gt; 0 또는 1, 둘 중 하나만 가능&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&lt;b&gt;양자컴퓨터:&lt;/b&gt; 0과 1을 동시에! 마치 동전이 공중에서 돌아가는 것처럼&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&lt;b&gt;놀라운 성능:&lt;/b&gt; 일반 컴퓨터가 1만 년 걸릴 계산을 1초에!&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;speed-comparison&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;⚡ 계산 속도 비교&lt;/h3&gt;
&lt;div class=&quot;speed-bars&quot;&gt;
&lt;div class=&quot;speed-bar&quot; style=&quot;height: 20px;&quot;&gt;
&lt;div class=&quot;speed-label&quot;&gt;계산기&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;speed-bar&quot; style=&quot;height: 40px;&quot;&gt;
&lt;div class=&quot;speed-label&quot;&gt;스마트폰&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;speed-bar&quot; style=&quot;height: 80px;&quot;&gt;
&lt;div class=&quot;speed-label&quot;&gt;슈퍼컴퓨터&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;speed-bar&quot; style=&quot;height: 150px;&quot;&gt;
&lt;div class=&quot;speed-label&quot;&gt;양자컴퓨터&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p style=&quot;text-align: center; margin-top: 40px;&quot; data-ke-size=&quot;size16&quot;&gt;양자컴퓨터는 특정 문제에서 다른 모든 컴퓨터를 압도해요!&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;section&quot;&gt;
&lt;h2 data-ke-size=&quot;size26&quot;&gt;⏰ 미래 기술 타임라인&lt;/h2&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;이 놀라운 기술들이 언제쯤 현실이 될까요?&lt;/p&gt;
&lt;div class=&quot;timeline-container&quot;&gt;
&lt;h3 style=&quot;text-align: center; margin-bottom: 20px;&quot; data-ke-size=&quot;size23&quot;&gt;  미래 예측 타임머신&lt;/h3&gt;
&lt;input id=&quot;timelineSlider&quot; class=&quot;timeline-slider&quot; max=&quot;2040&quot; min=&quot;2025&quot; type=&quot;range&quot; value=&quot;2025&quot; /&gt;
&lt;div id=&quot;timelineYear&quot; class=&quot;timeline-year&quot;&gt;2025년&lt;/div&gt;
&lt;div id=&quot;timelineTech&quot; class=&quot;timeline-tech&quot;&gt;현재: AI 반도체가 본격적으로 발전하기 시작하는 시점&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;section&quot;&gt;
&lt;h2 data-ke-size=&quot;size26&quot;&gt;  미래 기술 퀴즈&lt;/h2&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;지금까지 배운 내용을 테스트해볼까요?&lt;/p&gt;
&lt;div id=&quot;quiz1&quot; class=&quot;interactive-quiz&quot;&gt;
&lt;div class=&quot;quiz-question&quot;&gt;  2030년경에 상용화될 가능성이 가장 높은 기술은?&lt;/div&gt;
&lt;div class=&quot;quiz-options&quot;&gt;
&lt;div class=&quot;quiz-option&quot;&gt;완전한 양자컴퓨터&lt;/div&gt;
&lt;div class=&quot;quiz-option&quot;&gt;뉴로모픽 칩&lt;/div&gt;
&lt;div class=&quot;quiz-option&quot;&gt;텔레포트 칩&lt;/div&gt;
&lt;div class=&quot;quiz-option&quot;&gt;시간여행 프로세서&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&quot;quiz1-result&quot; style=&quot;display: none; margin-top: 20px; padding: 15px; background: rgba(255,255,255,0.2); border-radius: 10px;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;section&quot;&gt;
&lt;h2 data-ke-size=&quot;size26&quot;&gt;  꿈꾸는 미래 시나리오&lt;/h2&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;이런 기술들이 발전하면 우리 일상이 어떻게 바뀔까요?&lt;/p&gt;
&lt;div class=&quot;fun-fact&quot;&gt;&lt;b&gt;  2030년의 하루&lt;/b&gt;&lt;br /&gt;아침에 일어나면 뉴로모픽 칩이 내장된 AI가 여러분의 컨디션을 실시간으로 분석해서 최적의 아침 식단을 추천해줘요. 학교에 가는 길에는 양자 암호로 보호된 초고속 인터넷으로 홀로그램 수업을 듣고, 집에 돌아와서는 광반도체로 구동되는 게임을 즐길 수 있을 거예요! ✨&lt;/div&gt;
&lt;div class=&quot;mega-fact&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  궁극의 목표&lt;/h3&gt;
&lt;p style=&quot;font-size: 1.2em;&quot; data-ke-size=&quot;size16&quot;&gt;과학자들의 궁극적인 꿈은 &lt;b&gt;인간 뇌만큼 효율적이면서도 컴퓨터만큼 정확한 AI 칩&lt;/b&gt;을 만드는 것이에요. 언젠가는 손바닥 크기의 칩 하나로 현재의 슈퍼컴퓨터보다 똑똑한 AI를 만들 수 있을지도 몰라요!&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;section&quot;&gt;
&lt;h2 data-ke-size=&quot;size26&quot;&gt;  마무리: 무한한 가능성의 세계&lt;/h2&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;오늘 우리가 살펴본 미래 기술들은 아직 꿈같은 이야기처럼 들릴 수 있어요. 하지만 불과 20년 전만 해도 스마트폰이 꿈같은 이야기였다는 걸 기억해주세요!  &lt;/p&gt;
&lt;div class=&quot;highlight-box&quot; style=&quot;background: linear-gradient(135deg, #4ecdc4, #44a08d); color: white; padding: 30px; border-radius: 15px; margin: 30px 0;&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  여러분도 미래의 주인공&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;지금 이 글을 읽고 있는 여러분 중에도 미래의 AI 반도체를 설계하거나, 새로운 양자 알고리즘을 개발하거나, 뇌를 모방한 칩을 만드는 사람이 있을지도 몰라요. 과학과 기술에 대한 호기심을 잃지 마세요!&lt;/p&gt;
&lt;/div&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;기술의 발전은 &lt;b&gt;인간의 꿈과 상상력&lt;/b&gt;에서 시작됩니다. 오늘 배운 내용들이 여러분의 꿈에 작은 씨앗이 되어, 언젠가 더 나은 세상을 만드는 기술로 자라나길 바라요!  &lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;future-preview&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  대망의 시리즈 완결편!&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&lt;b&gt;&quot;AI 반도체와 함께 여는 미래&quot;&lt;/b&gt;&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;16편에 걸친 장대한 여행의 마지막!  ️&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;AI 반도체가 바꿔놓을 우리의 일상과 사회, 그리고 인류의 미래를 함께 그려보는 감동의 피날레!&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;  다음 주, 마지막 이야기로 찾아뵙겠습니다!&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;script&gt;
        // 스크롤 애니메이션
        function revealOnScroll() {
            const sections = document.querySelectorAll('.section');
            const windowHeight = window.innerHeight;
            const elementVisible = 150;

            sections.forEach(section =&gt; {
                const elementTop = section.getBoundingClientRect().top;
                
                if (elementTop &lt; windowHeight - elementVisible) {
                    section.classList.add('visible');
                }
            });
        }

        window.addEventListener('scroll', revealOnScroll);
        window.addEventListener('load', revealOnScroll);

        // 트랜지스터 카운터
        function setCount(type) {
            const countDisplay = document.getElementById('transistorCount');
            const description = document.getElementById('countDescription');
            
            const counts = {
                'phone': { count: '150억 개', desc: '현재 스마트폰 칩 (A16 바이오닉)' },
                'gpu': { count: '800억 개', desc: 'NVIDIA H100 AI 칩' },
                'cerebras': { count: '2조 6천억 개', desc: '세레브라스 WSE-2 (세계 최대!)' },
                'future': { count: '10조 개+', desc: '2030년 예상 미래 칩' }
            };
            
            countDisplay.textContent = counts[type].count;
            description.textContent = counts[type].desc;
            
            // 애니메이션 효과
            countDisplay.style.transform = 'scale(1.2)';
            countDisplay.style.color = '#ff6b6b';
            setTimeout(() =&gt; {
                countDisplay.style.transform = 'scale(1)';
                countDisplay.style.color = '#667eea';
            }, 300);
        }

        // 기술 상세 설명
        function showTechDetail(tech) {
            const detail = document.getElementById('tech-detail');
            const title = document.getElementById('tech-detail-title');
            const description = document.getElementById('tech-detail-description');
            
            const techInfo = {
                'neuromorphic': {
                    title: '  뉴로모픽 칩: 뇌를 닮은 컴퓨터',
                    description: '인간의 뇌는 1000억 개의 뉴런이 서로 연결되어 효율적으로 정보를 처리해요. 뉴로모픽 칩은 이 구조를 모방해서 적은 전력으로도 학습하고 기억할 수 있어요. IBM의 TrueNorth와 인텔의 Loihi가 대표적인 예시랍니다!'
                },
                'quantum': {
                    title: '⚛️ 양자 컴퓨터: 원자의 마법을 이용한 계산',
                    description: '양자컴퓨터는 양자역학의 신비한 성질을 이용해요. 일반 비트는 0 또는 1만 가능하지만, 큐비트는 0과 1을 동시에 가질 수 있어요! 이 덕분에 특정 문제를 엄청나게 빠르게 풀 수 있답니다. 구글의 시커모어가 양자 우월성을 처음 달성했어요!'
                },
                'photonic': {
                    title: '  광반도체: 빛의 속도로 계산하기',
                    description: '전기 대신 빛(광자)을 이용해서 정보를 처리하는 칩이에요. 빛은 전기보다 훨씬 빠르고 열도 적게 나서 초고속 연산이 가능해요. 특히 AI의 행렬 연산에 매우 유리하답니다. 미래에는 레이저로 계산하는 컴퓨터를 쓸 수도 있어요!'
                },
                'nanotube': {
                    title: '  탄소 나노튜브: 꿈의 소재',
                    description: '탄소 원자들이 튜브 모양으로 연결된 극도로 작은 구조체예요. 실리콘보다 전기가 훨씬 잘 통하고 더 작게 만들 수 있어서, 차세대 트랜지스터 소재로 주목받고 있어요. 하지만 아직 대량 생산이 어려워서 상용화까지는 시간이 더 필요해요.'
                }
            };
            
            title.textContent = techInfo[tech].title;
            description.textContent = techInfo[tech].description;
            detail.style.display = 'block';
            detail.scrollIntoView({ behavior: 'smooth' });
        }

        // 3D 층 정보
        document.querySelectorAll('.layer').forEach(layer =&gt; {
            layer.addEventListener('click', function() {
                const layerNum = this.dataset.layer;
                const info = document.getElementById('layer-info');
                
                const layerInfo = {
                    '1': '1층: 기본 실리콘 기판 - 모든 것의 토대예요!',
                    '2': '2층: 트랜지스터 층 - 기본적인 스위치들이 있어요',
                    '3': '3층: 첫 번째 메모리 층 - 데이터를 저장해요',
                    '4': '4층: 연산 처리 층 - 복잡한 계산을 담당해요',
                    '5': '5층: AI 전용 층 - 딥러닝 연산을 해요',
                    '6': '6층: 고속 캐시 층 - 자주 쓰는 데이터를 빠르게 저장해요',
                    '7': '7층: 통신 인터페이스 층 - 외부와 데이터를 주고받아요'
                };
                
                info.innerHTML = `&lt;p style=&quot;font-size: 1.1em; color: #4ecdc4;&quot;&gt;&lt;strong&gt;${layerInfo[layerNum]}&lt;/strong&gt;&lt;/p&gt;`;
            });
        });

        // 타임라인 업데이트
        function updateTimeline(year) {
            const yearDisplay = document.getElementById('timelineYear');
            const techDisplay = document.getElementById('timelineTech');
            
            const timelineData = {
                2025: '현재: AI 반도체가 본격적으로 발전하기 시작',
                2027: '뉴로모픽 칩의 상용화 시작',
                2030: '3D 적층 기술의 대중화, 1조 트랜지스터 칩 등장',
                2032: '광반도체 AI 칩의 실용화',
                2035: '뇌-컴퓨터 인터페이스의 일반화',
                2038: '양자 AI 하이브리드 시스템의 상용화',
                2040: '인간 뇌 수준의 효율을 가진 AI 칩 완성'
            };
            
            yearDisplay.textContent = `${year}년`;
            
            // 가장 가까운 년도 찾기
            const years = Object.keys(timelineData).map(y =&gt; parseInt(y));
            const closestYear = years.reduce((prev, curr) =&gt; 
                Math.abs(curr - year) &lt; Math.abs(prev - year) ? curr : prev
            );
            
            techDisplay.textContent = timelineData[closestYear];
        }

        // 퀴즈 체크
        function checkAnswer(element, isCorrect) {
            const options = element.parentElement.querySelectorAll('.quiz-option');
            const result = document.getElementById('quiz1-result');
            
            options.forEach(option =&gt; {
                option.style.pointerEvents = 'none';
            });
            
            if (isCorrect) {
                element.classList.add('correct');
                result.innerHTML = '  정답! 뉴로모픽 칩은 이미 실험 단계를 거쳐 상용화가 가장 가까운 기술이에요!';
                result.style.background = 'rgba(0,255,0,0.2)';
            } else {
                element.classList.add('wrong');
                result.innerHTML = '  아쉽네요! 뉴로모픽 칩이 가장 빠르게 상용화될 기술이에요.';
                result.style.background = 'rgba(255,0,0,0.2)';
            }
            
            result.style.display = 'block';
        }

        // 동적 파티클 생성
        function createQuantumParticle() {
            const container = document.querySelector('.quantum-particles');
            if (!container) return;
            
            const particle = document.createElement('div');
            particle.className = 'quantum-particle';
            particle.style.left = Math.random() * 100 + '%';
            particle.style.top = Math.random() * 100 + '%';
            particle.style.animationDelay = Math.random() * 3 + 's';
            
            container.appendChild(particle);
            
            setTimeout(() =&gt; {
                if (particle.parentNode) {
                    particle.remove();
                }
            }, 6000);
        }

        // 주기적으로 양자 파티클 생성
        setInterval(createQuantumParticle, 1000);

        // 초기 로드
        window.addEventListener('load', () =&gt; {
            revealOnScroll();
            // 초기 양자 파티클들 생성
            for (let i = 0; i &lt; 5; i++) {
                setTimeout(createQuantumParticle, i * 200);
            }
        });
    &lt;/script&gt;</description>
      <category>AI반도체</category>
      <category>AI #AI반도체 #반도체 #시스템반도체 #HBM3 #초거대AI #LLM #데이터센터 #전력효율 #전력반도체 #디시오</category>
      <author>디시오</author>
      <guid isPermaLink="true">https://dicio.tistory.com/35</guid>
      <comments>https://dicio.tistory.com/35#entry35comment</comments>
      <pubDate>Mon, 3 Nov 2025 13:11:57 +0900</pubDate>
    </item>
    <item>
      <title> ️ 모래가 컴퓨터가 되기까지, 반도체 제조의 마법 - AI반도체 14편</title>
      <link>https://dicio.tistory.com/34</link>
      <description>&lt;p data-ke-size=&quot;size16&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;div&gt;
&lt;style&gt;
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Noto Sans KR', sans-serif;
            line-height: 1.8;
            color: #333;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            border-radius: 20px;
            overflow: hidden;
            margin-top: 20px;
            margin-bottom: 20px;
        }

        .header {
            background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
            color: white;
            padding: 60px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml,&lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 100 100&quot;&gt;&lt;circle cx=&quot;50&quot; cy=&quot;50&quot; r=&quot;2&quot; fill=&quot;rgba(255,255,255,0.1)&quot;/&gt;&lt;/svg&gt;') repeat;
            animation: float 20s infinite linear;
        }

        @keyframes float {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }

        .header h1 {
            font-size: 2.5em;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .header .subtitle {
            font-size: 1.2em;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }

        .content {
            padding: 40px;
        }

        .section {
            margin-bottom: 50px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section h2 {
            color: #FF6B6B;
            font-size: 1.8em;
            margin-bottom: 25px;
            position: relative;
            padding-left: 30px;
        }

        .section h2::before {
            content: ' ';
            position: absolute;
            left: 0;
            font-size: 1.2em;
        }

        .highlight-box {
            background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
            color: white;
            padding: 30px;
            border-radius: 15px;
            margin: 30px 0;
            position: relative;
            overflow: hidden;
        }

        .highlight-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .fun-fact {
            background: #FFE5E5;
            border-left: 5px solid #FF6B6B;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 15px 15px 0;
            position: relative;
        }

        .fun-fact::before {
            content: ' ';
            position: absolute;
            top: -10px;
            left: 20px;
            background: #FFE5E5;
            padding: 0 10px;
            font-size: 1.5em;
        }

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

        .step-card {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            transform: scale(0.9);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .step-card:hover {
            transform: scale(1);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }

        .step-number {
            background: rgba(255,255,255,0.2);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-weight: bold;
            font-size: 1.2em;
        }

        .size-comparison {
            background: #F0F8FF;
            padding: 30px;
            border-radius: 15px;
            margin: 30px 0;
            text-align: center;
        }

        .size-items {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            margin-top: 20px;
        }

        .size-item {
            text-align: center;
            margin: 10px;
            padding: 15px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .size-item:hover {
            transform: translateY(-5px);
        }

        .size-icon {
            font-size: 2em;
            margin-bottom: 10px;
        }

        .cleanroom-demo {
            background: #E8F4F8;
            padding: 30px;
            border-radius: 15px;
            margin: 30px 0;
            position: relative;
        }

        .dust-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            border-radius: 15px;
            overflow: hidden;
        }

        .dust-particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: #FF6B6B;
            border-radius: 50%;
            animation: fall 4s linear infinite;
        }

        @keyframes fall {
            0% {
                transform: translateY(-20px);
                opacity: 1;
            }
            100% {
                transform: translateY(200px);
                opacity: 0;
            }
        }

        .quiz-box {
            background: linear-gradient(135deg, #4ECDC4, #44A08D);
            color: white;
            padding: 30px;
            border-radius: 15px;
            margin: 30px 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .quiz-box:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }

        .quiz-answer {
            display: none;
            margin-top: 20px;
            padding: 20px;
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .comparison-table th {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 20px;
            text-align: center;
        }

        .comparison-table td {
            padding: 15px;
            text-align: center;
            border-bottom: 1px solid #eee;
        }

        .comparison-table tr:hover {
            background: #F8F9FA;
        }

        .timeline {
            position: relative;
            margin: 40px 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 30px;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(to bottom, #FF6B6B, #4ECDC4);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 30px;
            padding-left: 80px;
        }

        .timeline-dot {
            position: absolute;
            left: 20px;
            top: 10px;
            width: 20px;
            height: 20px;
            background: #FF6B6B;
            border-radius: 50%;
            border: 4px solid white;
            box-shadow: 0 0 0 3px #FF6B6B;
        }

        .timeline-content {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .next-preview {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            margin-top: 50px;
        }

        .next-preview h3 {
            font-size: 1.5em;
            margin-bottom: 15px;
        }

        @media (max-width: 768px) {
            .header {
                padding: 40px 20px;
            }
            
            .header h1 {
                font-size: 2em;
            }
            
            .content {
                padding: 20px;
            }
            
            .manufacturing-steps {
                grid-template-columns: 1fr;
            }
            
            .size-items {
                flex-direction: column;
            }
        }

        .interactive-button {
            background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 1em;
            transition: all 0.3s ease;
            margin: 10px;
        }

        .interactive-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
    &lt;/style&gt;
&lt;/div&gt;
&lt;div class=&quot;container&quot;&gt;
&lt;div class=&quot;header&quot;&gt;
&lt;h1&gt; ️ 모래가 컴퓨터가 되기까지&lt;/h1&gt;
&lt;p class=&quot;subtitle&quot; data-ke-size=&quot;size16&quot;&gt;AI 반도체 제조의 놀라운 마법 여행 ✨&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;content&quot;&gt;
&lt;div class=&quot;section&quot;&gt;
&lt;h2 data-ke-size=&quot;size26&quot;&gt;  모래로 정말 컴퓨터를 만들 수 있다고?&lt;/h2&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;여러분, 혹시 해변에서 모래성을 쌓아본 적 있나요? 그 평범한 모래로 여러분이 지금 보고 있는 스마트폰이나 컴퓨터를 만들 수 있다고 하면 믿어지시나요?  &lt;/p&gt;
&lt;div class=&quot;fun-fact&quot;&gt;&lt;b&gt;깜짝 놀라운 사실!&lt;/b&gt;&lt;br /&gt;여러분이 발로 밟고 다니는 모래 한 줌에는 수억 개의 실리콘 원자가 들어있어요. 이 실리콘이 바로 모든 전자기기의 두뇌를 만드는 마법의 재료랍니다!  &lt;/div&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;반도체 제조는 마치 &lt;b&gt;연금술&lt;/b&gt;과 같아요. 평범한 모래에서 시작해서 인류 역사상 가장 정교하고 복잡한 물건을 만들어내거든요. 오늘은 이 놀라운 변신 과정을 함께 탐험해볼까요?&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;section&quot;&gt;
&lt;h2 data-ke-size=&quot;size26&quot;&gt;  1단계: 모래에서 순수한 실리콘 만들기&lt;/h2&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;모든 이야기는 해변의 평범한 모래에서 시작됩니다. 하지만 아무 모래나 쓸 수는 없어요!&lt;/p&gt;
&lt;div class=&quot;timeline&quot;&gt;
&lt;div class=&quot;timeline-item&quot;&gt;
&lt;div class=&quot;timeline-dot&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;timeline-content&quot;&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt; ️ 석영 모래 채굴&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;실리콘 함량이 높은 특별한 석영 모래를 채굴해요. 마치 보석 찾기와 비슷해요!&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;timeline-item&quot;&gt;
&lt;div class=&quot;timeline-dot&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;timeline-content&quot;&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;  고온 용융 (1700&amp;deg;C!)&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;모래를 1700도의 엄청난 고온에서 녹여요. 이는 용암보다도 뜨거운 온도예요!&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;timeline-item&quot;&gt;
&lt;div class=&quot;timeline-dot&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;timeline-content&quot;&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;✨ 99.999999999% 순도&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;불순물을 99.999999999% 제거해요. 이는 수영장에 소금 한 알갱이보다도 적은 불순물!&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;highlight-box&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  상상을 초월하는 순도&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;반도체용 실리콘의 순도는 99.999999999%예요. 이게 얼마나 순수한지 비유해보면, 전 세계 인구 80억 명 중에서 단 8명만 불순물이라는 뜻이에요! 이 정도로 순수해야만 완벽한 반도체가 만들어질 수 있답니다.&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;section&quot;&gt;
&lt;h2 data-ke-size=&quot;size26&quot;&gt;  2단계: 거대한 실리콘 피자 만들기 (웨이퍼)&lt;/h2&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;순수한 실리콘 덩어리를 거대한 피자처럼 얇게 썰어서 웨이퍼를 만들어요!&lt;/p&gt;
&lt;div class=&quot;size-comparison&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  웨이퍼 크기 비교&lt;/h3&gt;
&lt;div class=&quot;size-items&quot;&gt;
&lt;div class=&quot;size-item&quot;&gt;
&lt;div class=&quot;size-icon&quot;&gt; &lt;/div&gt;
&lt;div&gt;피자 (30cm)&lt;/div&gt;
&lt;div&gt;웨이퍼와 비슷!&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;size-item&quot;&gt;
&lt;div class=&quot;size-icon&quot;&gt; &lt;/div&gt;
&lt;div&gt;종이 두께&lt;/div&gt;
&lt;div&gt;0.1mm&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;size-item&quot;&gt;
&lt;div class=&quot;size-icon&quot;&gt; &lt;/div&gt;
&lt;div&gt;웨이퍼&lt;/div&gt;
&lt;div&gt;0.7mm (종이 7장)&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;size-item&quot;&gt;
&lt;div class=&quot;size-icon&quot;&gt; &lt;/div&gt;
&lt;div&gt;거울처럼 반짝!&lt;/div&gt;
&lt;div&gt;완벽한 평면&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;fun-fact&quot;&gt;&lt;b&gt;웨이퍼가 얼마나 평평한지 아세요?&lt;/b&gt;&lt;br /&gt;만약 웨이퍼를 지구 크기로 확대한다면, 가장 높은 곳과 낮은 곳의 차이가 고작 2미터밖에 안 돼요! 에베레스트 산도 완전히 평평하게 보일 정도의 매끄러움이죠.&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;section&quot;&gt;
&lt;h2 data-ke-size=&quot;size26&quot;&gt;  3단계: 나노미터 세계의 미술 시간 - 포토리소그래피&lt;/h2&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;이제 웨이퍼 위에 회로를 그려야 해요. 하지만 이 회로는 정말 정말 작아요!&lt;/p&gt;
&lt;div class=&quot;size-comparison&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  얼마나 작은지 비교해보자&lt;/h3&gt;
&lt;div class=&quot;size-items&quot;&gt;
&lt;div class=&quot;size-item&quot;&gt;
&lt;div class=&quot;size-icon&quot;&gt; &amp;zwj;♀️&lt;/div&gt;
&lt;div&gt;머리카락&lt;/div&gt;
&lt;div&gt;100,000nm&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;size-item&quot;&gt;
&lt;div class=&quot;size-icon&quot;&gt; &lt;/div&gt;
&lt;div&gt;세균&lt;/div&gt;
&lt;div&gt;1,000nm&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;size-item&quot;&gt;
&lt;div class=&quot;size-icon&quot;&gt; &lt;/div&gt;
&lt;div&gt;DNA&lt;/div&gt;
&lt;div&gt;2nm&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;size-item&quot;&gt;
&lt;div class=&quot;size-icon&quot;&gt;⚡&lt;/div&gt;
&lt;div&gt;최신 반도체&lt;/div&gt;
&lt;div&gt;3nm&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;포토리소그래피는 마치 &lt;b&gt;현미경으로 그림을 그리는 것&lt;/b&gt;과 같아요. 특별한 빛(극자외선)을 사용해서 웨이퍼 위에 회로 패턴을 새겨요.&lt;/p&gt;
&lt;div class=&quot;manufacturing-steps&quot;&gt;
&lt;div class=&quot;step-card&quot;&gt;
&lt;div class=&quot;step-number&quot;&gt;1&lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;포토레지스트 코팅&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;빛에 반응하는 특별한 물질을 발라요&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;step-card&quot;&gt;
&lt;div class=&quot;step-number&quot;&gt;2&lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;마스크 투사&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;회로 모양의 그림자를 만들어요&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;step-card&quot;&gt;
&lt;div class=&quot;step-number&quot;&gt;3&lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;현상&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;빛을 받은 부분만 남기거나 제거해요&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;step-card&quot;&gt;
&lt;div class=&quot;step-number&quot;&gt;4&lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;식각&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;필요 없는 부분을 깎아내요&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&quot;step-detail&quot; style=&quot;display: none; margin-top: 20px; padding: 20px; background: #f8f9fa; border-radius: 10px;&quot;&gt;
&lt;p id=&quot;step-description&quot; data-ke-size=&quot;size16&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;highlight-box&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  정밀도가 얼마나 대단한가요?&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;만약 여러분이 서울에서 부산까지의 거리(400km)를 1mm 오차 없이 측정할 수 있다면, 그것이 바로 반도체 제조의 정밀도예요! 축구장에서 개미 다리를 정확히 그려내는 것과 비슷한 수준이랍니다.&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;section&quot;&gt;
&lt;h2 data-ke-size=&quot;size26&quot;&gt;  4단계: 세상에서 가장 깨끗한 방 - 클린룸&lt;/h2&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;반도체는 먼지 한 톨도 용납하지 않아요. 그래서 특별한 방에서 만들어야 해요!&lt;/p&gt;
&lt;div class=&quot;cleanroom-demo&quot;&gt;
&lt;div class=&quot;dust-particles&quot;&gt;
&lt;div class=&quot;dust-particle&quot; style=&quot;left: 10%; animation-delay: 0s;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;dust-particle&quot; style=&quot;left: 30%; animation-delay: 1s;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;dust-particle&quot; style=&quot;left: 50%; animation-delay: 2s;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;dust-particle&quot; style=&quot;left: 70%; animation-delay: 3s;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;dust-particle&quot; style=&quot;left: 90%; animation-delay: 0.5s;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  클린룸 vs 일반 공간 비교&lt;/h3&gt;
&lt;div style=&quot;position: relative; z-index: 1;&quot;&gt;&lt;button class=&quot;interactive-button&quot;&gt;먼지 ON/OFF&lt;/button&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&lt;b&gt;일반 방:&lt;/b&gt; 1m&amp;sup3;당 수백만 개의 먼지&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&lt;b&gt;클린룸:&lt;/b&gt; 1m&amp;sup3;당 10개 이하의 먼지&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&lt;b&gt;비유:&lt;/b&gt; 축구장에 쌀알 몇 개만 떨어뜨린 수준!&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;comparison-table&quot;&gt;공간먼지 개수 (1m&amp;sup3;당)비유  일반 집1,000만 개폭설이 내리는 날  수술실10만 개가랑비 정도  클린룸10개1년에 눈송이 몇 개&lt;/div&gt;
&lt;div class=&quot;fun-fact&quot;&gt;&lt;b&gt;클린룸에서 일하는 사람들&lt;/b&gt;&lt;br /&gt;클린룸에서 일하는 사람들은 우주복 같은 방진복을 입어요. 머리카락 한 올, 침 한 방울도 반도체에 치명적이거든요! 마치 우주 정거장에서 일하는 것 같다고 해요.  &amp;zwj; &lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;section&quot;&gt;
&lt;h2 data-ke-size=&quot;size26&quot;&gt;  5단계: 수백 번의 반복 과정&lt;/h2&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;하나의 반도체를 만들기 위해서는 수백 개의 단계를 거쳐야 해요!&lt;/p&gt;
&lt;div class=&quot;highlight-box&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;⏱️ 반도체 제조에 걸리는 시간&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&lt;b&gt;총 제조 기간:&lt;/b&gt; 2-3개월&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&lt;b&gt;제조 단계:&lt;/b&gt; 500-1000단계&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&lt;b&gt;하루 24시간:&lt;/b&gt; 쉬지 않고 계속 작업&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&lt;b&gt;참여 인원:&lt;/b&gt; 수천 명의 엔지니어&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;manufacturing-steps&quot;&gt;
&lt;div class=&quot;step-card&quot;&gt;
&lt;div class=&quot;step-number&quot;&gt; &lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;세척&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;초순수로 깨끗이 씻어요&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;step-card&quot;&gt;
&lt;div class=&quot;step-number&quot;&gt; &lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;포토&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;빛으로 패턴을 그려요&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;step-card&quot;&gt;
&lt;div class=&quot;step-number&quot;&gt;⚡&lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;식각&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;불필요한 부분을 제거해요&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;step-card&quot;&gt;
&lt;div class=&quot;step-number&quot;&gt; &lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;증착&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;새로운 층을 쌓아올려요&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;step-card&quot;&gt;
&lt;div class=&quot;step-number&quot;&gt; &lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;검사&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;문제가 없는지 확인해요&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;step-card&quot;&gt;
&lt;div class=&quot;step-number&quot;&gt; &lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;반복&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;이 과정을 수백 번 반복!&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;section&quot;&gt;
&lt;h2 data-ke-size=&quot;size26&quot;&gt;  6단계: 포장의 예술 - 패키징&lt;/h2&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;완성된 칩을 보호하고 외부와 연결하는 마지막 단계예요!&lt;/p&gt;
&lt;div class=&quot;quiz-box&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  퀴즈 타임!&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;스마트폰 칩 하나에는 몇 개의 트랜지스터가 들어있을까요?&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;클릭해서 정답을 확인해보세요!&lt;/p&gt;
&lt;div class=&quot;quiz-answer&quot;&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;  정답: 약 150억 개!&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;이는 지구 인구의 2배에 달하는 숫자예요. 여러분 손바닥 크기의 칩 안에 지구 인구보다 많은 전자 스위치가 들어있다니, 정말 놀랍지 않나요?&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;패키징 과정에서는:&lt;/p&gt;
&lt;ul style=&quot;list-style: none; padding-left: 0;&quot; data-ke-list-type=&quot;disc&quot;&gt;
&lt;li&gt;  &lt;b&gt;본딩:&lt;/b&gt; 머리카락보다 얇은 금선으로 연결&lt;/li&gt;
&lt;li&gt; ️ &lt;b&gt;보호:&lt;/b&gt; 특수 플라스틱으로 감싸기&lt;/li&gt;
&lt;li&gt;  &lt;b&gt;테스트:&lt;/b&gt; 모든 기능이 정상인지 확인&lt;/li&gt;
&lt;li&gt;  &lt;b&gt;분류:&lt;/b&gt; 성능에 따라 등급 나누기&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div class=&quot;section&quot;&gt;
&lt;h2 data-ke-size=&quot;size26&quot;&gt;  왜 이렇게 복잡하고 비쌀까요?&lt;/h2&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;반도체 공장 하나를 짓는 데 드는 비용을 알아보세요!&lt;/p&gt;
&lt;div class=&quot;comparison-table&quot;&gt;항목비용비교  반도체 공장 1개20조원축구 경기장 20만 개 건설 비용  EUV 장비 1대200억원전투기 1대와 비슷  스마트폰 칩 1개100달러햄버거 세트 10개 가격
&lt;div class=&quot;fun-fact&quot;&gt;&lt;b&gt;세상에서 가장 비싼 기계&lt;/b&gt;&lt;br /&gt;반도체를 만드는 EUV 장비는 대형 여객기보다 비싸요! 이 기계 하나로 점보젯기 2대를 살 수 있답니다. 그만큼 첨단 기술이 집약되어 있어요. ✈️&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;section&quot;&gt;
&lt;h2 data-ke-size=&quot;size26&quot;&gt;  전 세계에 몇 곳밖에 없는 반도체 공장&lt;/h2&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;최첨단 반도체를 만들 수 있는 곳은 정말 몇 곳 없어요!&lt;/p&gt;
&lt;div class=&quot;highlight-box&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  반도체 제조 강국&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&lt;b&gt;  대한민국 - 삼성전자:&lt;/b&gt; 메모리 반도체 세계 1위&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&lt;b&gt;  대만 - TSMC:&lt;/b&gt; 파운드리 (위탁생산) 세계 1위&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&lt;b&gt;  네덜란드 - ASML:&lt;/b&gt; EUV 장비 세계 유일&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&lt;b&gt;  미국:&lt;/b&gt; 설계 기술의 메카&lt;/p&gt;
&lt;/div&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;왜 이렇게 몇 곳에만 집중되어 있을까요?&lt;/p&gt;
&lt;ul style=&quot;list-style-type: disc;&quot; data-ke-list-type=&quot;disc&quot;&gt;
&lt;li&gt;  &lt;b&gt;엄청난 투자비용:&lt;/b&gt; 한 공장에 수십조원&lt;/li&gt;
&lt;li&gt; &amp;zwj;  &lt;b&gt;고급 인력:&lt;/b&gt; 수년간 훈련받은 전문가 필요&lt;/li&gt;
&lt;li&gt;  &lt;b&gt;첨단 장비:&lt;/b&gt; 세계에 몇 대 없는 희귀한 기계&lt;/li&gt;
&lt;li&gt;⚡ &lt;b&gt;안정적인 전력:&lt;/b&gt; 24시간 끊김 없는 전기 공급&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div class=&quot;section&quot;&gt;
&lt;h2 data-ke-size=&quot;size26&quot;&gt;  미래의 반도체는 어떻게 될까?&lt;/h2&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;과학자들은 더욱 놀라운 기술을 개발하고 있어요!&lt;/p&gt;
&lt;div class=&quot;manufacturing-steps&quot;&gt;
&lt;div class=&quot;step-card&quot;&gt;
&lt;div class=&quot;step-number&quot;&gt; &lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;뉴로모픽 칩&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;뇌처럼 생각하는 칩&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;step-card&quot;&gt;
&lt;div class=&quot;step-number&quot;&gt;⚛️&lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;양자 컴퓨터&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;원자 단위로 계산하는 칩&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;step-card&quot;&gt;
&lt;div class=&quot;step-number&quot;&gt; &lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;다이아몬드 칩&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;다이아몬드로 만든 칩&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;step-card&quot;&gt;
&lt;div class=&quot;step-number&quot;&gt; &lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;광 컴퓨터&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;빛으로 계산하는 칩&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;fun-fact&quot;&gt;&lt;b&gt;미래의 칩은 스스로 진화할까?&lt;/b&gt;&lt;br /&gt;과학자들은 AI가 스스로 더 나은 AI 칩을 설계하는 기술을 연구하고 있어요. 마치 로봇이 더 똑똑한 로봇을 만드는 것처럼요!  &lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;next-preview&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  다음 편 미리보기&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&lt;b&gt;&quot;더 작게, 더 똑똑하게: 미래의 AI 반도체&quot;&lt;/b&gt;&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;1조 개 트랜지스터를 가진 칩? 뇌처럼 생각하는 컴퓨터? 빛으로 계산하는 칩?&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;미래의 놀라운 AI 반도체 기술들을 미리 만나보세요!&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt; ️ 다음 주에 찾아뵙겠습니다!&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;script&gt;
        // 스크롤 애니메이션
        function revealOnScroll() {
            const sections = document.querySelectorAll('.section');
            const windowHeight = window.innerHeight;
            const elementVisible = 150;

            sections.forEach(section =&gt; {
                const elementTop = section.getBoundingClientRect().top;
                
                if (elementTop &lt; windowHeight - elementVisible) {
                    section.classList.add('visible');
                }
            });
        }

        window.addEventListener('scroll', revealOnScroll);
        window.addEventListener('load', revealOnScroll);

        // 제조 단계 상세 설명
        function showStepDetail(step) {
            const detail = document.getElementById('step-detail');
            const description = document.getElementById('step-description');
            
            const descriptions = {
                1: &quot;  포토레지스트는 빛에 반응하는 특별한 화학물질이에요. 마치 사진 필름처럼 빛을 받으면 변화하는 성질이 있답니다. 이걸 웨이퍼에 얇게 발라서 '그림을 그릴 캔버스'를 만드는 거예요!&quot;,
                2: &quot;  거대한 카메라로 사진을 찍는 것처럼, 회로 모양이 그려진 마스크를 통해 특별한 빛을 웨이퍼에 비춰요. 이때 사용하는 빛은 너무 강해서 사람 눈으로는 볼 수 없어요!&quot;,
                3: &quot;  현상액이라는 특별한 약품으로 빛을 받은 부분만 남기거나 제거해요. 마치 사진을 현상하는 것과 똑같은 원리랍니다!&quot;,
                4: &quot;⚡ 플라즈마나 특별한 화학물질로 필요 없는 부분을 정밀하게 깎아내요. 이 과정에서 원자 단위의 정확성이 필요해요!&quot;
            };
            
            description.textContent = descriptions[step];
            detail.style.display = 'block';
            detail.scrollIntoView({ behavior: 'smooth' });
        }

        // 퀴즈 토글
        function toggleQuiz(element) {
            const answer = element.querySelector('.quiz-answer');
            if (answer.style.display === 'none' || !answer.style.display) {
                answer.style.display = 'block';
            } else {
                answer.style.display = 'none';
            }
        }

        // 먼지 애니메이션 토글
        let dustVisible = true;
        function toggleDust() {
            const particles = document.querySelectorAll('.dust-particle');
            dustVisible = !dustVisible;
            
            particles.forEach(particle =&gt; {
                particle.style.display = dustVisible ? 'block' : 'none';
            });
        }

        // 동적 먼지 생성
        function createDustParticle() {
            if (!dustVisible) return;
            
            const container = document.querySelector('.dust-particles');
            const particle = document.createElement('div');
            particle.className = 'dust-particle';
            particle.style.left = Math.random() * 100 + '%';
            particle.style.animationDelay = '0s';
            
            container.appendChild(particle);
            
            setTimeout(() =&gt; {
                particle.remove();
            }, 4000);
        }

        // 주기적으로 먼지 생성
        setInterval(createDustParticle, 800);

        // 초기 로드 시 모든 섹션 표시
        window.addEventListener('load', () =&gt; {
            revealOnScroll();
        });
    &lt;/script&gt;
&lt;/div&gt;</description>
      <category>AI반도체</category>
      <category>AI #AI반도체 #반도체 #시스템반도체 #HBM3 #초거대AI #LLM #데이터센터 #전력효율 #전력반도체 #디시오</category>
      <author>디시오</author>
      <guid isPermaLink="true">https://dicio.tistory.com/34</guid>
      <comments>https://dicio.tistory.com/34#entry34comment</comments>
      <pubDate>Sun, 2 Nov 2025 15:59:07 +0900</pubDate>
    </item>
    <item>
      <title>  AI도 친환경으로! 에너지 효율이 답이다 - AI반도체 13편</title>
      <link>https://dicio.tistory.com/33</link>
      <description>&lt;p data-ke-size=&quot;size16&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;div&gt;
&lt;style&gt;
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
            line-height: 1.8;
            color: #333;
            background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
            min-height: 100vh;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            min-height: 100vh;
        }

        .header {
            background: linear-gradient(135deg, #00b894 0%, #55efc4 100%);
            color: white;
            padding: 60px 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: ' ';
            position: absolute;
            font-size: 25em;
            top: -80px;
            right: -100px;
            opacity: 0.1;
            animation: grow-pulse 4s ease-in-out infinite;
        }

        @keyframes grow-pulse {
            0%, 100% { opacity: 0.1; transform: scale(1) rotate(0deg); }
            50% { opacity: 0.3; transform: scale(1.1) rotate(5deg); }
        }

        .header h1 {
            font-size: 3.2em;
            margin-bottom: 20px;
            z-index: 1;
            position: relative;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
        }

        .header .subtitle {
            font-size: 1.4em;
            opacity: 0.9;
            z-index: 1;
            position: relative;
        }

        .series-nav {
            background: #f8f9fa;
            padding: 20px 30px;
            border-bottom: 3px solid #dee2e6;
            text-align: center;
        }

        .series-nav span {
            color: #6c757d;
            font-size: 1em;
            font-weight: 500;
        }

        .content {
            padding: 50px 30px;
        }

        .crisis-alert {
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
            padding: 50px;
            border-radius: 25px;
            margin-bottom: 50px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .crisis-alert::before {
            content: ' ';
            position: absolute;
            font-size: 15em;
            top: -50px;
            left: -60px;
            opacity: 0.2;
            animation: alert-flash 2s ease-in-out infinite;
        }

        @keyframes alert-flash {
            0%, 100% { opacity: 0.2; }
            50% { opacity: 0.5; }
        }

        .crisis-alert h2 {
            font-size: 2.8em;
            margin-bottom: 20px;
            z-index: 1;
            position: relative;
        }

        .earth-meter {
            background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
            padding: 50px;
            border-radius: 25px;
            margin: 40px 0;
            color: white;
            text-align: center;
        }

        .planet-visual {
            width: 200px;
            height: 200px;
            margin: 30px auto;
            background: linear-gradient(145deg, #00b894, #00cec9);
            border-radius: 50%;
            position: relative;
            animation: planet-rotate 10s linear infinite;
            box-shadow: 0 0 50px rgba(0, 184, 148, 0.5);
        }

        @keyframes planet-rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .planet-health {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 3em;
            animation: health-beat 2s ease-in-out infinite;
        }

        @keyframes health-beat {
            0%, 100% { transform: translate(-50%, -50%) scale(1); }
            50% { transform: translate(-50%, -50%) scale(1.1); }
        }

        .health-indicator {
            background: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 15px;
            margin: 20px 0;
            backdrop-filter: blur(10px);
        }

        .health-bar {
            width: 100%;
            height: 20px;
            background: rgba(255,255,255,0.2);
            border-radius: 10px;
            overflow: hidden;
            margin: 10px 0;
        }

        .health-fill {
            height: 100%;
            border-radius: 10px;
            transition: width 3s ease;
        }

        .danger-level { background: linear-gradient(90deg, #ff6b6b 0%, #ee5a52 100%); }
        .warning-level { background: linear-gradient(90deg, #fdcb6e 0%, #e17055 100%); }
        .good-level { background: linear-gradient(90deg, #00b894 0%, #55efc4 100%); }

        .power-calculator {
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
            padding: 50px;
            border-radius: 25px;
            margin: 40px 0;
        }

        .calculator-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }

        .calc-section {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .calc-input {
            width: 100%;
            padding: 12px;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 1.1em;
            margin: 10px 0;
            text-align: center;
        }

        .calc-input:focus {
            border-color: #00b894;
            outline: none;
        }

        .calc-btn {
            width: 100%;
            padding: 15px;
            border: none;
            border-radius: 25px;
            background: linear-gradient(135deg, #00b894 0%, #55efc4 100%);
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1em;
            font-weight: bold;
            box-shadow: 0 5px 15px rgba(0, 184, 148, 0.3);
            margin: 10px 0;
        }

        .calc-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 184, 148, 0.4);
        }

        .calc-result {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 25px;
            border-radius: 15px;
            margin-top: 20px;
            text-align: center;
            min-height: 80px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .solution-showcase {
            background: #f8f9fa;
            padding: 50px;
            border-radius: 25px;
            margin: 40px 0;
        }

        .solution-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }

        .solution-card {
            background: white;
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .solution-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0,184,148,0.1), transparent);
            transition: left 0.5s;
        }

        .solution-card:hover::before {
            left: 100%;
        }

        .solution-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }

        .solution-icon {
            font-size: 4em;
            margin-bottom: 20px;
            display: block;
        }

        .improvement-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-top: 20px;
        }

        .stat-item {
            background: linear-gradient(135deg, #00b894 0%, #55efc4 100%);
            color: white;
            padding: 15px;
            border-radius: 10px;
            text-align: center;
        }

        .stat-number {
            font-size: 1.8em;
            font-weight: bold;
            display: block;
        }

        .timeline-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 50px;
            border-radius: 25px;
            margin: 40px 0;
            color: white;
        }

        .green-timeline {
            position: relative;
            margin: 40px 0;
        }

        .timeline-line {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, #00b894 0%, #55efc4 100%);
        }

        .timeline-event {
            margin: 40px 0;
            position: relative;
        }

        .event-content {
            background: rgba(255,255,255,0.1);
            padding: 25px;
            border-radius: 15px;
            width: 45%;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .timeline-event:nth-child(odd) .event-content {
            margin-left: 55%;
        }

        .timeline-event:nth-child(even) .event-content {
            margin-right: 55%;
        }

        .timeline-dot {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 20px;
            background: #00b894;
            border-radius: 50%;
            top: 25px;
            border: 4px solid white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        .impact-simulator {
            background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
            padding: 50px;
            border-radius: 25px;
            margin: 40px 0;
            color: white;
            text-align: center;
        }

        .impact-visualization {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }

        .impact-meter {
            background: rgba(255,255,255,0.1);
            padding: 25px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
        }

        .circular-meter {
            width: 120px;
            height: 120px;
            margin: 0 auto 15px;
            position: relative;
        }

        .meter-ring {
            width: 120px;
            height: 120px;
            transform: rotate(-90deg);
        }

        .meter-circle {
            fill: none;
            stroke-width: 8;
            stroke-linecap: round;
        }

        .meter-bg {
            stroke: rgba(255,255,255,0.2);
        }

        .meter-progress {
            stroke-dasharray: 314;
            stroke-dashoffset: 314;
            transition: stroke-dashoffset 2s ease;
            stroke: #00b894;
        }

        .meter-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 1.2em;
            font-weight: bold;
        }

        .future-vision {
            background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
            padding: 50px;
            border-radius: 25px;
            margin: 40px 0;
            color: white;
            text-align: center;
        }

        .vision-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }

        .vision-card {
            background: rgba(255,255,255,0.1);
            padding: 30px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
        }

        .vision-card:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.2);
        }

        .vision-icon {
            font-size: 3.5em;
            margin-bottom: 15px;
            display: block;
        }

        .dicio-green {
            background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
            padding: 50px;
            border-radius: 25px;
            margin: 40px 0;
            color: white;
            text-align: center;
        }

        .green-products {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }

        .product-card {
            background: rgba(255,255,255,0.1);
            padding: 30px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.2);
        }

        .product-icon {
            font-size: 3.5em;
            margin-bottom: 15px;
            display: block;
        }

        .quiz-forest {
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
            padding: 50px;
            border-radius: 25px;
            margin: 40px 0;
        }

        .quiz-progress {
            background: rgba(255,255,255,0.3);
            height: 12px;
            border-radius: 6px;
            margin: 25px 0;
            overflow: hidden;
        }

        .quiz-progress-fill {
            background: linear-gradient(90deg, #00b894 0%, #55efc4 100%);
            height: 100%;
            transition: width 0.5s ease;
        }

        .next-chapter {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 50px;
            border-radius: 25px;
            text-align: center;
            margin-top: 50px;
        }

        .loading {
            display: inline-block;
            width: 30px;
            height: 30px;
            border: 4px solid rgba(255,255,255,.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: loading-spin 1s ease-in-out infinite;
        }

        @keyframes loading-spin {
            to { transform: rotate(360deg); }
        }

        .highlight-fact {
            background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
            padding: 30px;
            border-radius: 20px;
            margin: 30px 0;
            border-left: 6px solid #e17055;
            color: #2d3436;
        }

        .highlight-fact h3 {
            color: #2d3436;
            margin-bottom: 15px;
        }

        @media (max-width: 768px) {
            .container {
                margin: 0;
                border-radius: 0;
            }
            
            .content {
                padding: 30px 20px;
            }
            
            .calculator-grid {
                grid-template-columns: 1fr;
            }
            
            .event-content {
                width: auto !important;
                margin-left: 40px !important;
                margin-right: 0 !important;
            }
            
            .timeline-line {
                left: 20px;
            }
            
            .timeline-dot {
                left: 20px;
            }
        }

        .carbon-footprint {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 30px 0;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footprint {
            font-size: 3em;
            opacity: 0.7;
            animation: footprint-fade 2s ease-in-out infinite;
        }

        @keyframes footprint-fade {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.8; }
        }

        .energy-flow {
            display: flex;
            justify-content: space-around;
            align-items: center;
            margin: 30px 0;
            flex-wrap: wrap;
            gap: 20px;
        }

        .energy-source {
            text-align: center;
            padding: 20px;
            background: rgba(255,255,255,0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            min-width: 150px;
        }

        .energy-arrow {
            font-size: 2em;
            color: #feca57;
            animation: flow-pulse 1.5s ease-in-out infinite;
        }

        @keyframes flow-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }
    &lt;/style&gt;
&lt;/div&gt;
&lt;div class=&quot;container&quot;&gt;&lt;header class=&quot;header&quot;&gt;
&lt;h1&gt;  AI도 친환경으로! 에너지 효율이 답이다&lt;/h1&gt;
&lt;p class=&quot;subtitle&quot; data-ke-size=&quot;size16&quot;&gt;지구를 구하는 스마트 기술의 비밀!&lt;/p&gt;
&lt;/header&gt;&lt;nav class=&quot;series-nav&quot;&gt;&lt;span&gt;  AI 반도체 시리즈 #13 | 이전: 실리콘카바이드의 혁명 | 다음: 반도체 제조의 비밀&lt;/span&gt;&lt;/nav&gt;&lt;main class=&quot;content&quot;&gt;
&lt;section class=&quot;crisis-alert&quot;&gt;
&lt;h2 data-ke-size=&quot;size26&quot;&gt;  지구가 보내는 SOS 신호!&lt;/h2&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;지금 이 순간에도 전 세계 AI가 사용하는 전력은 &lt;b&gt;아르헨티나 한 나라 전체&lt;/b&gt;가 쓰는 전기와 맞먹어요! ChatGPT에게 질문 한 번 하면 &lt;b&gt;스마트폰 10번 충전&lt;/b&gt;할 전기가 필요하고, 이 속도로 가면 2030년에는 AI가 &lt;b&gt;전 세계 전력의 10%&lt;/b&gt;를 먹어치울 거예요! 하지만 걱정 마세요. 똑똑한 과학자들이 이미 해결책을 찾고 있거든요!  &lt;/p&gt;
&lt;/section&gt;
&lt;div class=&quot;highlight-fact&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  충격적인 AI 전력 소비 현실!&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;만약 전 세계 모든 사람이 ChatGPT를 하루에 한 번씩 사용한다면, &lt;b&gt;원자력 발전소 30개&lt;/b&gt;가 추가로 필요해요! 하지만 새로운 전력반도체 기술로 이 문제를 해결할 수 있어요. SiC 기술 하나만으로도 &lt;b&gt;40%의 전력을 절약&lt;/b&gt;할 수 있거든요!&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;earth-meter&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  지구 건강 측정기&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;현재 AI 기술이 지구에 미치는 영향을 실시간으로 확인해보세요!&lt;/p&gt;
&lt;div class=&quot;planet-visual&quot;&gt;
&lt;div id=&quot;planetHealth&quot; class=&quot;planet-health&quot;&gt; &lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;health-indicator&quot;&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;  탄소 배출 위험도&lt;/h4&gt;
&lt;div class=&quot;health-bar&quot;&gt;
&lt;div id=&quot;carbonRisk&quot; class=&quot;health-fill danger-level&quot; style=&quot;width: 75%;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;현재: 위험 수준 (75%)&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;health-indicator&quot;&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;⚡ 전력 효율성&lt;/h4&gt;
&lt;div class=&quot;health-bar&quot;&gt;
&lt;div id=&quot;efficiency&quot; class=&quot;health-fill warning-level&quot; style=&quot;width: 45%;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;현재: 개선 필요 (45%)&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;health-indicator&quot;&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;  친환경 기술 도입&lt;/h4&gt;
&lt;div class=&quot;health-bar&quot;&gt;
&lt;div id=&quot;greenTech&quot; class=&quot;health-fill good-level&quot; style=&quot;width: 65%;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;현재: 진행 중 (65%)&lt;/p&gt;
&lt;/div&gt;
&lt;button class=&quot;calc-btn&quot;&gt;  친환경 기술 적용하기&lt;/button&gt;&lt;/div&gt;
&lt;div class=&quot;power-calculator&quot;&gt;
&lt;h3 style=&quot;text-align: center; margin-bottom: 30px;&quot; data-ke-size=&quot;size23&quot;&gt;  나만의 전력 절약 계산기&lt;/h3&gt;
&lt;div class=&quot;calculator-grid&quot;&gt;
&lt;div class=&quot;calc-section&quot;&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;  가정용 AI 기기&lt;/h4&gt;
&lt;label&gt;AI 스피커 사용 시간 (시간/일)&lt;/label&gt; &lt;input id=&quot;aiSpeaker&quot; class=&quot;calc-input&quot; type=&quot;number&quot; value=&quot;5&quot; placeholder=&quot;예: 5&quot; /&gt; &lt;label&gt;스마트 TV AI 기능 (시간/일)&lt;/label&gt; &lt;input id=&quot;smartTV&quot; class=&quot;calc-input&quot; type=&quot;number&quot; value=&quot;3&quot; placeholder=&quot;예: 3&quot; /&gt; &lt;label&gt;스마트폰 AI 사용 (시간/일)&lt;/label&gt; &lt;input id=&quot;smartphone&quot; class=&quot;calc-input&quot; type=&quot;number&quot; value=&quot;8&quot; placeholder=&quot;예: 8&quot; /&gt; &lt;button class=&quot;calc-btn&quot;&gt;  계산하기&lt;/button&gt;
&lt;div id=&quot;homeResult&quot; class=&quot;calc-result&quot;&gt;계산 버튼을 눌러보세요!&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;calc-section&quot;&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;  환경 영향 시뮬레이터&lt;/h4&gt;
&lt;label&gt;월간 ChatGPT 사용 횟수&lt;/label&gt; &lt;input id=&quot;chatgptUse&quot; class=&quot;calc-input&quot; type=&quot;number&quot; value=&quot;100&quot; placeholder=&quot;예: 100&quot; /&gt; &lt;label&gt;온라인 동영상 시청 (시간/일)&lt;/label&gt; &lt;input id=&quot;videoWatch&quot; class=&quot;calc-input&quot; type=&quot;number&quot; value=&quot;4&quot; placeholder=&quot;예: 4&quot; /&gt; &lt;label&gt;클라우드 서비스 사용량 (GB/월)&lt;/label&gt; &lt;input id=&quot;cloudUsage&quot; class=&quot;calc-input&quot; type=&quot;number&quot; value=&quot;50&quot; placeholder=&quot;예: 50&quot; /&gt; &lt;button class=&quot;calc-btn&quot;&gt;  환경 영향 계산&lt;/button&gt;
&lt;div id=&quot;envResult&quot; class=&quot;calc-result&quot;&gt;나의 환경 발자국을 확인해보세요!&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;solution-showcase&quot;&gt;
&lt;h3 style=&quot;text-align: center; margin-bottom: 30px;&quot; data-ke-size=&quot;size23&quot;&gt; ️ 지구를 구하는 4가지 슈퍼 기술&lt;/h3&gt;
&lt;div class=&quot;solution-grid&quot;&gt;
&lt;div class=&quot;solution-card&quot;&gt;&lt;span class=&quot;solution-icon&quot;&gt; &lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;SiC 전력반도체&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;마법의 소재로 전력 손실 40% 감소&lt;/p&gt;
&lt;div class=&quot;improvement-stats&quot;&gt;
&lt;div class=&quot;stat-item&quot;&gt;&lt;span class=&quot;stat-number&quot;&gt;-40%&lt;/span&gt; &lt;span&gt;전력 손실&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;stat-item&quot;&gt;&lt;span class=&quot;stat-number&quot;&gt;-50%&lt;/span&gt; &lt;span&gt;발열&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;solution-card&quot;&gt;&lt;span class=&quot;solution-icon&quot;&gt; &lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;고효율 AI 칩&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;똑똑한 설계로 전력 소비 최소화&lt;/p&gt;
&lt;div class=&quot;improvement-stats&quot;&gt;
&lt;div class=&quot;stat-item&quot;&gt;&lt;span class=&quot;stat-number&quot;&gt;-60%&lt;/span&gt; &lt;span&gt;전력 사용&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;stat-item&quot;&gt;&lt;span class=&quot;stat-number&quot;&gt;+3배&lt;/span&gt; &lt;span&gt;연산 효율&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;solution-card&quot;&gt;&lt;span class=&quot;solution-icon&quot;&gt;⚙️&lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;AI 모델 경량화&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;소프트웨어 최적화로 연산량 감소&lt;/p&gt;
&lt;div class=&quot;improvement-stats&quot;&gt;
&lt;div class=&quot;stat-item&quot;&gt;&lt;span class=&quot;stat-number&quot;&gt;-70%&lt;/span&gt; &lt;span&gt;모델 크기&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;stat-item&quot;&gt;&lt;span class=&quot;stat-number&quot;&gt;+5배&lt;/span&gt; &lt;span&gt;처리 속도&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;solution-card&quot;&gt;&lt;span class=&quot;solution-icon&quot;&gt;☀️&lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;재생 에너지&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;태양광과 풍력으로 깨끗한 전력&lt;/p&gt;
&lt;div class=&quot;improvement-stats&quot;&gt;
&lt;div class=&quot;stat-item&quot;&gt;&lt;span class=&quot;stat-number&quot;&gt;100%&lt;/span&gt; &lt;span&gt;친환경&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;stat-item&quot;&gt;&lt;span class=&quot;stat-number&quot;&gt;0%&lt;/span&gt; &lt;span&gt;탄소 배출&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&quot;solutionResult&quot; class=&quot;calc-result&quot; style=&quot;background: white; border: 2px solid #ddd; color: #333; margin-top: 30px;&quot;&gt;기술 카드를 클릭해서 자세한 정보를 확인해보세요!&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;timeline-section&quot;&gt;
&lt;h3 style=&quot;text-align: center; margin-bottom: 30px;&quot; data-ke-size=&quot;size23&quot;&gt;  친환경 AI 기술 발전사&lt;/h3&gt;
&lt;div class=&quot;green-timeline&quot;&gt;
&lt;div class=&quot;timeline-line&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;timeline-event&quot;&gt;
&lt;div class=&quot;timeline-dot&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;event-content&quot;&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;2010년 - 에너지 효율의 시작&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;첫 번째 저전력 프로세서 등장&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;timeline-event&quot;&gt;
&lt;div class=&quot;timeline-dot&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;event-content&quot;&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;2015년 - GPU 전력 최적화&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;AI 훈련용 고효율 GPU 개발&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;timeline-event&quot;&gt;
&lt;div class=&quot;timeline-dot&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;event-content&quot;&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;2020년 - SiC 기술 상용화&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;전력반도체 효율 혁명 시작&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;timeline-event&quot;&gt;
&lt;div class=&quot;timeline-dot&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;event-content&quot;&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;2023년 - RE100 확산&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;대기업들의 100% 재생에너지 선언&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;timeline-event&quot;&gt;
&lt;div class=&quot;timeline-dot&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;event-content&quot;&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;2025년 - 탄소 중립 AI&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;완전 친환경 AI 데이터센터 실현&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;impact-simulator&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  친환경 기술 적용 효과 시뮬레이터&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;SiC 기술과 효율적인 AI 칩을 사용하면 얼마나 지구에 도움이 될까요?&lt;/p&gt;
&lt;div class=&quot;impact-visualization&quot;&gt;
&lt;div class=&quot;impact-meter&quot;&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;  CO₂ 감소량&lt;/h4&gt;
&lt;div class=&quot;circular-meter&quot;&gt;
&lt;div id=&quot;co2Text&quot; class=&quot;meter-text&quot;&gt;0톤&lt;/div&gt;
&lt;/div&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;연간 CO₂ 절약량&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;impact-meter&quot;&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;  나무 심기 효과&lt;/h4&gt;
&lt;div class=&quot;circular-meter&quot;&gt;
&lt;div id=&quot;treeText&quot; class=&quot;meter-text&quot;&gt;0그루&lt;/div&gt;
&lt;/div&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;동등한 나무 심기 효과&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;impact-meter&quot;&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;  절약 비용&lt;/h4&gt;
&lt;div class=&quot;circular-meter&quot;&gt;
&lt;div id=&quot;costText&quot; class=&quot;meter-text&quot;&gt;0억원&lt;/div&gt;
&lt;/div&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;연간 전기요금 절약&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;impact-meter&quot;&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;⚡ 전력 절약&lt;/h4&gt;
&lt;div class=&quot;circular-meter&quot;&gt;
&lt;div id=&quot;powerText&quot; class=&quot;meter-text&quot;&gt;0TWh&lt;/div&gt;
&lt;/div&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;연간 전력 절약량&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;button class=&quot;calc-btn&quot;&gt;  지구 구하기 시뮬레이션&lt;/button&gt;
&lt;div id=&quot;impactResult&quot; class=&quot;calc-result&quot;&gt;시뮬레이션을 시작해보세요!&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;future-vision&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  2030년 친환경 AI 세상&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;친환경 기술이 완전히 도입되면 어떤 세상이 될까요?&lt;/p&gt;
&lt;div class=&quot;vision-grid&quot;&gt;
&lt;div class=&quot;vision-card&quot;&gt;&lt;span class=&quot;vision-icon&quot;&gt; &lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;스마트 제로 에너지 홈&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;AI가 에너지를 완벽 관리하여 전력 소비 제로&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;vision-card&quot;&gt;&lt;span class=&quot;vision-icon&quot;&gt; &lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;100% 전기차 시대&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;SiC 기술로 주행거리 2배, 충전시간 반으로&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;vision-card&quot;&gt;&lt;span class=&quot;vision-icon&quot;&gt; &lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;탄소 중립 데이터센터&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;100% 재생에너지로 운영되는 AI 인프라&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;vision-card&quot;&gt;&lt;span class=&quot;vision-icon&quot;&gt; &lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;지구 온도 1.5&amp;deg;C 제한&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;AI 기술로 기후변화 목표 달성&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;dicio-green&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  dicio: 친환경 AI의 리더&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;dicio는 지구를 생각하는 친환경 전력반도체로 AI의 미래를 바꾸고 있어요!&lt;/p&gt;
&lt;div class=&quot;green-products&quot;&gt;
&lt;div class=&quot;product-card&quot;&gt;&lt;span class=&quot;product-icon&quot;&gt; &lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;그린 SiC 시리즈&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;탄소 발자국 최소화 전력반도체&lt;/p&gt;
&lt;small&gt;&amp;bull; 98% 초고효율&lt;br /&gt;&amp;bull; 제조 과정 탄소 중립&lt;br /&gt;&amp;bull; 재활용 가능 소재&lt;/small&gt;&lt;/div&gt;
&lt;div class=&quot;product-card&quot;&gt;&lt;span class=&quot;product-icon&quot;&gt; &lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;에코 모듈 라인&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;친환경 인증 파워 모듈&lt;/p&gt;
&lt;small&gt;&amp;bull; 수명 30년 보장&lt;br /&gt;&amp;bull; 100% 재생에너지 제조&lt;br /&gt;&amp;bull; 패키징 플라스틱 제로&lt;/small&gt;&lt;/div&gt;
&lt;div class=&quot;product-card&quot;&gt;&lt;span class=&quot;product-icon&quot;&gt;♻️&lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;순환경제 솔루션&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;제품 생애주기 관리 서비스&lt;/p&gt;
&lt;small&gt;&amp;bull; 사용 후 100% 회수&lt;br /&gt;&amp;bull; 재활용률 95% 달성&lt;br /&gt;&amp;bull; 지속가능한 공급망&lt;/small&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;quiz-forest&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  친환경 AI 지식왕 도전!&lt;/h3&gt;
&lt;div class=&quot;quiz-progress&quot;&gt;
&lt;div id=&quot;quizProgress&quot; class=&quot;quiz-progress-fill&quot; style=&quot;width: 0%;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&quot;quizContainer&quot;&gt;
&lt;p id=&quot;quizQuestion&quot; data-ke-size=&quot;size16&quot;&gt;SiC 전력반도체로 전력 손실을 몇 % 줄일 수 있을까요?&lt;/p&gt;
&lt;div style=&quot;display: flex; justify-content: center; gap: 15px; margin: 20px 0; flex-wrap: wrap;&quot;&gt;&lt;button class=&quot;calc-btn&quot;&gt;40%&lt;/button&gt; &lt;button class=&quot;calc-btn&quot;&gt;20%&lt;/button&gt; &lt;button class=&quot;calc-btn&quot;&gt;10%&lt;/button&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&quot;quizResult&quot; class=&quot;calc-result&quot;&gt;정답을 선택해보세요!&lt;/div&gt;
&lt;/div&gt;
&lt;section class=&quot;next-chapter&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;⚡ 다음 편 예고&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&lt;b&gt;&quot;모래가 컴퓨터가 되기까지, 반도체 제조 이야기&quot;&lt;/b&gt;&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;세상에서 가장 정교한 제조 과정! 모래에서 시작해서 나노미터 단위로 회로를 새기는 놀라운 반도체 제조 공정의 비밀을 공개합니다! 하이테크의 집약체, 반도체 공장 속으로 들어가 볼까요?  ✨&lt;/p&gt;
&lt;/section&gt;
&lt;/main&gt;&lt;/div&gt;
&lt;script&gt;
        let currentQuiz = 0;
        let quizScore = 0;
        
        const quizData = [
            {
                question: &quot;SiC 전력반도체로 전력 손실을 몇 % 줄일 수 있을까요?&quot;,
                answers: [&quot;40%&quot;, &quot;20%&quot;, &quot;10%&quot;],
                correct: &quot;40%&quot;
            },
            {
                question: &quot;전 세계 데이터센터가 연간 사용하는 전력은?&quot;,
                answers: [&quot;300TWh&quot;, &quot;100TWh&quot;, &quot;500TWh&quot;],
                correct: &quot;300TWh&quot;
            },
            {
                question: &quot;RE100이란 무엇일까요?&quot;,
                answers: [&quot;100% 재생에너지&quot;, &quot;100% 효율&quot;, &quot;100% 재활용&quot;],
                correct: &quot;100% 재생에너지&quot;
            }
        ];

        // 지구 개선하기
        function improveEarth() {
            const carbonRisk = document.getElementById('carbonRisk');
            const efficiency = document.getElementById('efficiency');
            const greenTech = document.getElementById('greenTech');
            const planetHealth = document.getElementById('planetHealth');
            
            // 애니메이션으로 수치 개선
            setTimeout(() =&gt; {
                carbonRisk.style.width = '30%';
                carbonRisk.className = 'health-fill good-level';
            }, 500);
            
            setTimeout(() =&gt; {
                efficiency.style.width = '85%';
                efficiency.className = 'health-fill good-level';
            }, 1000);
            
            setTimeout(() =&gt; {
                greenTech.style.width = '95%';
            }, 1500);
            
            setTimeout(() =&gt; {
                planetHealth.textContent = ' ';
                planetHealth.style.animation = 'health-beat 1s ease-in-out infinite';
            }, 2000);
        }

        // 가정용 계산
        function calculateHome() {
            const aiSpeaker = document.getElementById('aiSpeaker').value || 5;
            const smartTV = document.getElementById('smartTV').value || 3;
            const smartphone = document.getElementById('smartphone').value || 8;
            const result = document.getElementById('homeResult');
            
            result.innerHTML = '&lt;div class=&quot;loading&quot;&gt;&lt;/div&gt; 계산 중...';
            
            setTimeout(() =&gt; {
                const dailyPower = (aiSpeaker * 10) + (smartTV * 150) + (smartphone * 5);
                const monthlyCost = dailyPower * 30 * 0.1; // 대략적인 전기요금
                const co2 = dailyPower * 30 * 0.5; // kg CO2
                
                result.innerHTML = `
                      &lt;strong&gt;가정 AI 기기 분석 결과:&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
                    ⚡ 일일 전력 사용: ${dailyPower}Wh&lt;br&gt;
                      월 전기요금: ${Math.round(monthlyCost).toLocaleString()}원&lt;br&gt;
                      월 CO₂ 배출: ${Math.round(co2)}kg&lt;br&gt;&lt;br&gt;
                      &lt;strong&gt;절약 팁:&lt;/strong&gt; SiC 기술 적용 시 ${Math.round(monthlyCost * 0.4).toLocaleString()}원 절약 가능!
                `;
            }, 2000);
        }

        // 환경 영향 계산
        function calculateEnvironment() {
            const chatgpt = document.getElementById('chatgptUse').value || 100;
            const video = document.getElementById('videoWatch').value || 4;
            const cloud = document.getElementById('cloudUsage').value || 50;
            const result = document.getElementById('envResult');
            
            result.innerHTML = '&lt;div class=&quot;loading&quot;&gt;&lt;/div&gt; 환경 영향 분석 중...';
            
            setTimeout(() =&gt; {
                const chatgptCo2 = chatgpt * 4.32; // g CO2 per query
                const videoCo2 = video * 30 * 36; // g CO2 per hour
                const cloudCo2 = cloud * 0.5 * 1000; // g CO2 per GB
                const totalCo2 = (chatgptCo2 + videoCo2 + cloudCo2) / 1000; // kg
                
                const trees = Math.round(totalCo2 / 22); // 나무 1그루당 연간 22kg CO2 흡수
                
                result.innerHTML = `
                      &lt;strong&gt;나의 디지털 탄소 발자국:&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
                      ChatGPT 사용: ${Math.round(chatgptCo2)}g CO₂&lt;br&gt;
                      동영상 시청: ${Math.round(videoCo2/1000)}kg CO₂&lt;br&gt;
                    ☁️ 클라우드 사용: ${Math.round(cloudCo2/1000)}kg CO₂&lt;br&gt;&lt;br&gt;
                      &lt;strong&gt;총 월간 배출량: ${Math.round(totalCo2)}kg CO₂&lt;/strong&gt;&lt;br&gt;
                      상쇄하려면 나무 ${trees}그루 필요!
                `;
            }, 2500);
        }

        // 솔루션 설명
        function showSolution(solution) {
            const result = document.getElementById('solutionResult');
            let explanation;
            
            switch(solution) {
                case 'sic':
                    explanation = `
                          &lt;strong&gt;SiC 전력반도체의 마법:&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
                          &lt;strong&gt;작동 원리:&lt;/strong&gt;&lt;br&gt;
                        • 실리콘+탄소 결합으로 슈퍼 소재 탄생&lt;br&gt;
                        • 200°C 고온에서도 안정 동작&lt;br&gt;
                        • 전력 손실을 기존 대비 40% 감소&lt;br&gt;&lt;br&gt;
                          &lt;strong&gt;환경 효과:&lt;/strong&gt;&lt;br&gt;
                        • 연간 120TWh 전력 절약 가능&lt;br&gt;
                        • 발전소 20개 건설 효과&lt;br&gt;
                        • 탄소 배출 6천만톤 감소
                    `;
                    break;
                case 'chip':
                    explanation = `
                          &lt;strong&gt;고효율 AI 칩의 혁신:&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
                        ⚙️ &lt;strong&gt;핵심 기술:&lt;/strong&gt;&lt;br&gt;
                        • 신경망 구조 최적화&lt;br&gt;
                        • 동적 전압/주파수 조절&lt;br&gt;
                        • 불필요한 연산 자동 차단&lt;br&gt;&lt;br&gt;
                          &lt;strong&gt;성능 개선:&lt;/strong&gt;&lt;br&gt;
                        • 같은 작업에 60% 적은 전력&lt;br&gt;
                        • 처리 속도 3배 향상&lt;br&gt;
                        • 발열 50% 감소
                    `;
                    break;
                case 'software':
                    explanation = `
                        ⚙️ &lt;strong&gt;AI 모델 경량화 기술:&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
                          &lt;strong&gt;최적화 방법:&lt;/strong&gt;&lt;br&gt;
                        • 프루닝: 불필요한 연결 제거&lt;br&gt;
                        • 양자화: 계산 정밀도 조절&lt;br&gt;
                        • 지식 증류: 큰 모델→작은 모델&lt;br&gt;&lt;br&gt;
                        ⚡ &lt;strong&gt;효과:&lt;/strong&gt;&lt;br&gt;
                        • 모델 크기 70% 감소&lt;br&gt;
                        • 추론 속도 5배 향상&lt;br&gt;
                        • 메모리 사용량 80% 절약
                    `;
                    break;
                case 'renewable':
                    explanation = `
                        ☀️ &lt;strong&gt;재생 에너지의 힘:&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
                          &lt;strong&gt;청정 에너지원:&lt;/strong&gt;&lt;br&gt;
                        • 태양광: 무한한 태양 에너지&lt;br&gt;
                        • 풍력: 바람의 힘 활용&lt;br&gt;
                        • 수력: 물의 흐름 이용&lt;br&gt;&lt;br&gt;
                          &lt;strong&gt;목표:&lt;/strong&gt;&lt;br&gt;
                        • 2030년 RE100 달성&lt;br&gt;
                        • 탄소 배출 완전 제로&lt;br&gt;
                        • 지속가능한 AI 생태계
                    `;
                    break;
            }
            result.innerHTML = explanation;
        }

        // 영향 시뮬레이션
        function simulateImpact() {
            const result = document.getElementById('impactResult');
            result.innerHTML = '&lt;div class=&quot;loading&quot;&gt;&lt;/div&gt; 지구 구하기 시뮬레이션 실행 중...';
            
            // 원형 프로그레스 애니메이션
            setTimeout(() =&gt; {
                // CO2: 6천만톤 = 80% of circle
                document.getElementById('co2Progress').style.strokeDashoffset = '63';
                document.getElementById('co2Text').textContent = '6천만톤';
                
                // Trees: 300만그루 = 85% of circle
                document.getElementById('treeProgress').style.strokeDashoffset = '47';
                document.getElementById('treeText').textContent = '300만그루';
                
                // Cost: 800억원 = 90% of circle
                document.getElementById('costProgress').style.strokeDashoffset = '31';
                document.getElementById('costText').textContent = '800억원';
                
                // Power: 120TWh = 75% of circle
                document.getElementById('powerProgress').style.strokeDashoffset = '78';
                document.getElementById('powerText').textContent = '120TWh';
            }, 1000);
            
            setTimeout(() =&gt; {
                result.innerHTML = `
                      &lt;strong&gt;친환경 기술 도입 효과:&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
                      SiC 기술 적용으로 연간:&lt;br&gt;
                    • 탄소 배출 6천만톤 감소&lt;br&gt;
                    • 300만 그루 나무 심기 효과&lt;br&gt;
                    • 전 세계 전기요금 800억원 절약&lt;br&gt;
                    • 원자력 발전소 20개 건설 효과&lt;br&gt;&lt;br&gt;
                      &lt;strong&gt;결론:&lt;/strong&gt; 기술로 지구를 구할 수 있어요!
                `;
            }, 3000);
        }

        // 퀴즈 시스템
        function answerQuiz(answer, isCorrect) {
            const result = document.getElementById('quizResult');
            const progress = document.getElementById('quizProgress');
            
            if (isCorrect) {
                result.innerHTML = '  정답! ' + answer + '가 맞아요!';
                quizScore++;
            } else {
                result.innerHTML = '❌ 틀렸어요! 정답은 ' + quizData[currentQuiz].correct + '입니다.';
            }
            
            currentQuiz++;
            progress.style.width = (currentQuiz / quizData.length) * 100 + '%';
            
            if (currentQuiz &lt; quizData.length) {
                setTimeout(showNextQuiz, 2000);
            } else {
                setTimeout(() =&gt; {
                    result.innerHTML = `  친환경 AI 전문가 인증! 점수: ${quizScore}/${quizData.length}`;
                }, 2000);
            }
        }

        function showNextQuiz() {
            const question = document.getElementById('quizQuestion');
            const container = document.getElementById('quizContainer');
            
            question.textContent = quizData[currentQuiz].question;
            
            const buttonContainer = container.querySelector('div');
            buttonContainer.innerHTML = '';
            
            quizData[currentQuiz].answers.forEach((answer, index) =&gt; {
                const button = document.createElement('button');
                button.className = 'calc-btn';
                button.textContent = answer;
                button.onclick = () =&gt; answerQuiz(answer, answer === quizData[currentQuiz].correct);
                buttonContainer.appendChild(button);
            });
            
            document.getElementById('quizResult').textContent = '정답을 선택해보세요!';
        }

        // 페이지 로드 시 초기화
        document.addEventListener('DOMContentLoaded', function() {
            // 지구 건강 상태 자동 업데이트
            setTimeout(() =&gt; {
                document.getElementById('planetHealth').textContent = ' ';
            }, 2000);
            
            // 첫 번째 솔루션 자동 표시
            setTimeout(() =&gt; {
                showSolution('sic');
            }, 4000);
        });
    &lt;/script&gt;</description>
      <category>AI반도체</category>
      <category>AI #AI반도체 #반도체 #시스템반도체 #HBM3 #초거대AI #LLM #데이터센터 #전력효율 #전력반도체 #디시오</category>
      <author>디시오</author>
      <guid isPermaLink="true">https://dicio.tistory.com/33</guid>
      <comments>https://dicio.tistory.com/33#entry33comment</comments>
      <pubDate>Sat, 1 Nov 2025 20:38:24 +0900</pubDate>
    </item>
    <item>
      <title>  실리콘의 한계를 넘다! 실리콘카바이드의 등장 - AI반도체 12편</title>
      <link>https://dicio.tistory.com/32</link>
      <description>&lt;p data-ke-size=&quot;size16&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;div&gt;
&lt;style&gt;
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
            line-height: 1.8;
            color: #333;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            min-height: 100vh;
        }

        .header {
            background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
            color: white;
            padding: 60px 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: ' ';
            position: absolute;
            font-size: 25em;
            top: -80px;
            right: -100px;
            opacity: 0.1;
            animation: diamond-sparkle 4s ease-in-out infinite;
        }

        @keyframes diamond-sparkle {
            0%, 100% { opacity: 0.1; transform: rotate(0deg) scale(1); }
            50% { opacity: 0.3; transform: rotate(5deg) scale(1.1); }
        }

        .header h1 {
            font-size: 3.2em;
            margin-bottom: 20px;
            z-index: 1;
            position: relative;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
        }

        .header .subtitle {
            font-size: 1.4em;
            opacity: 0.9;
            z-index: 1;
            position: relative;
        }

        .series-nav {
            background: #f8f9fa;
            padding: 20px 30px;
            border-bottom: 3px solid #dee2e6;
            text-align: center;
        }

        .series-nav span {
            color: #6c757d;
            font-size: 1em;
            font-weight: 500;
        }

        .content {
            padding: 50px 30px;
        }

        .revolutionary-intro {
            background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
            padding: 50px;
            border-radius: 25px;
            margin-bottom: 50px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .revolutionary-intro::before {
            content: ' ';
            position: absolute;
            font-size: 15em;
            top: -50px;
            left: -60px;
            opacity: 0.2;
            animation: rocket-launch 5s ease-in-out infinite;
        }

        @keyframes rocket-launch {
            0%, 100% { transform: translateY(0) rotate(-10deg); }
            50% { transform: translateY(-30px) rotate(10deg); }
        }

        .revolutionary-intro h2 {
            font-size: 2.8em;
            margin-bottom: 20px;
            z-index: 1;
            position: relative;
        }

        .material-evolution {
            background: #2d3436;
            padding: 50px;
            border-radius: 25px;
            margin: 40px 0;
            color: white;
            position: relative;
        }

        .evolution-timeline {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 40px 0;
            position: relative;
        }

        .evolution-timeline::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #636e72 0%, #fd79a8 50%, #6c5ce7 100%);
            z-index: 0;
        }

        .evolution-stage {
            background: rgba(255,255,255,0.1);
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            min-width: 220px;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.2);
            z-index: 1;
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .evolution-stage:hover {
            transform: translateY(-10px);
            background: rgba(255,255,255,0.2);
        }

        .stage-icon {
            font-size: 4em;
            margin-bottom: 15px;
            display: block;
            animation: stage-glow 3s ease-in-out infinite;
        }

        @keyframes stage-glow {
            0%, 100% { text-shadow: 0 0 10px rgba(255,255,255,0.5); }
            50% { text-shadow: 0 0 20px rgba(255,255,255,0.8); }
        }

        .vs-comparison {
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
            padding: 50px;
            border-radius: 25px;
            margin: 40px 0;
        }

        .comparison-arena {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 40px;
            margin: 40px 0;
            align-items: center;
        }

        .material-fighter {
            background: white;
            padding: 35px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .material-fighter:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .fighter-avatar {
            width: 120px;
            height: 120px;
            margin: 0 auto 25px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3em;
            position: relative;
        }

        .silicon-avatar {
            background: linear-gradient(145deg, #636e72, #2d3436);
            animation: silicon-pulse 3s ease-in-out infinite;
        }

        .sic-avatar {
            background: linear-gradient(145deg, #6c5ce7, #a29bfe);
            animation: sic-sparkle 3s ease-in-out infinite;
        }

        @keyframes silicon-pulse {
            0%, 100% { box-shadow: 0 0 20px rgba(99, 110, 114, 0.5); }
            50% { box-shadow: 0 0 40px rgba(99, 110, 114, 0.8); }
        }

        @keyframes sic-sparkle {
            0%, 100% { box-shadow: 0 0 20px rgba(108, 92, 231, 0.5); }
            50% { box-shadow: 0 0 40px rgba(108, 92, 231, 0.8); }
        }

        .vs-lightning {
            font-size: 5em;
            color: #feca57;
            animation: lightning-strike 2s ease-in-out infinite;
            text-shadow: 0 0 20px rgba(254, 202, 87, 0.8);
        }

        @keyframes lightning-strike {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.3) rotate(5deg); }
        }

        .spec-comparison {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin: 30px 0;
        }

        .spec-item {
            text-align: center;
            padding: 20px;
            background: rgba(255,255,255,0.7);
            border-radius: 15px;
        }

        .spec-name {
            font-size: 0.9em;
            color: #666;
            margin-bottom: 10px;
        }

        .spec-bar {
            height: 100px;
            background: #e9ecef;
            border-radius: 10px;
            position: relative;
            overflow: hidden;
            margin: 10px 0;
        }

        .spec-fill {
            position: absolute;
            bottom: 0;
            width: 100%;
            border-radius: 10px;
            transition: height 2s ease;
            display: flex;
            align-items: end;
            justify-content: center;
            color: white;
            font-weight: bold;
            padding: 5px 0;
        }

        .silicon-fill { background: linear-gradient(180deg, #636e72 0%, #2d3436 100%); }
        .sic-fill { background: linear-gradient(180deg, #6c5ce7 0%, #a29bfe 100%); }

        .temperature-lab {
            background: linear-gradient(135deg, #ff7675 0%, #d63031 100%);
            padding: 50px;
            border-radius: 25px;
            margin: 40px 0;
            color: white;
            text-align: center;
        }

        .thermometer-setup {
            display: flex;
            justify-content: space-around;
            margin: 40px 0;
            flex-wrap: wrap;
            gap: 30px;
        }

        .thermometer {
            text-align: center;
            min-width: 200px;
        }

        .thermo-display {
            width: 120px;
            height: 300px;
            margin: 0 auto 20px;
            background: linear-gradient(180deg, #ffffff 0%, #e9ecef 100%);
            border-radius: 60px;
            position: relative;
            border: 5px solid #fff;
        }

        .thermo-mercury {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            border-radius: 20px;
            transition: height 3s ease;
        }

        .silicon-mercury { background: linear-gradient(180deg, #ff6b6b 0%, #ee5a52 100%); }
        .sic-mercury { background: linear-gradient(180deg, #74b9ff 0%, #0984e3 100%); }

        .thermo-bulb {
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: 5px solid #fff;
        }

        .silicon-bulb { background: #ff6b6b; }
        .sic-bulb { background: #74b9ff; }

        .temp-display {
            font-size: 2em;
            font-weight: bold;
            margin: 10px 0;
        }

        .efficiency-simulator {
            background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
            padding: 50px;
            border-radius: 25px;
            margin: 40px 0;
            color: white;
            text-align: center;
        }

        .efficiency-demo {
            display: flex;
            justify-content: space-around;
            margin: 40px 0;
            flex-wrap: wrap;
            gap: 30px;
        }

        .efficiency-meter {
            text-align: center;
            min-width: 200px;
        }

        .circular-progress {
            width: 150px;
            height: 150px;
            margin: 0 auto 20px;
            position: relative;
        }

        .progress-ring {
            width: 150px;
            height: 150px;
            transform: rotate(-90deg);
        }

        .progress-circle {
            fill: none;
            stroke-width: 10;
            stroke-linecap: round;
        }

        .progress-bg {
            stroke: rgba(255,255,255,0.2);
        }

        .progress-bar {
            stroke-dasharray: 377;
            stroke-dashoffset: 377;
            transition: stroke-dashoffset 2s ease;
        }

        .silicon-progress { stroke: #636e72; }
        .sic-progress { stroke: #6c5ce7; }

        .progress-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 1.5em;
            font-weight: bold;
        }

        .real-world-apps {
            background: #f8f9fa;
            padding: 50px;
            border-radius: 25px;
            margin: 40px 0;
        }

        .apps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }

        .app-card {
            background: white;
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .app-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }

        .app-icon {
            font-size: 3.5em;
            margin-bottom: 20px;
            display: block;
        }

        .improvement-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-top: 20px;
        }

        .stat-item {
            background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
            color: white;
            padding: 15px;
            border-radius: 10px;
            text-align: center;
        }

        .stat-number {
            font-size: 1.5em;
            font-weight: bold;
            display: block;
        }

        .future-vision {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 50px;
            border-radius: 25px;
            margin: 40px 0;
            color: white;
            text-align: center;
        }

        .vision-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }

        .vision-card {
            background: rgba(255,255,255,0.1);
            padding: 30px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
        }

        .vision-card:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.2);
        }

        .vision-icon {
            font-size: 3.5em;
            margin-bottom: 15px;
            display: block;
        }

        .dicio-innovation {
            background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
            padding: 50px;
            border-radius: 25px;
            margin: 40px 0;
            color: white;
            text-align: center;
        }

        .innovation-showcase {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }

        .innovation-card {
            background: rgba(255,255,255,0.1);
            padding: 30px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
        }

        .innovation-card:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.2);
        }

        .innovation-icon {
            font-size: 3.5em;
            margin-bottom: 15px;
            display: block;
        }

        .interactive-btn {
            padding: 15px 30px;
            border: none;
            border-radius: 25px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1em;
            font-weight: bold;
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
            margin: 10px;
        }

        .interactive-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
        }

        .demo-result {
            background: rgba(255,255,255,0.9);
            padding: 30px;
            border-radius: 20px;
            margin-top: 25px;
            min-height: 100px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-size: 1.2em;
            text-align: center;
            border: 3px solid #667eea;
            color: #333;
        }

        .quiz-lab {
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
            padding: 50px;
            border-radius: 25px;
            margin: 40px 0;
        }

        .quiz-progress {
            background: rgba(255,255,255,0.3);
            height: 12px;
            border-radius: 6px;
            margin: 25px 0;
            overflow: hidden;
        }

        .quiz-progress-fill {
            background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
            height: 100%;
            transition: width 0.5s ease;
        }

        .next-chapter {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 50px;
            border-radius: 25px;
            text-align: center;
            margin-top: 50px;
        }

        .loading {
            display: inline-block;
            width: 30px;
            height: 30px;
            border: 4px solid rgba(255,255,255,.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: loading-spin 1s ease-in-out infinite;
        }

        @keyframes loading-spin {
            to { transform: rotate(360deg); }
        }

        .highlight-fact {
            background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
            padding: 30px;
            border-radius: 20px;
            margin: 30px 0;
            border-left: 6px solid #e17055;
            color: #2d3436;
        }

        .highlight-fact h3 {
            color: #2d3436;
            margin-bottom: 15px;
        }

        @media (max-width: 768px) {
            .container {
                margin: 0;
                border-radius: 0;
            }
            
            .content {
                padding: 30px 20px;
            }
            
            .comparison-arena {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .vs-lightning {
                font-size: 3em;
            }
            
            .thermometer-setup {
                flex-direction: column;
                align-items: center;
            }
            
            .efficiency-demo {
                flex-direction: column;
                align-items: center;
            }
            
            .evolution-timeline {
                flex-direction: column;
                gap: 20px;
            }
            
            .evolution-timeline::before {
                display: none;
            }
        }

        .winner-effect {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 2em;
            animation: crown-bounce 2s ease-in-out infinite;
        }

        @keyframes crown-bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(-10px); }
        }

        .molecular-structure {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 30px 0;
            flex-wrap: wrap;
            gap: 20px;
        }

        .molecule {
            text-align: center;
            padding: 20px;
            background: rgba(255,255,255,0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        .atom {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin: 0 auto 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5em;
            font-weight: bold;
            color: white;
        }

        .silicon-atom { background: linear-gradient(145deg, #636e72, #2d3436); }
        .carbon-atom { background: linear-gradient(145deg, #2d3436, #636e72); }

        .bond {
            font-size: 2em;
            color: #feca57;
            margin: 0 10px;
        }
    &lt;/style&gt;
&lt;/div&gt;
&lt;div class=&quot;container&quot;&gt;&lt;header class=&quot;header&quot;&gt;
&lt;h1&gt;  실리콘의 한계를 넘다! 실리콘카바이드의 등장&lt;/h1&gt;
&lt;p class=&quot;subtitle&quot; data-ke-size=&quot;size16&quot;&gt;반도체 소재 혁명의 시작!&lt;/p&gt;
&lt;/header&gt;&lt;nav class=&quot;series-nav&quot;&gt;&lt;span&gt;  AI 반도체 시리즈 #12 | 이전: 전력반도체 두 형제 대결 | 다음: 친환경 AI의 시대&lt;/span&gt;&lt;/nav&gt;&lt;main class=&quot;content&quot;&gt;
&lt;section class=&quot;revolutionary-intro&quot;&gt;
&lt;h2 data-ke-size=&quot;size26&quot;&gt;  반도체 역사를 바꾼 혁명적 발견!&lt;/h2&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;70년 동안 반도체의 왕좌를 지켜온 &lt;b&gt;실리콘&lt;/b&gt;! 하지만 이제 더 강력한 도전자가 나타났어요! 바로 &lt;b&gt;실리콘카바이드(SiC)&lt;/b&gt;라는 신소재인데, 이 놈이 얼마나 대단한지 아세요? 기존 실리콘보다 &lt;b&gt;10배 강하고, 3배 빠르며, 200&amp;deg;C 고온에서도 끄떡없어요!&lt;/b&gt; 마치 슈퍼히어로가 나타난 것 같죠? 오늘은 이 혁명적 소재의 놀라운 비밀을 파헤쳐보겠습니다!  &lt;/p&gt;
&lt;/section&gt;
&lt;div class=&quot;highlight-fact&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  믿기 힘든 SiC 사실!&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;SiC는 &lt;b&gt;다이아몬드 다음으로 단단한 소재&lt;/b&gt;예요! 그래서 예전에는 사포나 연마재로만 쓰였는데, 이제는 반도체의 미래를 바꾸고 있어요. 더 놀라운 건, SiC 반도체로 바꾸면 &lt;b&gt;전기차 주행거리가 10% 늘어나고&lt;/b&gt;, 스마트폰 충전기는 &lt;b&gt;절반 크기&lt;/b&gt;로 만들 수 있다는 거예요!&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;material-evolution&quot;&gt;
&lt;h3 style=&quot;text-align: center; margin-bottom: 30px;&quot; data-ke-size=&quot;size23&quot;&gt;  반도체 소재의 진화 역사&lt;/h3&gt;
&lt;div class=&quot;molecular-structure&quot;&gt;
&lt;div class=&quot;molecule&quot;&gt;
&lt;div class=&quot;atom silicon-atom&quot;&gt;Si&lt;/div&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;실리콘&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;bond&quot;&gt;+&lt;/div&gt;
&lt;div class=&quot;molecule&quot;&gt;
&lt;div class=&quot;atom carbon-atom&quot;&gt;C&lt;/div&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;탄소&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;bond&quot;&gt;=&lt;/div&gt;
&lt;div class=&quot;molecule&quot;&gt;
&lt;div class=&quot;atom sic-avatar&quot; style=&quot;width: 80px; height: 80px; font-size: 1.2em;&quot;&gt;SiC&lt;/div&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;실리콘카바이드&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;evolution-timeline&quot;&gt;
&lt;div class=&quot;evolution-stage&quot;&gt;&lt;span class=&quot;stage-icon&quot;&gt; &lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;1세대 (1950년대)&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;순수 실리콘&lt;/p&gt;
&lt;small&gt;트랜지스터의 시작&lt;/small&gt;&lt;/div&gt;
&lt;div class=&quot;evolution-stage&quot;&gt;&lt;span class=&quot;stage-icon&quot;&gt;⚡&lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;2세대 (1980년대)&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;고순도 실리콘&lt;/p&gt;
&lt;small&gt;IC 집적회로 혁명&lt;/small&gt;&lt;/div&gt;
&lt;div class=&quot;evolution-stage&quot;&gt;&lt;span class=&quot;stage-icon&quot;&gt; &lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;3세대 (2010년대)&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;실리콘카바이드&lt;/p&gt;
&lt;small&gt;와이드밴드갭 시대&lt;/small&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&quot;evolutionResult&quot; class=&quot;demo-result&quot;&gt;시대별 단계를 클릭해서 반도체 진화 과정을 확인해보세요!&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;vs-comparison&quot;&gt;
&lt;h3 style=&quot;text-align: center; margin-bottom: 30px;&quot; data-ke-size=&quot;size23&quot;&gt;⚔️ 최종 보스전: 실리콘 vs 실리콘카바이드&lt;/h3&gt;
&lt;div class=&quot;comparison-arena&quot;&gt;
&lt;div class=&quot;material-fighter&quot;&gt;
&lt;div class=&quot;fighter-avatar silicon-avatar&quot;&gt;Si&lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;실리콘 (Si)&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&lt;b&gt;&quot;70년의 왕자&quot;&lt;/b&gt;&lt;/p&gt;
&lt;small&gt;&amp;bull; 저렴하고 안정적&lt;br /&gt;&amp;bull; 70년간 왕좌 유지&lt;br /&gt;&amp;bull; 하지만 한계 도달&lt;/small&gt;&lt;/div&gt;
&lt;div class=&quot;vs-lightning&quot;&gt;⚡VS⚡&lt;/div&gt;
&lt;div class=&quot;material-fighter&quot;&gt;
&lt;div class=&quot;fighter-avatar sic-avatar&quot;&gt;SiC&lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;실리콘카바이드 (SiC)&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&lt;b&gt;&quot;차세대 혁명가&quot;&lt;/b&gt;&lt;/p&gt;
&lt;small&gt;&amp;bull; 10배 강한 내구성&lt;br /&gt;&amp;bull; 3배 빠른 스위칭&lt;br /&gt;&amp;bull; 200&amp;deg;C 고온 동작&lt;/small&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;spec-comparison&quot;&gt;
&lt;div class=&quot;spec-item&quot;&gt;
&lt;div class=&quot;spec-name&quot;&gt;최대 온도&lt;/div&gt;
&lt;div class=&quot;spec-bar&quot;&gt;
&lt;div id=&quot;tempSi&quot; class=&quot;spec-fill silicon-fill&quot; style=&quot;height: 0%;&quot;&gt;150&amp;deg;C&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;spec-bar&quot;&gt;
&lt;div id=&quot;tempSiC&quot; class=&quot;spec-fill sic-fill&quot; style=&quot;height: 0%;&quot;&gt;200&amp;deg;C&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;spec-item&quot;&gt;
&lt;div class=&quot;spec-name&quot;&gt;최대 전압&lt;/div&gt;
&lt;div class=&quot;spec-bar&quot;&gt;
&lt;div id=&quot;voltSi&quot; class=&quot;spec-fill silicon-fill&quot; style=&quot;height: 0%;&quot;&gt;600V&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;spec-bar&quot;&gt;
&lt;div id=&quot;voltSiC&quot; class=&quot;spec-fill sic-fill&quot; style=&quot;height: 0%;&quot;&gt;1700V&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;spec-item&quot;&gt;
&lt;div class=&quot;spec-name&quot;&gt;스위칭 속도&lt;/div&gt;
&lt;div class=&quot;spec-bar&quot;&gt;
&lt;div id=&quot;speedSi&quot; class=&quot;spec-fill silicon-fill&quot; style=&quot;height: 0%;&quot;&gt;보통&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;spec-bar&quot;&gt;
&lt;div id=&quot;speedSiC&quot; class=&quot;spec-fill sic-fill&quot; style=&quot;height: 0%;&quot;&gt;3배 빠름&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;spec-item&quot;&gt;
&lt;div class=&quot;spec-name&quot;&gt;효율성&lt;/div&gt;
&lt;div class=&quot;spec-bar&quot;&gt;
&lt;div id=&quot;effSi&quot; class=&quot;spec-fill silicon-fill&quot; style=&quot;height: 0%;&quot;&gt;85%&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;spec-bar&quot;&gt;
&lt;div id=&quot;effSiC&quot; class=&quot;spec-fill sic-fill&quot; style=&quot;height: 0%;&quot;&gt;98%&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;button class=&quot;interactive-btn&quot;&gt;⚡ 성능 비교 시작!&lt;/button&gt;
&lt;div id=&quot;comparisonResult&quot; class=&quot;demo-result&quot;&gt;성능 비교 버튼을 클릭해보세요!&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;temperature-lab&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  극한 온도 실험실&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;SiC가 얼마나 열에 강한지 직접 실험해보세요!&lt;/p&gt;
&lt;div class=&quot;thermometer-setup&quot;&gt;
&lt;div class=&quot;thermometer&quot;&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;실리콘 (Si)&lt;/h4&gt;
&lt;div class=&quot;thermo-display&quot;&gt;
&lt;div id=&quot;siliconMercury&quot; class=&quot;thermo-mercury silicon-mercury&quot; style=&quot;height: 50px;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;thermo-bulb silicon-bulb&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&quot;siliconTemp&quot; class=&quot;temp-display&quot;&gt;25&amp;deg;C&lt;/div&gt;
&lt;p id=&quot;siliconStatus&quot; data-ke-size=&quot;size16&quot;&gt;정상 동작&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;thermometer&quot;&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;실리콘카바이드 (SiC)&lt;/h4&gt;
&lt;div class=&quot;thermo-display&quot;&gt;
&lt;div id=&quot;sicMercury&quot; class=&quot;thermo-mercury sic-mercury&quot; style=&quot;height: 50px;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;thermo-bulb sic-bulb&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&quot;sicTemp&quot; class=&quot;temp-display&quot;&gt;25&amp;deg;C&lt;/div&gt;
&lt;p id=&quot;sicStatus&quot; data-ke-size=&quot;size16&quot;&gt;정상 동작&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;&lt;button class=&quot;interactive-btn&quot;&gt;  100&amp;deg;C 가열&lt;/button&gt; &lt;button class=&quot;interactive-btn&quot;&gt;  150&amp;deg;C 가열&lt;/button&gt; &lt;button class=&quot;interactive-btn&quot;&gt;  200&amp;deg;C 가열&lt;/button&gt; &lt;button class=&quot;interactive-btn&quot;&gt;❄️ 온도 리셋&lt;/button&gt;&lt;/div&gt;
&lt;div id=&quot;tempResult&quot; class=&quot;demo-result&quot;&gt;온도 버튼을 클릭해서 극한 실험을 시작하세요!&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;efficiency-simulator&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  효율성 시뮬레이터&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;실제 전력 손실과 효율을 비교해보세요!&lt;/p&gt;
&lt;div class=&quot;efficiency-demo&quot;&gt;
&lt;div class=&quot;efficiency-meter&quot;&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;실리콘 (Si)&lt;/h4&gt;
&lt;div class=&quot;circular-progress&quot;&gt;
&lt;div id=&quot;siliconEfficiency&quot; class=&quot;progress-text&quot;&gt;85%&lt;/div&gt;
&lt;/div&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;전력 손실: 15%&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;efficiency-meter&quot;&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;실리콘카바이드 (SiC)&lt;/h4&gt;
&lt;div class=&quot;circular-progress&quot;&gt;
&lt;div id=&quot;sicEfficiencyText&quot; class=&quot;progress-text&quot;&gt;98%&lt;/div&gt;
&lt;/div&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;전력 손실: 2%&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;button class=&quot;interactive-btn&quot;&gt;⚡ 효율성 테스트 시작&lt;/button&gt;
&lt;div id=&quot;efficiencyResult&quot; class=&quot;demo-result&quot;&gt;SiC가 얼마나 효율적인지 확인해보세요!&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;real-world-apps&quot;&gt;
&lt;h3 style=&quot;text-align: center; margin-bottom: 30px;&quot; data-ke-size=&quot;size23&quot;&gt;  SiC가 바꾸는 우리 생활&lt;/h3&gt;
&lt;div class=&quot;apps-grid&quot;&gt;
&lt;div class=&quot;app-card&quot;&gt;&lt;span class=&quot;app-icon&quot;&gt; &lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;전기차&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;SiC 인버터로 주행거리 증가&lt;/p&gt;
&lt;div class=&quot;improvement-stats&quot;&gt;
&lt;div class=&quot;stat-item&quot;&gt;&lt;span class=&quot;stat-number&quot;&gt;+10%&lt;/span&gt; &lt;span&gt;주행거리&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;stat-item&quot;&gt;&lt;span class=&quot;stat-number&quot;&gt;-30%&lt;/span&gt; &lt;span&gt;인버터 크기&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;app-card&quot;&gt;&lt;span class=&quot;app-icon&quot;&gt; &lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;고속 충전기&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;초소형 대용량 충전기 실현&lt;/p&gt;
&lt;div class=&quot;improvement-stats&quot;&gt;
&lt;div class=&quot;stat-item&quot;&gt;&lt;span class=&quot;stat-number&quot;&gt;-50%&lt;/span&gt; &lt;span&gt;크기&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;stat-item&quot;&gt;&lt;span class=&quot;stat-number&quot;&gt;+40%&lt;/span&gt; &lt;span&gt;충전 속도&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;app-card&quot;&gt;&lt;span class=&quot;app-icon&quot;&gt; &lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;데이터센터&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;전력 효율 혁신&lt;/p&gt;
&lt;div class=&quot;improvement-stats&quot;&gt;
&lt;div class=&quot;stat-item&quot;&gt;&lt;span class=&quot;stat-number&quot;&gt;-40%&lt;/span&gt; &lt;span&gt;전력 손실&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;stat-item&quot;&gt;&lt;span class=&quot;stat-number&quot;&gt;-50%&lt;/span&gt; &lt;span&gt;냉각 비용&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;app-card&quot;&gt;&lt;span class=&quot;app-icon&quot;&gt;☀️&lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;태양광 발전&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;고효율 인버터&lt;/p&gt;
&lt;div class=&quot;improvement-stats&quot;&gt;
&lt;div class=&quot;stat-item&quot;&gt;&lt;span class=&quot;stat-number&quot;&gt;+15%&lt;/span&gt; &lt;span&gt;발전 효율&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;stat-item&quot;&gt;&lt;span class=&quot;stat-number&quot;&gt;+20년&lt;/span&gt; &lt;span&gt;수명&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&quot;appResult&quot; class=&quot;demo-result&quot; style=&quot;background: white; border: 2px solid #ddd; color: #333;&quot;&gt;응용 분야 카드를 클릭해서 SiC의 혁신 효과를 확인해보세요!&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;future-vision&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  SiC가 열어갈 미래&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;실리콘카바이드 기술이 완전히 대중화되면 어떤 일이 일어날까요?&lt;/p&gt;
&lt;div class=&quot;vision-cards&quot;&gt;
&lt;div class=&quot;vision-card&quot;&gt;&lt;span class=&quot;vision-icon&quot;&gt; &lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;도심 항공 모빌리티&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;SiC 모터로 더 가볍고 효율적인 플라잉카 실현&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;vision-card&quot;&gt;&lt;span class=&quot;vision-icon&quot;&gt; &lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;완전 전기화 가정&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;모든 가전이 SiC로 전력 효율 극대화&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;vision-card&quot;&gt;&lt;span class=&quot;vision-icon&quot;&gt; &lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;탄소 중립 사회&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;전력 손실 최소화로 친환경 에너지 사회 구현&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;vision-card&quot;&gt;&lt;span class=&quot;vision-icon&quot;&gt; &lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;우주 탐사&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;극한 환경에서도 작동하는 SiC 우주선&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;dicio-innovation&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  dicio: SiC 혁신의 선도자&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;dicio는 SiC 기술의 최전선에서 미래를 만들어가고 있어요!&lt;/p&gt;
&lt;div class=&quot;innovation-showcase&quot;&gt;
&lt;div class=&quot;innovation-card&quot;&gt;&lt;span class=&quot;innovation-icon&quot;&gt; &lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;SiC MOSFET 시리즈&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;1700V 고전압 SiC MOSFET&lt;/p&gt;
&lt;small&gt;&amp;bull; 98% 초고효율&lt;br /&gt;&amp;bull; 200&amp;deg;C 고온 동작&lt;br /&gt;&amp;bull; 차세대 전력변환&lt;/small&gt;&lt;/div&gt;
&lt;div class=&quot;innovation-card&quot;&gt;&lt;span class=&quot;innovation-icon&quot;&gt; &lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;SiC 모듈 기술&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;최적화된 SiC 파워 모듈&lt;/p&gt;
&lt;small&gt;&amp;bull; 올인원 솔루션&lt;br /&gt;&amp;bull; 쉬운 시스템 적용&lt;br /&gt;&amp;bull; 검증된 신뢰성&lt;/small&gt;&lt;/div&gt;
&lt;div class=&quot;innovation-card&quot;&gt;&lt;span class=&quot;innovation-icon&quot;&gt; &lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;친환경 제조&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;지속가능한 SiC 생산&lt;/p&gt;
&lt;small&gt;&amp;bull; 그린 제조 공정&lt;br /&gt;&amp;bull; 탄소 발자국 최소화&lt;br /&gt;&amp;bull; 순환 경제 기여&lt;/small&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;quiz-lab&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  SiC 마스터 실험 퀴즈!&lt;/h3&gt;
&lt;div class=&quot;quiz-progress&quot;&gt;
&lt;div id=&quot;quizProgress&quot; class=&quot;quiz-progress-fill&quot; style=&quot;width: 0%;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&quot;quizContainer&quot;&gt;
&lt;p id=&quot;quizQuestion&quot; data-ke-size=&quot;size16&quot;&gt;SiC의 가장 큰 장점은 무엇일까요?&lt;/p&gt;
&lt;div style=&quot;display: flex; justify-content: center; gap: 15px; margin: 20px 0; flex-wrap: wrap;&quot;&gt;&lt;button class=&quot;interactive-btn&quot;&gt;고온 내구성&lt;/button&gt; &lt;button class=&quot;interactive-btn&quot;&gt;저렴한 가격&lt;/button&gt; &lt;button class=&quot;interactive-btn&quot;&gt;예쁜 색깔&lt;/button&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&quot;quizResult&quot; class=&quot;demo-result&quot;&gt;정답을 선택해보세요!&lt;/div&gt;
&lt;/div&gt;
&lt;section class=&quot;next-chapter&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  다음 편 예고&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&lt;b&gt;&quot;AI도 친환경으로! 에너지 효율이 답이다&quot;&lt;/b&gt;&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;SiC 기술로 얼마나 많은 에너지를 절약할 수 있을까요? AI 데이터센터가 친환경으로 변화하는 과정과 지구를 구하는 전력반도체 기술의 놀라운 이야기를 들려드릴게요! 기술이 환경을 구하는 감동 스토리가 시작됩니다!  &lt;/p&gt;
&lt;/section&gt;
&lt;/main&gt;&lt;/div&gt;
&lt;script&gt;
        let currentQuiz = 0;
        let quizScore = 0;
        
        const quizData = [
            {
                question: &quot;SiC의 가장 큰 장점은 무엇일까요?&quot;,
                answers: [&quot;고온 내구성&quot;, &quot;저렴한 가격&quot;, &quot;예쁜 색깔&quot;],
                correct: &quot;고온 내구성&quot;
            },
            {
                question: &quot;SiC는 최대 몇 도까지 견딜 수 있을까요?&quot;,
                answers: [&quot;200°C&quot;, &quot;100°C&quot;, &quot;300°C&quot;],
                correct: &quot;200°C&quot;
            },
            {
                question: &quot;SiC 전력반도체의 효율은?&quot;,
                answers: [&quot;98%&quot;, &quot;85%&quot;, &quot;75%&quot;],
                correct: &quot;98%&quot;
            }
        ];

        // 진화 단계 설명
        function showEvolution(generation) {
            const result = document.getElementById('evolutionResult');
            let info;
            
            switch(generation) {
                case 'gen1':
                    info = `
                          &lt;strong&gt;1세대 순수 실리콘 (1950년대):&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
                          &lt;strong&gt;특징:&lt;/strong&gt; 모래에서 추출한 순수 실리콘&lt;br&gt;
                          &lt;strong&gt;혁신:&lt;/strong&gt; 최초의 트랜지스터 상용화&lt;br&gt;
                          &lt;strong&gt;한계:&lt;/strong&gt; 낮은 효율, 열에 약함&lt;br&gt;
                          &lt;strong&gt;용도:&lt;/strong&gt; 간단한 스위치, 증폭기&lt;br&gt;&lt;br&gt;
                          &quot;모든 것의 시작이었어요!&quot;
                    `;
                    break;
                case 'gen2':
                    info = `
                        ⚡ &lt;strong&gt;2세대 고순도 실리콘 (1980년대):&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
                          &lt;strong&gt;특징:&lt;/strong&gt; 99.999999999% 순도&lt;br&gt;
                          &lt;strong&gt;혁신:&lt;/strong&gt; 집적회로(IC) 대량생산&lt;br&gt;
                          &lt;strong&gt;성과:&lt;/strong&gt; 컴퓨터와 인터넷 혁명&lt;br&gt;
                          &lt;strong&gt;용도:&lt;/strong&gt; CPU, 메모리, 마이크로프로세서&lt;br&gt;&lt;br&gt;
                          &quot;디지털 시대를 열었어요!&quot;
                    `;
                    break;
                case 'gen3':
                    info = `
                          &lt;strong&gt;3세대 실리콘카바이드 (2010년대):&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
                          &lt;strong&gt;특징:&lt;/strong&gt; 와이드밴드갭 반도체&lt;br&gt;
                          &lt;strong&gt;혁신:&lt;/strong&gt; 고온, 고전압, 고효율&lt;br&gt;
                          &lt;strong&gt;성과:&lt;/strong&gt; 전력 효율 40% 향상&lt;br&gt;
                          &lt;strong&gt;용도:&lt;/strong&gt; 전기차, 5G, 데이터센터&lt;br&gt;&lt;br&gt;
                          &quot;미래를 바꾸고 있어요!&quot;
                    `;
                    break;
            }
            result.innerHTML = info;
        }

        // 소재 선택
        function selectMaterial(material) {
            const result = document.getElementById('comparisonResult');
            
            if (material === 'silicon') {
                result.innerHTML = `
                      &lt;strong&gt;실리콘 (Si) 선택!&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
                      &lt;strong&gt;장점:&lt;/strong&gt;&lt;br&gt;
                    • 70년간 검증된 안정성&lt;br&gt;
                    • 저렴한 제조 비용&lt;br&gt;
                    • 풍부한 기술 인력&lt;br&gt;&lt;br&gt;
                      &lt;strong&gt;한계:&lt;/strong&gt;&lt;br&gt;
                    • 150°C 이상에서 성능 저하&lt;br&gt;
                    • 전력 손실 15%&lt;br&gt;
                    • 고전압 처리 한계&lt;br&gt;&lt;br&gt;
                      &lt;strong&gt;한마디:&lt;/strong&gt; &quot;오래된 왕의 위엄!&quot;
                `;
            } else {
                result.innerHTML = `
                      &lt;strong&gt;실리콘카바이드 (SiC) 선택!&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
                      &lt;strong&gt;장점:&lt;/strong&gt;&lt;br&gt;
                    • 200°C 고온에서도 안정&lt;br&gt;
                    • 전력 손실 2% (13배 개선!)&lt;br&gt;
                    • 1700V 고전압 처리&lt;br&gt;
                    • 3배 빠른 스위칭&lt;br&gt;&lt;br&gt;
                      &lt;strong&gt;단점:&lt;/strong&gt;&lt;br&gt;
                    • 높은 제조 비용&lt;br&gt;
                    • 복잡한 제조 공정&lt;br&gt;&lt;br&gt;
                      &lt;strong&gt;한마디:&lt;/strong&gt; &quot;미래의 새로운 왕!&quot;
                `;
            }
        }

        // 성능 비교 시작
        function startComparison() {
            const result = document.getElementById('comparisonResult');
            result.innerHTML = '&lt;div class=&quot;loading&quot;&gt;&lt;/div&gt; 성능 분석 중...';
            
            // 스펙 바 애니메이션
            setTimeout(() =&gt; {
                document.getElementById('tempSi').style.height = '60%';
                document.getElementById('tempSiC').style.height = '80%';
                document.getElementById('voltSi').style.height = '35%';
                document.getElementById('voltSiC').style.height = '100%';
                document.getElementById('speedSi').style.height = '50%';
                document.getElementById('speedSiC').style.height = '100%';
                document.getElementById('effSi').style.height = '85%';
                document.getElementById('effSiC').style.height = '98%';
            }, 1000);
            
            setTimeout(() =&gt; {
                result.innerHTML = `
                      &lt;strong&gt;종합 비교 결과:&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
                      &lt;strong&gt;SiC 압승!&lt;/strong&gt;&lt;br&gt;
                    • 온도: 200°C vs 150°C&lt;br&gt;
                    • 전압: 1700V vs 600V&lt;br&gt;
                    • 속도: 3배 차이&lt;br&gt;
                    • 효율: 98% vs 85%&lt;br&gt;&lt;br&gt;
                      &lt;strong&gt;결론:&lt;/strong&gt; SiC가 모든 면에서 우수!
                `;
                
                // 승리 이펙트
                const crown = document.createElement('div');
                crown.className = 'winner-effect';
                crown.textContent = ' ';
                document.querySelector('.sic-avatar').parentElement.style.position = 'relative';
                document.querySelector('.sic-avatar').parentElement.appendChild(crown);
            }, 3000);
        }

        // 온도 테스트
        function heatTest(temperature) {
            const result = document.getElementById('tempResult');
            const siliconMercury = document.getElementById('siliconMercury');
            const sicMercury = document.getElementById('sicMercury');
            const siliconTemp = document.getElementById('siliconTemp');
            const sicTemp = document.getElementById('sicTemp');
            const siliconStatus = document.getElementById('siliconStatus');
            const sicStatus = document.getElementById('sicStatus');
            
            result.innerHTML = '&lt;div class=&quot;loading&quot;&gt;&lt;/div&gt; 가열 실험 진행 중...';
            
            // 온도 상승 애니메이션
            setTimeout(() =&gt; {
                const mercuryHeight = Math.min(temperature * 1.2, 240);
                siliconMercury.style.height = mercuryHeight + 'px';
                sicMercury.style.height = mercuryHeight + 'px';
                
                animateTemperature('siliconTemp', temperature);
                animateTemperature('sicTemp', temperature);
                
                // 상태 업데이트
                if (temperature &gt;= 150) {
                    siliconStatus.textContent = '❌ 성능 저하!';
                    siliconStatus.style.color = '#ff6b6b';
                } else {
                    siliconStatus.textContent = '✅ 정상 동작';
                    siliconStatus.style.color = '#00b894';
                }
                
                if (temperature &gt;= 200) {
                    sicStatus.textContent = '⚠️ 한계 근접';
                    sicStatus.style.color = '#fdcb6e';
                } else {
                    sicStatus.textContent = '✅ 정상 동작';
                    sicStatus.style.color = '#00b894';
                }
            }, 1000);
            
            setTimeout(() =&gt; {
                let resultText;
                if (temperature &lt;= 100) {
                    resultText = `
                         ️ &lt;strong&gt;${temperature}°C 테스트 결과:&lt;/strong&gt;&lt;br&gt;
                        ✅ 실리콘: 정상 동작&lt;br&gt;
                        ✅ SiC: 정상 동작&lt;br&gt;&lt;br&gt;
                          둘 다 아직 여유롭네요!
                    `;
                } else if (temperature &lt;= 150) {
                    resultText = `
                         ️ &lt;strong&gt;${temperature}°C 테스트 결과:&lt;/strong&gt;&lt;br&gt;
                        ⚠️ 실리콘: 성능 저하 시작&lt;br&gt;
                        ✅ SiC: 여전히 정상&lt;br&gt;&lt;br&gt;
                          SiC의 우수성이 드러나기 시작!
                    `;
                } else {
                    resultText = `
                         ️ &lt;strong&gt;${temperature}°C 테스트 결과:&lt;/strong&gt;&lt;br&gt;
                        ❌ 실리콘: 심각한 성능 저하&lt;br&gt;
                        ✅ SiC: 정상 동작 유지&lt;br&gt;&lt;br&gt;
                          SiC만이 극한 환경을 견뎌냄!
                    `;
                }
                result.innerHTML = resultText;
            }, 3000);
        }

        // 온도 리셋
        function resetTemperature() {
            const elements = ['siliconMercury', 'sicMercury'];
            elements.forEach(id =&gt; {
                document.getElementById(id).style.height = '50px';
            });
            
            document.getElementById('siliconTemp').textContent = '25°C';
            document.getElementById('sicTemp').textContent = '25°C';
            document.getElementById('siliconStatus').textContent = '정상 동작';
            document.getElementById('sicStatus').textContent = '정상 동작';
            document.getElementById('siliconStatus').style.color = '#00b894';
            document.getElementById('sicStatus').style.color = '#00b894';
            
            document.getElementById('tempResult').innerHTML = '온도가 초기화되었습니다!';
        }

        // 효율성 테스트
        function startEfficiencyTest() {
            const result = document.getElementById('efficiencyResult');
            result.innerHTML = '&lt;div class=&quot;loading&quot;&gt;&lt;/div&gt; 효율성 측정 중...';
            
            // 원형 프로그레스 바 애니메이션
            setTimeout(() =&gt; {
                const siliconProgress = document.getElementById('siliconProgress');
                const sicProgress = document.getElementById('sicProgress');
                
                // 85% = 377 * 0.15 = 56.55
                siliconProgress.style.strokeDashoffset = '56.55';
                // 98% = 377 * 0.02 = 7.54
                sicProgress.style.strokeDashoffset = '7.54';
            }, 1000);
            
            setTimeout(() =&gt; {
                result.innerHTML = `
                      &lt;strong&gt;효율성 테스트 결과:&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
                      실리콘: 85% 효율 (15% 손실)&lt;br&gt;
                      SiC: 98% 효율 (2% 손실)&lt;br&gt;&lt;br&gt;
                      &lt;strong&gt;개선 효과:&lt;/strong&gt;&lt;br&gt;
                    • 전력 손실 87% 감소!&lt;br&gt;
                    • 연간 전기요금 수백만원 절약&lt;br&gt;
                    • CO₂ 배출 대폭 감소
                `;
            }, 3000);
        }

        // 응용 분야 설명
        function showApplication(app) {
            const result = document.getElementById('appResult');
            let explanation;
            
            switch(app) {
                case 'ev':
                    explanation = `
                          &lt;strong&gt;전기차에서의 SiC 혁신:&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
                          &lt;strong&gt;주요 개선 사항:&lt;/strong&gt;&lt;br&gt;
                        • 인버터 효율 98% 달성&lt;br&gt;
                        • 모터 제어 정밀도 향상&lt;br&gt;
                        • 충전 시간 30% 단축&lt;br&gt;
                        • 인버터 크기/무게 30% 감소&lt;br&gt;&lt;br&gt;
                          &lt;strong&gt;결과:&lt;/strong&gt; 동일 배터리로 주행거리 10% 증가!
                    `;
                    break;
                case 'charger':
                    explanation = `
                          &lt;strong&gt;고속 충전기의 SiC 혁신:&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
                        ⚡ &lt;strong&gt;주요 개선 사항:&lt;/strong&gt;&lt;br&gt;
                        • 고주파 스위칭으로 변압기 소형화&lt;br&gt;
                        • 발열 50% 감소로 냉각팬 불필요&lt;br&gt;
                        • 100W 충전기가 기존 30W 크기&lt;br&gt;
                        • 충전 효율 95% 이상&lt;br&gt;&lt;br&gt;
                          &lt;strong&gt;결과:&lt;/strong&gt; 노트북 충전기만한 크기로 100W 고속충전!
                    `;
                    break;
                case 'datacenter':
                    explanation = `
                          &lt;strong&gt;데이터센터의 SiC 혁신:&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
                          &lt;strong&gt;주요 개선 사항:&lt;/strong&gt;&lt;br&gt;
                        • 전원 효율 98% 달성&lt;br&gt;
                        • 발열 50% 감소로 냉각비 절약&lt;br&gt;
                        • 전력밀도 3배 향상&lt;br&gt;
                        • 시스템 안정성 크게 향상&lt;br&gt;&lt;br&gt;
                          &lt;strong&gt;결과:&lt;/strong&gt; 연간 전기요금 수십억원 절약!
                    `;
                    break;
                case 'solar':
                    explanation = `
                        ☀️ &lt;strong&gt;태양광 발전의 SiC 혁신:&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
                          &lt;strong&gt;주요 개선 사항:&lt;/strong&gt;&lt;br&gt;
                        • 인버터 효율 98.5% 달성&lt;br&gt;
                        • 고온에서도 안정 동작&lt;br&gt;
                        • 20년 이상 장수명&lt;br&gt;
                        • 시스템 크기 30% 감소&lt;br&gt;&lt;br&gt;
                          &lt;strong&gt;결과:&lt;/strong&gt; 태양광 발전 효율 15% 향상!
                    `;
                    break;
            }
            result.innerHTML = explanation;
        }

        // 퀴즈 시스템
        function answerQuiz(answer, isCorrect) {
            const result = document.getElementById('quizResult');
            const progress = document.getElementById('quizProgress');
            
            if (isCorrect) {
                result.innerHTML = '  정답! ' + answer + '이 맞아요!';
                quizScore++;
            } else {
                result.innerHTML = '❌ 틀렸어요! 정답은 ' + quizData[currentQuiz].correct + '입니다.';
            }
            
            currentQuiz++;
            progress.style.width = (currentQuiz / quizData.length) * 100 + '%';
            
            if (currentQuiz &lt; quizData.length) {
                setTimeout(showNextQuiz, 2000);
            } else {
                setTimeout(() =&gt; {
                    result.innerHTML = `  SiC 마스터 인증 완료! 점수: ${quizScore}/${quizData.length}`;
                }, 2000);
            }
        }

        function showNextQuiz() {
            const question = document.getElementById('quizQuestion');
            const container = document.getElementById('quizContainer');
            
            question.textContent = quizData[currentQuiz].question;
            
            const buttonContainer = container.querySelector('div');
            buttonContainer.innerHTML = '';
            
            quizData[currentQuiz].answers.forEach((answer, index) =&gt; {
                const button = document.createElement('button');
                button.className = 'interactive-btn';
                button.textContent = answer;
                button.onclick = () =&gt; answerQuiz(answer, answer === quizData[currentQuiz].correct);
                buttonContainer.appendChild(button);
            });
            
            document.getElementById('quizResult').textContent = '정답을 선택해보세요!';
        }

        // 온도 애니메이션
        function animateTemperature(elementId, target) {
            const element = document.getElementById(elementId);
            const start = Date.now();
            const duration = 2000;
            const startTemp = 25;
            
            function update() {
                const progress = Math.min((Date.now() - start) / duration, 1);
                const current = Math.floor(startTemp + (target - startTemp) * progress);
                element.textContent = current + '°C';
                
                if (progress &lt; 1) {
                    requestAnimationFrame(update);
                }
            }
            
            update();
        }

        // 페이지 로드 시 초기화
        document.addEventListener('DOMContentLoaded', function() {
            // 첫 번째 진화 단계 자동 표시
            setTimeout(() =&gt; {
                showEvolution('gen1');
            }, 2000);
            
            // SiC 자동 선택
            setTimeout(() =&gt; {
                selectMaterial('sic');
            }, 4000);
        });
    &lt;/script&gt;</description>
      <category>AI반도체</category>
      <category>AI #AI반도체 #반도체 #시스템반도체 #HBM3 #초거대AI #LLM #데이터센터 #전력효율 #전력반도체 #디시오</category>
      <author>디시오</author>
      <guid isPermaLink="true">https://dicio.tistory.com/32</guid>
      <comments>https://dicio.tistory.com/32#entry32comment</comments>
      <pubDate>Fri, 31 Oct 2025 21:46:37 +0900</pubDate>
    </item>
    <item>
      <title>⚔️ 전력반도체 두 형제: IGBT와 MOSFET - AI반도체 11편</title>
      <link>https://dicio.tistory.com/31</link>
      <description>&lt;p data-ke-size=&quot;size16&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;div&gt;
&lt;style&gt;
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
            line-height: 1.8;
            color: #333;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            min-height: 100vh;
        }

        .header {
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
            color: white;
            padding: 60px 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: ' ';
            position: absolute;
            font-size: 25em;
            top: -80px;
            right: -100px;
            opacity: 0.1;
            animation: brothers-dance 6s ease-in-out infinite;
        }

        @keyframes brothers-dance {
            0%, 100% { transform: rotate(-5deg) scale(1); }
            50% { transform: rotate(5deg) scale(1.1); }
        }

        .header h1 {
            font-size: 3.2em;
            margin-bottom: 20px;
            z-index: 1;
            position: relative;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
        }

        .header .subtitle {
            font-size: 1.4em;
            opacity: 0.9;
            z-index: 1;
            position: relative;
        }

        .series-nav {
            background: #f8f9fa;
            padding: 20px 30px;
            border-bottom: 3px solid #dee2e6;
            text-align: center;
        }

        .series-nav span {
            color: #6c757d;
            font-size: 1em;
            font-weight: 500;
        }

        .content {
            padding: 50px 30px;
        }

        .brothers-intro {
            background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
            padding: 50px;
            border-radius: 25px;
            margin-bottom: 50px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .brothers-intro::before {
            content: '⚔️';
            position: absolute;
            font-size: 15em;
            top: -50px;
            left: -60px;
            opacity: 0.2;
            animation: sword-clash 3s ease-in-out infinite;
        }

        @keyframes sword-clash {
            0%, 100% { transform: rotate(-15deg); }
            50% { transform: rotate(15deg); }
        }

        .brothers-intro h2 {
            font-size: 2.8em;
            margin-bottom: 20px;
            z-index: 1;
            position: relative;
        }

        .vs-arena {
            background: #2d3436;
            padding: 50px;
            border-radius: 25px;
            margin: 40px 0;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .arena-lights {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
            animation: spotlight 4s ease-in-out infinite;
        }

        @keyframes spotlight {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.7; }
        }

        .fighters {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 40px;
            margin: 40px 0;
            align-items: center;
            z-index: 1;
            position: relative;
        }

        .fighter-card {
            background: rgba(255,255,255,0.1);
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.2);
        }

        .fighter-card:hover {
            transform: translateY(-15px) scale(1.05);
            background: rgba(255,255,255,0.2);
            box-shadow: 0 25px 50px rgba(0,0,0,0.3);
        }

        .fighter-avatar {
            width: 140px;
            height: 140px;
            margin: 0 auto 25px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4em;
            position: relative;
            animation: fighter-glow 3s ease-in-out infinite;
        }

        .igbt-avatar {
            background: linear-gradient(145deg, #fd79a8, #e84393);
            box-shadow: 0 0 30px rgba(253, 121, 168, 0.5);
        }

        .mosfet-avatar {
            background: linear-gradient(145deg, #74b9ff, #0984e3);
            box-shadow: 0 0 30px rgba(116, 185, 255, 0.5);
        }

        @keyframes fighter-glow {
            0%, 100% { box-shadow: 0 0 30px rgba(253, 121, 168, 0.5); }
            50% { box-shadow: 0 0 50px rgba(253, 121, 168, 0.8); }
        }

        .vs-symbol {
            font-size: 5em;
            color: #feca57;
            animation: vs-explosion 2s ease-in-out infinite;
            text-shadow: 0 0 20px rgba(254, 202, 87, 0.8);
        }

        @keyframes vs-explosion {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.3) rotate(5deg); }
        }

        .stats-comparison {
            display: flex;
            justify-content: space-between;
            margin: 30px 0;
            gap: 15px;
        }

        .stat-category {
            flex: 1;
            text-align: center;
        }

        .stat-name {
            font-size: 0.9em;
            margin-bottom: 10px;
            color: #ddd;
        }

        .stat-bars {
            display: flex;
            justify-content: space-between;
            height: 120px;
            align-items: end;
            gap: 10px;
        }

        .stat-bar {
            flex: 1;
            background: #e9ecef;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
        }

        .stat-fill {
            position: absolute;
            bottom: 0;
            width: 100%;
            border-radius: 8px;
            transition: height 2s ease;
            display: flex;
            align-items: end;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 0.8em;
            padding: 5px 0;
        }

        .igbt-stat { background: linear-gradient(180deg, #fd79a8 0%, #e84393 100%); }
        .mosfet-stat { background: linear-gradient(180deg, #74b9ff 0%, #0984e3 100%); }

        .battle-simulator {
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
            padding: 45px;
            border-radius: 25px;
            margin: 40px 0;
        }

        .simulator-arena {
            background: #2d3436;
            padding: 30px;
            border-radius: 20px;
            margin: 30px 0;
            color: white;
            position: relative;
        }

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

        .scenario-card {
            background: rgba(255,255,255,0.1);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .scenario-card:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-5px);
        }

        .scenario-icon {
            font-size: 3em;
            margin-bottom: 15px;
            display: block;
        }

        .battle-btn {
            padding: 15px 30px;
            border: none;
            border-radius: 25px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1em;
            font-weight: bold;
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
            margin: 10px;
        }

        .battle-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
        }

        .battle-result {
            background: rgba(255,255,255,0.9);
            padding: 30px;
            border-radius: 20px;
            margin-top: 25px;
            min-height: 100px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-size: 1.2em;
            text-align: center;
            border: 3px solid #667eea;
            color: #333;
        }

        .speed-demo {
            background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
            padding: 45px;
            border-radius: 25px;
            margin: 40px 0;
            color: white;
            text-align: center;
        }

        .speed-track {
            background: rgba(255,255,255,0.1);
            height: 80px;
            border-radius: 40px;
            margin: 30px 0;
            position: relative;
            overflow: hidden;
        }

        .speed-runner {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            position: absolute;
            top: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5em;
            transition: left 3s ease;
        }

        .igbt-runner {
            background: linear-gradient(145deg, #fd79a8, #e84393);
            left: 0%;
        }

        .mosfet-runner {
            background: linear-gradient(145deg, #74b9ff, #0984e3);
            left: 0%;
        }

        .power-demo {
            background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
            padding: 45px;
            border-radius: 25px;
            margin: 40px 0;
            color: white;
            text-align: center;
        }

        .power-gauge {
            display: flex;
            justify-content: space-around;
            margin: 30px 0;
        }

        .gauge {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            position: relative;
            margin: 0 auto;
        }

        .gauge-fill {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            position: relative;
            overflow: hidden;
        }

        .gauge-needle {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 2px;
            height: 40px;
            background: white;
            transform-origin: bottom center;
            transition: transform 2s ease;
        }

        .sic-revolution {
            background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
            padding: 45px;
            border-radius: 25px;
            margin: 40px 0;
            color: white;
            text-align: center;
        }

        .evolution-timeline {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 30px 0;
            position: relative;
        }

        .evolution-timeline::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #fd79a8 0%, #74b9ff 50%, #6c5ce7 100%);
            z-index: 0;
        }

        .evolution-stage {
            background: rgba(255,255,255,0.1);
            padding: 25px;
            border-radius: 20px;
            text-align: center;
            min-width: 200px;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.2);
            z-index: 1;
            position: relative;
        }

        .stage-icon {
            font-size: 3em;
            margin-bottom: 15px;
            display: block;
        }

        .applications-showcase {
            background: #f8f9fa;
            padding: 45px;
            border-radius: 25px;
            margin: 40px 0;
        }

        .app-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }

        .app-card {
            background: white;
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .app-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }

        .app-icon {
            font-size: 3.5em;
            margin-bottom: 20px;
            display: block;
        }

        .dicio-spotlight {
            background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
            padding: 45px;
            border-radius: 25px;
            margin: 40px 0;
            color: white;
            text-align: center;
        }

        .product-showcase {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }

        .product-card {
            background: rgba(255,255,255,0.1);
            padding: 30px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.2);
        }

        .product-icon {
            font-size: 3.5em;
            margin-bottom: 15px;
            display: block;
        }

        .quiz-championship {
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
            padding: 45px;
            border-radius: 25px;
            margin: 40px 0;
        }

        .quiz-progress {
            background: rgba(255,255,255,0.3);
            height: 12px;
            border-radius: 6px;
            margin: 25px 0;
            overflow: hidden;
        }

        .quiz-progress-fill {
            background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
            height: 100%;
            transition: width 0.5s ease;
        }

        .next-episode {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 45px;
            border-radius: 25px;
            text-align: center;
            margin-top: 50px;
        }

        .loading {
            display: inline-block;
            width: 30px;
            height: 30px;
            border: 4px solid rgba(255,255,255,.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: loading-spin 1s ease-in-out infinite;
        }

        @keyframes loading-spin {
            to { transform: rotate(360deg); }
        }

        .highlight-fact {
            background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
            padding: 30px;
            border-radius: 20px;
            margin: 30px 0;
            border-left: 6px solid #e17055;
            color: #2d3436;
        }

        .highlight-fact h3 {
            color: #2d3436;
            margin-bottom: 15px;
        }

        @media (max-width: 768px) {
            .container {
                margin: 0;
                border-radius: 0;
            }
            
            .content {
                padding: 30px 20px;
            }
            
            .fighters {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .vs-symbol {
                font-size: 3em;
            }
            
            .stats-comparison {
                flex-direction: column;
                gap: 20px;
            }
            
            .evolution-timeline {
                flex-direction: column;
                gap: 20px;
            }
            
            .evolution-timeline::before {
                display: none;
            }
        }

        .winner-crown {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 2em;
            animation: crown-sparkle 2s ease-in-out infinite;
        }

        @keyframes crown-sparkle {
            0%, 100% { transform: translateX(-50%) scale(1); }
            50% { transform: translateX(-50%) scale(1.2); }
        }

        .battle-effects {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .spark {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #feca57;
            border-radius: 50%;
            animation: spark-fly 1s ease-out forwards;
        }

        @keyframes spark-fly {
            0% { transform: scale(1); opacity: 1; }
            100% { transform: scale(0) translateY(-50px); opacity: 0; }
        }
    &lt;/style&gt;
&lt;/div&gt;
&lt;div class=&quot;container&quot;&gt;&lt;header class=&quot;header&quot;&gt;
&lt;h1&gt;⚔️ 전력반도체 두 형제: IGBT와 MOSFET&lt;/h1&gt;
&lt;p class=&quot;subtitle&quot; data-ke-size=&quot;size16&quot;&gt;전기 세계의 최강 형제 대결!&lt;/p&gt;
&lt;/header&gt;&lt;nav class=&quot;series-nav&quot;&gt;&lt;span&gt;  AI 반도체 시리즈 #11 | 이전: AI 뒤의 숨은 영웅들 | 다음: 실리콘의 한계를 넘어서&lt;/span&gt;&lt;/nav&gt;&lt;main class=&quot;content&quot;&gt;
&lt;section class=&quot;brothers-intro&quot;&gt;
&lt;h2 data-ke-size=&quot;size26&quot;&gt;  전설의 형제를 소개합니다!&lt;/h2&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;전력반도체 세계에는 두 명의 전설적인 형제가 있어요! 형인 &lt;b&gt;IGBT는 힘이 장사&lt;/b&gt;이고, 동생인 &lt;b&gt;MOSFET은 스피드가 장사&lt;/b&gt;죠! 이 둘은 서로 다른 특기를 가지고 있어서 때로는 경쟁하고, 때로는 협력하며 데이터센터와 우리 일상을 지키고 있답니다! 오늘은 이 형제의 치열한 대결을 관전해볼까요?  &lt;/p&gt;
&lt;/section&gt;
&lt;div class=&quot;vs-arena&quot;&gt;
&lt;div class=&quot;arena-lights&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;h3 style=&quot;text-align: center; margin-bottom: 30px; z-index: 1; position: relative;&quot; data-ke-size=&quot;size23&quot;&gt; ️ 챔피언십 아레나&lt;/h3&gt;
&lt;div class=&quot;fighters&quot;&gt;
&lt;div id=&quot;igbtFighter&quot; class=&quot;fighter-card&quot;&gt;
&lt;div class=&quot;fighter-avatar igbt-avatar&quot;&gt; &lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;IGBT 형&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&lt;b&gt;&quot;힘의 전사&quot;&lt;/b&gt;&lt;/p&gt;
&lt;small&gt;&amp;bull; 고전압 대용량 전문&lt;br /&gt;&amp;bull; 수천 볼트도 거뜬&lt;br /&gt;&amp;bull; 안정성의 왕&lt;/small&gt;&lt;/div&gt;
&lt;div class=&quot;vs-symbol&quot;&gt;⚡VS⚡&lt;/div&gt;
&lt;div id=&quot;mosfetFighter&quot; class=&quot;fighter-card&quot;&gt;
&lt;div class=&quot;fighter-avatar mosfet-avatar&quot;&gt; &amp;zwj;♂️&lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;MOSFET 동생&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&lt;b&gt;&quot;스피드의 귀공자&quot;&lt;/b&gt;&lt;/p&gt;
&lt;small&gt;&amp;bull; 나노초 단위 스위칭&lt;br /&gt;&amp;bull; 초고속 반응&lt;br /&gt;&amp;bull; 효율의 마스터&lt;/small&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;stats-comparison&quot;&gt;
&lt;div class=&quot;stat-category&quot;&gt;
&lt;div class=&quot;stat-name&quot;&gt;  힘 (전압/전류)&lt;/div&gt;
&lt;div class=&quot;stat-bars&quot;&gt;
&lt;div class=&quot;stat-bar&quot;&gt;
&lt;div id=&quot;igbtPower&quot; class=&quot;stat-fill igbt-stat&quot; style=&quot;height: 0%;&quot;&gt;95&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;stat-bar&quot;&gt;
&lt;div id=&quot;mosfetPower&quot; class=&quot;stat-fill mosfet-stat&quot; style=&quot;height: 0%;&quot;&gt;70&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;stat-category&quot;&gt;
&lt;div class=&quot;stat-name&quot;&gt;⚡ 스피드 (스위칭)&lt;/div&gt;
&lt;div class=&quot;stat-bars&quot;&gt;
&lt;div class=&quot;stat-bar&quot;&gt;
&lt;div id=&quot;igbtSpeed&quot; class=&quot;stat-fill igbt-stat&quot; style=&quot;height: 0%;&quot;&gt;60&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;stat-bar&quot;&gt;
&lt;div id=&quot;mosfetSpeed&quot; class=&quot;stat-fill mosfet-stat&quot; style=&quot;height: 0%;&quot;&gt;95&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;stat-category&quot;&gt;
&lt;div class=&quot;stat-name&quot;&gt;  효율성&lt;/div&gt;
&lt;div class=&quot;stat-bars&quot;&gt;
&lt;div class=&quot;stat-bar&quot;&gt;
&lt;div id=&quot;igbtEfficiency&quot; class=&quot;stat-fill igbt-stat&quot; style=&quot;height: 0%;&quot;&gt;85&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;stat-bar&quot;&gt;
&lt;div id=&quot;mosfetEfficiency&quot; class=&quot;stat-fill mosfet-stat&quot; style=&quot;height: 0%;&quot;&gt;90&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&quot;arenaResult&quot; class=&quot;battle-result&quot;&gt;형제 중 한 명을 클릭해서 능력치를 확인해보세요!&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;highlight-fact&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  믿기 힘든 스피드 사실!&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;MOSFET은 **1나노초**(10억분의 1초) 만에 ON/OFF 할 수 있어요! 이게 얼마나 빠른지 아세요? 빛이 30cm 가는 시간과 같아요! 여러분이 눈 깜빡할 동안 MOSFET은 **1억 번** 스위칭할 수 있답니다!  &lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;speed-demo&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt; &amp;zwj;♂️ 스피드 테스트: 누가 더 빠를까?&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;스위칭 속도 경주를 시작합니다!&lt;/p&gt;
&lt;div class=&quot;speed-track&quot;&gt;
&lt;div id=&quot;igbtRunner&quot; class=&quot;speed-runner igbt-runner&quot;&gt; &lt;/div&gt;
&lt;div class=&quot;speed-track&quot; style=&quot;margin-top: 10px;&quot;&gt;
&lt;div id=&quot;mosfetRunner&quot; class=&quot;speed-runner mosfet-runner&quot;&gt; &amp;zwj;♂️&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;button class=&quot;battle-btn&quot;&gt;  스피드 경주 시작!&lt;/button&gt;
&lt;div id=&quot;speedResult&quot; class=&quot;battle-result&quot;&gt;경주 시작 버튼을 눌러보세요!&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;power-demo&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  파워 테스트: 누가 더 강할까?&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;고전압 고전류 처리 능력을 측정합니다!&lt;/p&gt;
&lt;div class=&quot;power-gauge&quot;&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;IGBT 형&lt;/h4&gt;
&lt;div class=&quot;gauge&quot;&gt;
&lt;div class=&quot;gauge-fill&quot; style=&quot;background: conic-gradient(from 0deg, #fd79a8 0%, #e84393 100%);&quot;&gt;
&lt;div id=&quot;igbtNeedle&quot; class=&quot;gauge-needle&quot; style=&quot;transform: rotate(-90deg);&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p id=&quot;igbtVoltage&quot; data-ke-size=&quot;size16&quot;&gt;0V&lt;/p&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;MOSFET 동생&lt;/h4&gt;
&lt;div class=&quot;gauge&quot;&gt;
&lt;div class=&quot;gauge-fill&quot; style=&quot;background: conic-gradient(from 0deg, #74b9ff 0%, #0984e3 100%);&quot;&gt;
&lt;div id=&quot;mosfetNeedle&quot; class=&quot;gauge-needle&quot; style=&quot;transform: rotate(-90deg);&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p id=&quot;mosfetVoltage&quot; data-ke-size=&quot;size16&quot;&gt;0V&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;button class=&quot;battle-btn&quot;&gt;⚡ 파워 테스트 시작!&lt;/button&gt;
&lt;div id=&quot;powerResult&quot; class=&quot;battle-result&quot;&gt;파워 테스트 버튼을 눌러보세요!&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;battle-simulator&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  실전 배틀 시뮬레이터&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;다양한 상황에서 누가 더 유리한지 직접 테스트해보세요!&lt;/p&gt;
&lt;div class=&quot;simulator-arena&quot;&gt;
&lt;div class=&quot;battle-scenarios&quot;&gt;
&lt;div class=&quot;scenario-card&quot;&gt;&lt;span class=&quot;scenario-icon&quot;&gt; &lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;데이터센터 전원&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;대용량 안정 전력 공급&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;scenario-card&quot;&gt;&lt;span class=&quot;scenario-icon&quot;&gt; &lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;스마트폰 충전기&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;소형 고효율 변환&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;scenario-card&quot;&gt;&lt;span class=&quot;scenario-icon&quot;&gt; &lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;전기차 모터&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;고출력 구동 제어&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;scenario-card&quot;&gt;&lt;span class=&quot;scenario-icon&quot;&gt;☀️&lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;태양광 인버터&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;DC&amp;rarr;AC 변환&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&quot;battleResult&quot; class=&quot;battle-result&quot;&gt;시나리오 카드를 클릭해서 배틀을 시작하세요!&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;sic-revolution&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  게임 체인저의 등장: SiC MOSFET&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;실리콘카바이드(SiC) 소재로 만든 MOSFET이 등장하면서 게임의 룰이 바뀌었어요!&lt;/p&gt;
&lt;div class=&quot;evolution-timeline&quot;&gt;
&lt;div class=&quot;evolution-stage&quot;&gt;&lt;span class=&quot;stage-icon&quot;&gt; &lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;1세대: IGBT&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;힘은 좋지만 속도 아쉬움&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;evolution-stage&quot;&gt;&lt;span class=&quot;stage-icon&quot;&gt; &amp;zwj;♂️&lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;2세대: Si MOSFET&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;빠르지만 고전압 한계&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;evolution-stage&quot;&gt;&lt;span class=&quot;stage-icon&quot;&gt; &lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;3세대: SiC MOSFET&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;빠르면서 강한 완전체!&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;button class=&quot;battle-btn&quot;&gt;  SiC의 혁신 확인하기&lt;/button&gt;
&lt;div id=&quot;sicResult&quot; class=&quot;battle-result&quot; style=&quot;margin-top: 25px;&quot;&gt;SiC 기술의 놀라운 발전을 확인해보세요!&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;applications-showcase&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  형제들의 활약 무대&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;IGBT와 MOSFET이 각각 어디서 활약하고 있는지 알아보세요!&lt;/p&gt;
&lt;div class=&quot;app-grid&quot;&gt;
&lt;div class=&quot;app-card&quot;&gt;&lt;span class=&quot;app-icon&quot;&gt; &lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;데이터센터&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;IGBT + MOSFET 콤보&lt;/p&gt;
&lt;small&gt;메인 전원: IGBT&lt;br /&gt;고속 스위칭: MOSFET&lt;/small&gt;&lt;/div&gt;
&lt;div class=&quot;app-card&quot;&gt;&lt;span class=&quot;app-icon&quot;&gt; &lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;전기차&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;SiC MOSFET 대세&lt;/p&gt;
&lt;small&gt;모터 제어용&lt;br /&gt;충전기용&lt;/small&gt;&lt;/div&gt;
&lt;div class=&quot;app-card&quot;&gt;&lt;span class=&quot;app-icon&quot;&gt;☀️&lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;신재생 에너지&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;IGBT 인버터&lt;/p&gt;
&lt;small&gt;태양광, 풍력&lt;br /&gt;DC&amp;rarr;AC 변환&lt;/small&gt;&lt;/div&gt;
&lt;div class=&quot;app-card&quot;&gt;&lt;span class=&quot;app-icon&quot;&gt; &lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;가전제품&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;MOSFET 활약&lt;/p&gt;
&lt;small&gt;충전기, 어댑터&lt;br /&gt;모든 전원부&lt;/small&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&quot;appResult&quot; class=&quot;battle-result&quot; style=&quot;margin-top: 25px; background: white; border: 2px solid #ddd;&quot;&gt;응용 분야 카드를 클릭해서 자세한 정보를 확인하세요!&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;dicio-spotlight&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  dicio: 형제들의 매니저&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;dicio는 IGBT와 MOSFET 형제의 장점을 모두 살린 최고의 전력반도체를 제공해요!&lt;/p&gt;
&lt;div class=&quot;product-showcase&quot;&gt;
&lt;div class=&quot;product-card&quot;&gt;&lt;span class=&quot;product-icon&quot;&gt;⚡&lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;IGBT 프리미엄 시리즈&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;데이터센터 메인 전원용&lt;/p&gt;
&lt;small&gt;&amp;bull; 3300V 고전압 지원&lt;br /&gt;&amp;bull; 초저손실 설계&lt;br /&gt;&amp;bull; 20년 수명 보장&lt;/small&gt;&lt;/div&gt;
&lt;div class=&quot;product-card&quot;&gt;&lt;span class=&quot;product-icon&quot;&gt; &lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;SiC MOSFET 시리즈&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;차세대 고효율 솔루션&lt;/p&gt;
&lt;small&gt;&amp;bull; 1700V 고전압 지원&lt;br /&gt;&amp;bull; 98% 초고효율&lt;br /&gt;&amp;bull; 200&amp;deg;C 고온 동작&lt;/small&gt;&lt;/div&gt;
&lt;div class=&quot;product-card&quot;&gt;&lt;span class=&quot;product-icon&quot;&gt; &lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;하이브리드 모듈&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;IGBT+MOSFET 조합&lt;/p&gt;
&lt;small&gt;&amp;bull; 최적 성능 조합&lt;br /&gt;&amp;bull; 원스톱 솔루션&lt;br /&gt;&amp;bull; 맞춤형 설계&lt;/small&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;quiz-championship&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  전력반도체 챔피언십 퀴즈!&lt;/h3&gt;
&lt;div class=&quot;quiz-progress&quot;&gt;
&lt;div id=&quot;quizProgress&quot; class=&quot;quiz-progress-fill&quot; style=&quot;width: 0%;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&quot;quizContainer&quot;&gt;
&lt;p id=&quot;quizQuestion&quot; data-ke-size=&quot;size16&quot;&gt;MOSFET의 가장 큰 장점은 무엇일까요?&lt;/p&gt;
&lt;div style=&quot;display: flex; justify-content: center; gap: 15px; margin: 20px 0; flex-wrap: wrap;&quot;&gt;&lt;button class=&quot;battle-btn&quot;&gt;초고속 스위칭&lt;/button&gt; &lt;button class=&quot;battle-btn&quot;&gt;고전압 처리&lt;/button&gt; &lt;button class=&quot;battle-btn&quot;&gt;저렴한 가격&lt;/button&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&quot;quizResult&quot; class=&quot;battle-result&quot;&gt;정답을 선택해보세요!&lt;/div&gt;
&lt;/div&gt;
&lt;section class=&quot;next-episode&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  다음 편 예고&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&lt;b&gt;&quot;실리콘의 한계를 넘다! 실리콘카바이드의 등장&quot;&lt;/b&gt;&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;왜 SiC MOSFET이 기존 형제들을 압도하고 있을까요? 다이아몬드 다음으로 단단한 SiC 소재의 놀라운 능력과 40% 효율 향상의 비밀을 파헤쳐보겠습니다! 반도체 소재 혁명이 시작됩니다!  ⚡&lt;/p&gt;
&lt;/section&gt;
&lt;/main&gt;&lt;/div&gt;
&lt;script&gt;
        let currentQuiz = 0;
        let quizScore = 0;
        let selectedFighter = null;
        
        const quizData = [
            {
                question: &quot;MOSFET의 가장 큰 장점은 무엇일까요?&quot;,
                answers: [&quot;초고속 스위칭&quot;, &quot;고전압 처리&quot;, &quot;저렴한 가격&quot;],
                correct: &quot;초고속 스위칭&quot;
            },
            {
                question: &quot;IGBT가 주로 사용되는 분야는?&quot;,
                answers: [&quot;고전압 대용량&quot;, &quot;스마트폰 충전기&quot;, &quot;LED 조명&quot;],
                correct: &quot;고전압 대용량&quot;
            },
            {
                question: &quot;SiC MOSFET의 최대 장점은?&quot;,
                answers: [&quot;빠르면서 강함&quot;, &quot;저렴한 가격&quot;, &quot;작은 크기&quot;],
                correct: &quot;빠르면서 강함&quot;
            }
        ];

        // 파이터 선택
        function selectFighter(fighter) {
            selectedFighter = fighter;
            const result = document.getElementById('arenaResult');
            
            // 능력치 애니메이션
            setTimeout(() =&gt; {
                document.getElementById('igbtPower').style.height = '95%';
                document.getElementById('mosfetPower').style.height = '70%';
                document.getElementById('igbtSpeed').style.height = '60%';
                document.getElementById('mosfetSpeed').style.height = '95%';
                document.getElementById('igbtEfficiency').style.height = '85%';
                document.getElementById('mosfetEfficiency').style.height = '90%';
            }, 500);
            
            if (fighter === 'igbt') {
                result.innerHTML = `
                      &lt;strong&gt;IGBT 형 선택!&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
                      &lt;strong&gt;특별 능력:&lt;/strong&gt;&lt;br&gt;
                    • 3300V 고전압도 거뜬히 처리&lt;br&gt;
                    • 수백 암페어 대전류 제어&lt;br&gt;
                    • 산업용 인버터의 심장&lt;br&gt;&lt;br&gt;
                      &lt;strong&gt;주 무대:&lt;/strong&gt; 데이터센터 메인 전원, 전기차 모터, 태양광 인버터&lt;br&gt;
                      &lt;strong&gt;한마디:&lt;/strong&gt; &quot;힘이 곧 진리다!&quot;
                `;
                
                // 왕관 추가
                const crown = document.createElement('div');
                crown.className = 'winner-crown';
                crown.textContent = ' ';
                document.getElementById('igbtFighter').style.position = 'relative';
                document.getElementById('igbtFighter').appendChild(crown);
            } else {
                result.innerHTML = `
                     ‍♂️ &lt;strong&gt;MOSFET 동생 선택!&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
                    ⚡ &lt;strong&gt;특별 능력:&lt;/strong&gt;&lt;br&gt;
                    • 1나노초 초고속 스위칭&lt;br&gt;
                    • 95% 초고효율 달성&lt;br&gt;
                    • 열 발생 최소화&lt;br&gt;&lt;br&gt;
                      &lt;strong&gt;주 무대:&lt;/strong&gt; 스마트폰 충전기, PC 전원부, 고주파 컨버터&lt;br&gt;
                      &lt;strong&gt;한마디:&lt;/strong&gt; &quot;스피드가 곧 경쟁력이다!&quot;
                `;
                
                // 왕관 추가
                const crown = document.createElement('div');
                crown.className = 'winner-crown';
                crown.textContent = ' ';
                document.getElementById('mosfetFighter').style.position = 'relative';
                document.getElementById('mosfetFighter').appendChild(crown);
            }
            
            createBattleEffects();
        }

        // 스피드 경주
        function startSpeedRace() {
            const result = document.getElementById('speedResult');
            const igbtRunner = document.getElementById('igbtRunner');
            const mosfetRunner = document.getElementById('mosfetRunner');
            
            result.innerHTML = '&lt;div class=&quot;loading&quot;&gt;&lt;/div&gt; 경주 진행 중...';
            
            // 경주 시작
            setTimeout(() =&gt; {
                igbtRunner.style.left = '60%';  // IGBT는 느리게
                mosfetRunner.style.left = '90%'; // MOSFET은 빠르게
            }, 500);
            
            setTimeout(() =&gt; {
                result.innerHTML = `
                      &lt;strong&gt;MOSFET 동생 승리!&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
                      &lt;strong&gt;경주 결과:&lt;/strong&gt;&lt;br&gt;
                      IGBT: 1마이크로초 (0.000001초)&lt;br&gt;
                     ‍♂️ MOSFET: 1나노초 (0.000000001초)&lt;br&gt;&lt;br&gt;
                    ⚡ MOSFET이 **1000배** 더 빨라요!
                `;
            }, 3500);
        }

        // 파워 테스트
        function startPowerTest() {
            const result = document.getElementById('powerResult');
            const igbtNeedle = document.getElementById('igbtNeedle');
            const mosfetNeedle = document.getElementById('mosfetNeedle');
            const igbtVoltage = document.getElementById('igbtVoltage');
            const mosfetVoltage = document.getElementById('mosfetVoltage');
            
            result.innerHTML = '&lt;div class=&quot;loading&quot;&gt;&lt;/div&gt; 전압 테스트 중...';
            
            // 파워 테스트
            setTimeout(() =&gt; {
                igbtNeedle.style.transform = 'rotate(80deg)';
                mosfetNeedle.style.transform = 'rotate(40deg)';
                
                animateVoltage('igbtVoltage', 3300);
                animateVoltage('mosfetVoltage', 1200);
            }, 500);
            
            setTimeout(() =&gt; {
                result.innerHTML = `
                      &lt;strong&gt;IGBT 형 승리!&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
                      &lt;strong&gt;파워 테스트 결과:&lt;/strong&gt;&lt;br&gt;
                      IGBT: 최대 3300V 처리 가능&lt;br&gt;
                     ‍♂️ MOSFET: 최대 1200V 처리 가능&lt;br&gt;&lt;br&gt;
                      IGBT가 **2.7배** 더 강해요!
                `;
            }, 3000);
        }

        // 배틀 시나리오
        function battleScenario(scenario) {
            const result = document.getElementById('battleResult');
            result.innerHTML = '&lt;div class=&quot;loading&quot;&gt;&lt;/div&gt; 배틀 분석 중...';
            
            setTimeout(() =&gt; {
                let battleResult;
                switch(scenario) {
                    case 'datacenter':
                        battleResult = `
                              &lt;strong&gt;데이터센터 전원 배틀:&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
                              &lt;strong&gt;승자: IGBT + MOSFET 콤보!&lt;/strong&gt;&lt;br&gt;
                            • IGBT: 메인 AC→DC 변환 (안정성)&lt;br&gt;
                            • MOSFET: 세부 DC-DC 변환 (효율성)&lt;br&gt;&lt;br&gt;
                              형제가 힘을 합쳐야 최고!
                        `;
                        break;
                    case 'smartphone':
                        battleResult = `
                              &lt;strong&gt;스마트폰 충전기 배틀:&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
                              &lt;strong&gt;승자: MOSFET!&lt;/strong&gt;&lt;br&gt;
                            • 작은 크기에 고효율 필요&lt;br&gt;
                            • 220V → 5V 빠른 변환&lt;br&gt;
                            • 열 발생 최소화&lt;br&gt;&lt;br&gt;
                            ⚡ 스피드와 효율이 핵심!
                        `;
                        break;
                    case 'car':
                        battleResult = `
                              &lt;strong&gt;전기차 모터 배틀:&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
                              &lt;strong&gt;승자: SiC MOSFET!&lt;/strong&gt;&lt;br&gt;
                            • 빠른 모터 제어 필요&lt;br&gt;
                            • 높은 전압과 빠른 스위칭 둘 다&lt;br&gt;
                            • 차세대 기술의 힘&lt;br&gt;&lt;br&gt;
                              SiC가 미래다!
                        `;
                        break;
                    case 'solar':
                        battleResult = `
                            ☀️ &lt;strong&gt;태양광 인버터 배틀:&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
                              &lt;strong&gt;승자: IGBT!&lt;/strong&gt;&lt;br&gt;
                            • DC를 AC로 변환&lt;br&gt;
                            • 높은 전압과 안정성&lt;br&gt;
                            • 20년 이상 수명 필요&lt;br&gt;&lt;br&gt;
                              안정성이 최우선!
                        `;
                        break;
                }
                result.innerHTML = battleResult;
            }, 2000);
        }

        // SiC 혁신 보여주기
        function showSiCAdvantage() {
            const result = document.getElementById('sicResult');
            result.innerHTML = '&lt;div class=&quot;loading&quot;&gt;&lt;/div&gt; SiC 기술 분석 중...';
            
            setTimeout(() =&gt; {
                result.innerHTML = `
                      &lt;strong&gt;SiC MOSFET의 혁신:&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
                      &lt;strong&gt;온도:&lt;/strong&gt; 200°C 고온에서도 동작 (기존: 150°C)&lt;br&gt;
                    ⚡ &lt;strong&gt;속도:&lt;/strong&gt; MOSFET급 고속 + IGBT급 고전압&lt;br&gt;
                      &lt;strong&gt;효율:&lt;/strong&gt; 98% 달성 (기존 대비 40% 향상)&lt;br&gt;
                      &lt;strong&gt;환경:&lt;/strong&gt; 전력 손실 절반으로 감소&lt;br&gt;&lt;br&gt;
                      &lt;strong&gt;결론:&lt;/strong&gt; 형제의 장점을 모두 가진 완전체!
                `;
            }, 2000);
        }

        // 응용 분야 설명
        function explainApplication(app) {
            const result = document.getElementById('appResult');
            let explanation;
            
            switch(app) {
                case 'datacenter':
                    explanation = `
                          &lt;strong&gt;데이터센터에서의 활약:&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
                          &lt;strong&gt;메인 전원부:&lt;/strong&gt; IGBT가 220V AC를 안정된 DC로&lt;br&gt;
                          &lt;strong&gt;서버 전원부:&lt;/strong&gt; MOSFET이 12V, 5V로 세밀 조절&lt;br&gt;
                          &lt;strong&gt;UPS 시스템:&lt;/strong&gt; 정전 시 백업 전원 공급&lt;br&gt;&lt;br&gt;
                          두 형제의 완벽한 팀워크!
                    `;
                    break;
                case 'ev':
                    explanation = `
                          &lt;strong&gt;전기차에서의 활약:&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
                          &lt;strong&gt;모터 컨트롤러:&lt;/strong&gt; SiC MOSFET이 정밀 제어&lt;br&gt;
                          &lt;strong&gt;온보드 충전기:&lt;/strong&gt; AC를 배터리용 DC로&lt;br&gt;
                          &lt;strong&gt;DC-DC 컨버터:&lt;/strong&gt; 고전압을 12V로 변환&lt;br&gt;&lt;br&gt;
                          SiC 기술로 주행거리 10% 증가!
                    `;
                    break;
                case 'renewable':
                    explanation = `
                        ☀️ &lt;strong&gt;신재생 에너지에서의 활약:&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
                          &lt;strong&gt;태양광 인버터:&lt;/strong&gt; IGBT가 DC를 AC로&lt;br&gt;
                          &lt;strong&gt;풍력 컨버터:&lt;/strong&gt; 불규칙한 AC를 안정된 AC로&lt;br&gt;
                          &lt;strong&gt;ESS 시스템:&lt;/strong&gt; 배터리 충방전 제어&lt;br&gt;&lt;br&gt;
                          친환경 에너지의 핵심 기술!
                    `;
                    break;
                case 'consumer':
                    explanation = `
                          &lt;strong&gt;가전제품에서의 활약:&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
                          &lt;strong&gt;스마트폰 충전기:&lt;/strong&gt; MOSFET이 소형 고효율&lt;br&gt;
                          &lt;strong&gt;노트북 어댑터:&lt;/strong&gt; 220V를 19V로&lt;br&gt;
                          &lt;strong&gt;가전 인버터:&lt;/strong&gt; 에어컨, 냉장고 모터 제어&lt;br&gt;&lt;br&gt;
                          일상 곳곳의 숨은 조력자!
                    `;
                    break;
            }
            result.innerHTML = explanation;
        }

        // 퀴즈 시스템
        function answerQuiz(answer, isCorrect) {
            const result = document.getElementById('quizResult');
            const progress = document.getElementById('quizProgress');
            
            if (isCorrect) {
                result.innerHTML = '  정답! ' + answer + '이 맞아요!';
                quizScore++;
            } else {
                result.innerHTML = '❌ 틀렸어요! 정답은 ' + quizData[currentQuiz].correct + '입니다.';
            }
            
            currentQuiz++;
            progress.style.width = (currentQuiz / quizData.length) * 100 + '%';
            
            if (currentQuiz &lt; quizData.length) {
                setTimeout(showNextQuiz, 2000);
            } else {
                setTimeout(() =&gt; {
                    result.innerHTML = `  챔피언십 완료! 전력반도체 마스터 인증! 점수: ${quizScore}/${quizData.length}`;
                }, 2000);
            }
        }

        function showNextQuiz() {
            const question = document.getElementById('quizQuestion');
            const container = document.getElementById('quizContainer');
            
            question.textContent = quizData[currentQuiz].question;
            
            const buttonContainer = container.querySelector('div');
            buttonContainer.innerHTML = '';
            
            quizData[currentQuiz].answers.forEach((answer, index) =&gt; {
                const button = document.createElement('button');
                button.className = 'battle-btn';
                button.textContent = answer;
                button.onclick = () =&gt; answerQuiz(answer, answer === quizData[currentQuiz].correct);
                buttonContainer.appendChild(button);
            });
            
            document.getElementById('quizResult').textContent = '정답을 선택해보세요!';
        }

        // 전압 애니메이션
        function animateVoltage(elementId, target) {
            const element = document.getElementById(elementId);
            const start = Date.now();
            const duration = 2000;
            
            function update() {
                const progress = Math.min((Date.now() - start) / duration, 1);
                const current = Math.floor(target * progress);
                element.textContent = current + 'V';
                
                if (progress &lt; 1) {
                    requestAnimationFrame(update);
                }
            }
            
            update();
        }

        // 배틀 이펙트 생성
        function createBattleEffects() {
            const arena = document.querySelector('.vs-arena');
            const effects = document.createElement('div');
            effects.className = 'battle-effects';
            
            for (let i = 0; i &lt; 10; i++) {
                const spark = document.createElement('div');
                spark.className = 'spark';
                spark.style.left = Math.random() * 100 + '%';
                spark.style.top = Math.random() * 100 + '%';
                spark.style.animationDelay = Math.random() * 1 + 's';
                effects.appendChild(spark);
            }
            
            arena.appendChild(effects);
            
            setTimeout(() =&gt; {
                effects.remove();
            }, 2000);
        }

        // 페이지 로드 시 초기화
        document.addEventListener('DOMContentLoaded', function() {
            // 자동 파이터 소개
            setTimeout(() =&gt; {
                selectFighter('igbt');
            }, 2000);
            
            // 능력치 자동 표시
            setTimeout(() =&gt; {
                const stats = ['igbtPower', 'mosfetPower', 'igbtSpeed', 'mosfetSpeed', 'igbtEfficiency', 'mosfetEfficiency'];
                const values = ['95%', '70%', '60%', '95%', '85%', '90%'];
                
                stats.forEach((stat, index) =&gt; {
                    setTimeout(() =&gt; {
                        document.getElementById(stat).style.height = values[index];
                    }, index * 200);
                });
            }, 3000);
        });
    &lt;/script&gt;</description>
      <category>AI반도체</category>
      <category>AI #AI반도체 #반도체 #시스템반도체 #HBM3 #초거대AI #LLM #데이터센터 #전력효율 #전력반도체 #디시오</category>
      <author>디시오</author>
      <guid isPermaLink="true">https://dicio.tistory.com/31</guid>
      <comments>https://dicio.tistory.com/31#entry31comment</comments>
      <pubDate>Wed, 29 Oct 2025 23:59:56 +0900</pubDate>
    </item>
    <item>
      <title> ️ AI 뒤에는 전력반도체가 있다! - AI반도체 10편</title>
      <link>https://dicio.tistory.com/30</link>
      <description>&lt;p data-ke-size=&quot;size16&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;div&gt;
&lt;style&gt;
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
            line-height: 1.8;
            color: #333;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            min-height: 100vh;
        }

        .header {
            background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
            color: white;
            padding: 60px 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: ' ️';
            position: absolute;
            font-size: 25em;
            top: -80px;
            right: -100px;
            opacity: 0.1;
            animation: shield-rotate 20s linear infinite;
        }

        @keyframes shield-rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .header h1 {
            font-size: 3.2em;
            margin-bottom: 20px;
            z-index: 1;
            position: relative;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
        }

        .header .subtitle {
            font-size: 1.4em;
            opacity: 0.9;
            z-index: 1;
            position: relative;
        }

        .series-nav {
            background: #f8f9fa;
            padding: 20px 30px;
            border-bottom: 3px solid #dee2e6;
            text-align: center;
        }

        .series-nav span {
            color: #6c757d;
            font-size: 1em;
            font-weight: 500;
        }

        .content {
            padding: 50px 30px;
        }

        .hero-reveal {
            background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
            padding: 50px;
            border-radius: 25px;
            margin-bottom: 50px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero-reveal::before {
            content: ' ️‍♂️';
            position: absolute;
            font-size: 15em;
            top: -50px;
            left: -60px;
            opacity: 0.2;
            animation: detective-search 4s ease-in-out infinite;
        }

        @keyframes detective-search {
            0%, 100% { transform: rotate(-10deg); }
            50% { transform: rotate(10deg); }
        }

        .hero-reveal h2 {
            font-size: 2.8em;
            margin-bottom: 20px;
            z-index: 1;
            position: relative;
        }

        .traffic-cop-analogy {
            background: #f8f9fa;
            padding: 45px;
            border-radius: 25px;
            margin: 40px 0;
            text-align: center;
        }

        .traffic-scene {
            display: flex;
            justify-content: space-around;
            align-items: center;
            margin: 30px 0;
            flex-wrap: wrap;
            gap: 20px;
        }

        .traffic-element {
            text-align: center;
            padding: 20px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            cursor: pointer;
        }

        .traffic-element:hover {
            transform: scale(1.1);
        }

        .traffic-cop {
            font-size: 4em;
            margin-bottom: 15px;
            animation: cop-signal 2s ease-in-out infinite;
        }

        @keyframes cop-signal {
            0%, 100% { transform: rotate(-10deg); }
            50% { transform: rotate(10deg); }
        }

        .power-current {
            width: 80px;
            height: 20px;
            background: linear-gradient(90deg, #ff6b6b 0%, #feca57 100%);
            border-radius: 10px;
            margin: 10px auto;
            animation: current-flow 2s linear infinite;
        }

        @keyframes current-flow {
            0% { transform: translateX(-20px); opacity: 0.5; }
            50% { transform: translateX(0); opacity: 1; }
            100% { transform: translateX(20px); opacity: 0.5; }
        }

        .superhero-duel {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 50px;
            border-radius: 25px;
            margin: 40px 0;
            color: white;
        }

        .heroes-arena {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 30px;
            margin: 40px 0;
            align-items: center;
        }

        .hero-card {
            background: rgba(255,255,255,0.1);
            padding: 35px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.2);
        }

        .hero-card:hover {
            transform: translateY(-10px) scale(1.05);
            background: rgba(255,255,255,0.2);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        .hero-avatar {
            width: 120px;
            height: 120px;
            margin: 0 auto 20px;
            background: linear-gradient(145deg, #fdcb6e, #e17055);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3em;
            animation: hero-float 3s ease-in-out infinite;
        }

        @keyframes hero-float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .vs-symbol {
            font-size: 4em;
            color: #feca57;
            animation: vs-pulse 2s ease-in-out infinite;
        }

        @keyframes vs-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        .power-stats {
            display: flex;
            justify-content: space-between;
            margin: 20px 0;
        }

        .stat-bar {
            flex: 1;
            margin: 0 5px;
            text-align: center;
        }

        .stat-name {
            font-size: 0.8em;
            margin-bottom: 5px;
        }

        .stat-fill {
            height: 8px;
            background: #e9ecef;
            border-radius: 4px;
            overflow: hidden;
        }

        .stat-value {
            height: 100%;
            background: linear-gradient(90deg, #00b894 0%, #00cec9 100%);
            border-radius: 4px;
            transition: width 2s ease;
        }

        .interactive-simulator {
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
            padding: 45px;
            border-radius: 25px;
            margin: 40px 0;
        }

        .datacenter-mockup {
            background: #2d3436;
            padding: 30px;
            border-radius: 20px;
            margin: 30px 0;
            position: relative;
            overflow: hidden;
        }

        .power-flow-diagram {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 20px 0;
            flex-wrap: wrap;
            gap: 15px;
        }

        .power-stage {
            background: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            color: white;
            min-width: 150px;
            position: relative;
        }

        .power-arrow {
            font-size: 2em;
            color: #feca57;
            animation: arrow-flow 1.5s ease-in-out infinite;
        }

        @keyframes arrow-flow {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(10px); }
        }

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

        .control-btn {
            padding: 15px 25px;
            border: none;
            border-radius: 25px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1em;
            font-weight: bold;
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
        }

        .control-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
        }

        .control-btn:active {
            transform: translateY(0);
        }

        .simulator-result {
            background: rgba(255,255,255,0.9);
            padding: 30px;
            border-radius: 20px;
            margin-top: 25px;
            min-height: 100px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-size: 1.2em;
            text-align: center;
            border: 3px solid #667eea;
        }

        .sic-revolution {
            background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
            padding: 45px;
            border-radius: 25px;
            margin: 40px 0;
            color: white;
            text-align: center;
        }

        .sic-comparison {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }

        .material-card {
            background: rgba(255,255,255,0.1);
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            backdrop-filter: blur(10px);
        }

        .material-card:hover {
            transform: translateY(-10px);
            background: rgba(255,255,255,0.2);
        }

        .material-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5em;
        }

        .silicon { background: linear-gradient(145deg, #636e72, #2d3436); }
        .sic { background: linear-gradient(145deg, #00cec9, #00b894); }

        .efficiency-meter {
            width: 100%;
            height: 20px;
            background: #e9ecef;
            border-radius: 10px;
            margin: 15px 0;
            overflow: hidden;
        }

        .efficiency-fill {
            height: 100%;
            border-radius: 10px;
            transition: width 2s ease;
        }

        .old-efficiency { background: linear-gradient(90deg, #ff6b6b 0%, #feca57 100%); }
        .new-efficiency { background: linear-gradient(90deg, #00b894 0%, #00cec9 100%); }

        .dicio-showcase {
            background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
            padding: 45px;
            border-radius: 25px;
            margin: 40px 0;
            color: white;
            text-align: center;
        }

        .product-lineup {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }

        .product-card {
            background: rgba(255,255,255,0.1);
            padding: 30px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.2);
        }

        .product-icon {
            font-size: 3.5em;
            margin-bottom: 15px;
            display: block;
        }

        .environmental-impact {
            background: linear-gradient(135deg, #00cec9 0%, #55efc4 100%);
            padding: 45px;
            border-radius: 25px;
            margin: 40px 0;
            color: white;
            text-align: center;
        }

        .impact-visualization {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }

        .impact-metric {
            background: rgba(255,255,255,0.1);
            padding: 25px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
        }

        .metric-number {
            font-size: 3em;
            font-weight: bold;
            display: block;
            margin-bottom: 10px;
        }

        .quiz-arena {
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
            padding: 45px;
            border-radius: 25px;
            margin: 40px 0;
        }

        .quiz-progress {
            background: rgba(255,255,255,0.3);
            height: 12px;
            border-radius: 6px;
            margin: 25px 0;
            overflow: hidden;
        }

        .quiz-progress-fill {
            background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
            height: 100%;
            transition: width 0.5s ease;
        }

        .next-chapter {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 45px;
            border-radius: 25px;
            text-align: center;
            margin-top: 50px;
        }

        .loading {
            display: inline-block;
            width: 30px;
            height: 30px;
            border: 4px solid rgba(255,255,255,.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: loading-spin 1s ease-in-out infinite;
        }

        @keyframes loading-spin {
            to { transform: rotate(360deg); }
        }

        .highlight-box {
            background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
            padding: 30px;
            border-radius: 20px;
            margin: 30px 0;
            border-left: 6px solid #e17055;
            color: #2d3436;
        }

        .highlight-box h3 {
            color: #2d3436;
            margin-bottom: 15px;
        }

        @media (max-width: 768px) {
            .container {
                margin: 0;
                border-radius: 0;
            }
            
            .content {
                padding: 30px 20px;
            }
            
            .heroes-arena {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .vs-symbol {
                font-size: 2em;
            }
            
            .power-flow-diagram {
                flex-direction: column;
            }
            
            .control-panel {
                grid-template-columns: 1fr;
            }
        }

        .battle-animation {
            animation: battle-shake 0.5s ease-in-out;
        }

        @keyframes battle-shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-5px); }
            75% { transform: translateX(5px); }
        }
    &lt;/style&gt;
&lt;/div&gt;
&lt;div class=&quot;container&quot;&gt;&lt;header class=&quot;header&quot;&gt;
&lt;h1&gt; ️ AI 뒤에는 전력반도체가 있다!&lt;/h1&gt;
&lt;p class=&quot;subtitle&quot; data-ke-size=&quot;size16&quot;&gt;전기의 숨은 영웅들을 찾아서!&lt;/p&gt;
&lt;/header&gt;&lt;nav class=&quot;series-nav&quot;&gt;&lt;span&gt;  AI 반도체 시리즈 #10 | 이전: 전기 먹는 하마의 비밀 | 다음: 전력반도체 두 형제 대결&lt;/span&gt;&lt;/nav&gt;&lt;main class=&quot;content&quot;&gt;
&lt;section class=&quot;hero-reveal&quot;&gt;
&lt;h2 data-ke-size=&quot;size26&quot;&gt; ️&amp;zwj;♂️ 숨겨진 영웅들의 정체를 밝혀라!&lt;/h2&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;AI가 똑똑하게 답변하고, 데이터센터가 쌩쌩 돌아가는 뒤에는 &lt;b&gt;보이지 않는 영웅들&lt;/b&gt;이 숨어있어요! 바로 &lt;b&gt;전력반도체&lt;/b&gt;라는 특수 요원들이죠! 이들 없이는 AI도, 데이터센터도 한 순간에 마비될 거예요. 오늘은 이 숨은 영웅들의 정체를 낱낱이 파헤쳐보겠습니다!  &lt;/p&gt;
&lt;/section&gt;
&lt;div class=&quot;traffic-cop-analogy&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  전력반도체 = 전기의 교통경찰!&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;전력반도체를 이해하는 가장 쉬운 방법은 &lt;b&gt;교통경찰&lt;/b&gt;로 생각하는 거예요!&lt;/p&gt;
&lt;div class=&quot;traffic-scene&quot;&gt;
&lt;div class=&quot;traffic-element&quot;&gt;
&lt;div class=&quot;traffic-cop&quot;&gt; &amp;zwj;♂️&lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;교통경찰&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;차량의 흐름을 조절&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;traffic-element&quot;&gt;
&lt;div style=&quot;font-size: 3em;&quot;&gt;&amp;asymp;&lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;같은 역할&lt;/h4&gt;
&lt;/div&gt;
&lt;div class=&quot;traffic-element&quot;&gt;
&lt;div style=&quot;font-size: 4em;&quot;&gt;⚡&lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;전력반도체&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;전기의 흐름을 조절&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;power-current&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&lt;b&gt;교통경찰&lt;/b&gt;이 손을 들어 &quot;정지!&quot; 하면 차가 멈추듯이, &lt;b&gt;전력반도체&lt;/b&gt;가 신호를 보내면 전기가 흐르거나 멈춰요!&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;highlight-box&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  충격적인 사실!&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;여러분이 스마트폰을 충전할 때, 그 작은 충전기 안에도 &lt;b&gt;수십 개의 전력반도체&lt;/b&gt;가 들어있어요! 콘센트의 220V를 폰에 맞는 5V로 바꿔주는 마법 같은 일을 하고 있답니다. 데이터센터에는 이런 전력반도체가 &lt;b&gt;수백만 개&lt;/b&gt; 들어있어요!&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;superhero-duel&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;⚔️ 전력반도체 슈퍼히어로 대결!&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;전력반도체 세계의 양대 슈퍼히어로를 소개합니다!&lt;/p&gt;
&lt;div class=&quot;heroes-arena&quot;&gt;
&lt;div id=&quot;igbtHero&quot; class=&quot;hero-card&quot;&gt;
&lt;div class=&quot;hero-avatar&quot;&gt; &lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;IGBT맨&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&lt;b&gt;힘의 전사&lt;/b&gt;&lt;/p&gt;
&lt;div class=&quot;power-stats&quot;&gt;
&lt;div class=&quot;stat-bar&quot;&gt;
&lt;div class=&quot;stat-name&quot;&gt;힘&lt;/div&gt;
&lt;div class=&quot;stat-fill&quot;&gt;
&lt;div id=&quot;igbtPower&quot; class=&quot;stat-value&quot; style=&quot;width: 0%;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;stat-bar&quot;&gt;
&lt;div class=&quot;stat-name&quot;&gt;속도&lt;/div&gt;
&lt;div class=&quot;stat-fill&quot;&gt;
&lt;div id=&quot;igbtSpeed&quot; class=&quot;stat-value&quot; style=&quot;width: 0%;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;stat-bar&quot;&gt;
&lt;div class=&quot;stat-name&quot;&gt;효율&lt;/div&gt;
&lt;div class=&quot;stat-fill&quot;&gt;
&lt;div id=&quot;igbtEfficiency&quot; class=&quot;stat-value&quot; style=&quot;width: 0%;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;small&gt;고전압 대용량 전문&lt;/small&gt;&lt;/div&gt;
&lt;div class=&quot;vs-symbol&quot;&gt;⚡VS⚡&lt;/div&gt;
&lt;div id=&quot;mosfetHero&quot; class=&quot;hero-card&quot;&gt;
&lt;div class=&quot;hero-avatar&quot;&gt; &amp;zwj;♂️&lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;MOSFET 걸&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&lt;b&gt;스피드의 여왕&lt;/b&gt;&lt;/p&gt;
&lt;div class=&quot;power-stats&quot;&gt;
&lt;div class=&quot;stat-bar&quot;&gt;
&lt;div class=&quot;stat-name&quot;&gt;힘&lt;/div&gt;
&lt;div class=&quot;stat-fill&quot;&gt;
&lt;div id=&quot;mosfetPower&quot; class=&quot;stat-value&quot; style=&quot;width: 0%;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;stat-bar&quot;&gt;
&lt;div class=&quot;stat-name&quot;&gt;속도&lt;/div&gt;
&lt;div class=&quot;stat-fill&quot;&gt;
&lt;div id=&quot;mosfetSpeed&quot; class=&quot;stat-value&quot; style=&quot;width: 0%;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;stat-bar&quot;&gt;
&lt;div class=&quot;stat-name&quot;&gt;효율&lt;/div&gt;
&lt;div class=&quot;stat-fill&quot;&gt;
&lt;div id=&quot;mosfetEfficiency&quot; class=&quot;stat-value&quot; style=&quot;width: 0%;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;small&gt;초고속 스위칭 전문&lt;/small&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&quot;heroResult&quot; class=&quot;simulator-result&quot;&gt;위의 슈퍼히어로를 클릭해서 능력치를 확인해보세요!&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;interactive-simulator&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  데이터센터 전력 시뮬레이터&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;가상 데이터센터의 전력 시스템을 직접 조작해보세요!&lt;/p&gt;
&lt;div class=&quot;datacenter-mockup&quot;&gt;
&lt;div class=&quot;power-flow-diagram&quot;&gt;
&lt;div id=&quot;acInput&quot; class=&quot;power-stage&quot;&gt;
&lt;h5&gt;AC 220V&lt;/h5&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;콘센트 전기&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;power-arrow&quot;&gt;&amp;rarr;&lt;/div&gt;
&lt;div id=&quot;powerConverter&quot; class=&quot;power-stage&quot;&gt;
&lt;h5&gt;전력변환기&lt;/h5&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;IGBT + MOSFET&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;power-arrow&quot;&gt;&amp;rarr;&lt;/div&gt;
&lt;div id=&quot;dcOutput&quot; class=&quot;power-stage&quot;&gt;
&lt;h5&gt;DC 12V&lt;/h5&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;서버용 전기&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;control-panel&quot;&gt;&lt;button class=&quot;control-btn&quot;&gt;  정상 가동&lt;/button&gt; &lt;button class=&quot;control-btn&quot;&gt;⚡ 과부하 테스트&lt;/button&gt; &lt;button class=&quot;control-btn&quot;&gt;  효율 모드&lt;/button&gt; &lt;button class=&quot;control-btn&quot;&gt;  비상 상황&lt;/button&gt;&lt;/div&gt;
&lt;div id=&quot;simulatorResult&quot; class=&quot;simulator-result&quot;&gt;버튼을 클릭해서 전력 시스템을 테스트해보세요!&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;sic-revolution&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  혁신의 소재: 실리콘카바이드(SiC)&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;기존 실리콘의 한계를 뛰어넘는 차세대 슈퍼 소재가 등장했어요!&lt;/p&gt;
&lt;div class=&quot;sic-comparison&quot;&gt;
&lt;div class=&quot;material-card&quot;&gt;
&lt;div class=&quot;material-icon silicon&quot;&gt;Si&lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;기존 실리콘&lt;/h4&gt;
&lt;div class=&quot;efficiency-meter&quot;&gt;
&lt;div id=&quot;siliconEfficiency&quot; class=&quot;efficiency-fill old-efficiency&quot; style=&quot;width: 0%;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;효율: 85%&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;온도 한계: 150&amp;deg;C&lt;/p&gt;
&lt;small&gt;1세대 전력반도체&lt;/small&gt;&lt;/div&gt;
&lt;div class=&quot;material-card&quot;&gt;
&lt;div class=&quot;material-icon sic&quot;&gt;SiC&lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;실리콘카바이드&lt;/h4&gt;
&lt;div class=&quot;efficiency-meter&quot;&gt;
&lt;div id=&quot;sicEfficiency&quot; class=&quot;efficiency-fill new-efficiency&quot; style=&quot;width: 0%;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;효율: 98%&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;온도 한계: 200&amp;deg;C&lt;/p&gt;
&lt;small&gt;차세대 전력반도체&lt;/small&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;button class=&quot;control-btn&quot;&gt;⚡ 소재 성능 비교하기&lt;/button&gt;
&lt;div id=&quot;materialResult&quot; class=&quot;simulator-result&quot; style=&quot;margin-top: 25px;&quot;&gt;소재 카드를 클릭하거나 비교 버튼을 눌러보세요!&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;dicio-showcase&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  dicio: 전력반도체의 챔피언&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&lt;b&gt;dicio(디시오)&lt;/b&gt;는 라틴어로 &quot;힘&quot;이라는 뜻으로, AI 시대의 전력 혁신을 이끌어가는 전력반도체 전문 브랜드예요!&lt;/p&gt;
&lt;div class=&quot;product-lineup&quot;&gt;
&lt;div class=&quot;product-card&quot;&gt;&lt;span class=&quot;product-icon&quot;&gt;⚡&lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;IGBT 시리즈&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;데이터센터 메인 전원용&lt;/p&gt;
&lt;small&gt;&amp;bull; 고전압 대용량 처리&lt;br /&gt;&amp;bull; 안정성 극대화&lt;br /&gt;&amp;bull; 손실 최소화&lt;/small&gt;&lt;/div&gt;
&lt;div class=&quot;product-card&quot;&gt;&lt;span class=&quot;product-icon&quot;&gt; &lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;SiC MOSFET&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;차세대 고효율 스위칭&lt;/p&gt;
&lt;small&gt;&amp;bull; 40% 효율 향상&lt;br /&gt;&amp;bull; 초고속 스위칭&lt;br /&gt;&amp;bull; 열 발생 최소화&lt;/small&gt;&lt;/div&gt;
&lt;div class=&quot;product-card&quot;&gt;&lt;span class=&quot;product-icon&quot;&gt; &lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;친환경 솔루션&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;지구를 지키는 기술&lt;/p&gt;
&lt;small&gt;&amp;bull; 탄소 배출 30% 감소&lt;br /&gt;&amp;bull; 전력 소비 20% 절약&lt;br /&gt;&amp;bull; 지속가능한 AI&lt;/small&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;environmental-impact&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  전력반도체가 지구를 구한다!&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;효율적인 전력반도체 사용으로 얻을 수 있는 놀라운 환경 효과!&lt;/p&gt;
&lt;div class=&quot;impact-visualization&quot;&gt;
&lt;div class=&quot;impact-metric&quot;&gt;&lt;span class=&quot;metric-number&quot;&gt;0&lt;/span&gt; &lt;span&gt;톤 CO₂ 절약/년&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;impact-metric&quot;&gt;&lt;span class=&quot;metric-number&quot;&gt;0&lt;/span&gt; &lt;span&gt;그루 나무 심기 효과&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;impact-metric&quot;&gt;&lt;span class=&quot;metric-number&quot;&gt;0&lt;/span&gt; &lt;span&gt;MWh 전력 절약&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;impact-metric&quot;&gt;&lt;span class=&quot;metric-number&quot;&gt;0&lt;/span&gt; &lt;span&gt;억 원 절약&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;button class=&quot;control-btn&quot;&gt;  환경 효과 계산하기&lt;/button&gt;&lt;/div&gt;
&lt;div class=&quot;quiz-arena&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  전력반도체 마스터 퀴즈!&lt;/h3&gt;
&lt;div class=&quot;quiz-progress&quot;&gt;
&lt;div id=&quot;quizProgress&quot; class=&quot;quiz-progress-fill&quot; style=&quot;width: 0%;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&quot;quizContainer&quot;&gt;
&lt;p id=&quot;quizQuestion&quot; data-ke-size=&quot;size16&quot;&gt;전력반도체의 주요 역할은 무엇일까요?&lt;/p&gt;
&lt;div class=&quot;control-panel&quot;&gt;&lt;button class=&quot;control-btn&quot;&gt;전기 흐름 제어&lt;/button&gt; &lt;button class=&quot;control-btn&quot;&gt;데이터 저장&lt;/button&gt; &lt;button class=&quot;control-btn&quot;&gt;소리 증폭&lt;/button&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&quot;quizResult&quot; class=&quot;simulator-result&quot;&gt;정답을 선택해보세요!&lt;/div&gt;
&lt;/div&gt;
&lt;section class=&quot;next-chapter&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;⚔️ 다음 편 예고&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&lt;b&gt;&quot;전력반도체 두 형제: IGBT와 MOSFET&quot;&lt;/b&gt;&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;IGBT맨과 MOSFET 걸의 본격적인 능력 대결! 누가 더 강할까요? 각각의 특별한 능력과 약점, 그리고 어떤 상황에서 누가 더 유리한지 재미있는 대결을 통해 알아보겠습니다! 전력반도체 월드컵이 시작됩니다! ⚔️ &lt;/p&gt;
&lt;/section&gt;
&lt;/main&gt;&lt;/div&gt;
&lt;script&gt;
        let currentQuiz = 0;
        let quizScore = 0;
        let selectedHero = null;
        
        const quizData = [
            {
                question: &quot;전력반도체의 주요 역할은 무엇일까요?&quot;,
                answers: [&quot;전기 흐름 제어&quot;, &quot;데이터 저장&quot;, &quot;소리 증폭&quot;],
                correct: &quot;전기 흐름 제어&quot;
            },
            {
                question: &quot;IGBT의 주요 특징은?&quot;,
                answers: [&quot;고전압 대용량&quot;, &quot;초고속 스위칭&quot;, &quot;작은 크기&quot;],
                correct: &quot;고전압 대용량&quot;
            },
            {
                question: &quot;SiC 소재의 최대 장점은?&quot;,
                answers: [&quot;40% 효율 향상&quot;, &quot;저렴한 가격&quot;, &quot;가벼운 무게&quot;],
                correct: &quot;40% 효율 향상&quot;
            }
        ];

        // 히어로 선택
        function selectHero(hero) {
            selectedHero = hero;
            const result = document.getElementById('heroResult');
            
            // 능력치 애니메이션
            if (hero === 'igbt') {
                document.getElementById('igbtPower').style.width = '95%';
                document.getElementById('igbtSpeed').style.width = '60%';
                document.getElementById('igbtEfficiency').style.width = '85%';
                
                document.getElementById('mosfetPower').style.width = '70%';
                document.getElementById('mosfetSpeed').style.width = '95%';
                document.getElementById('mosfetEfficiency').style.width = '90%';
                
                result.innerHTML = `
                      &lt;strong&gt;IGBT맨 선택!&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
                      &lt;strong&gt;특별 능력:&lt;/strong&gt;&lt;br&gt;
                    • 수천 볼트 고전압도 거뜬!&lt;br&gt;
                    • 큰 전류를 안전하게 제어&lt;br&gt;
                    • 데이터센터 메인 전원 담당&lt;br&gt;&lt;br&gt;
                      &lt;strong&gt;활약 무대:&lt;/strong&gt; 산업용 인버터, 전기차 모터, 대형 데이터센터
                `;
            } else {
                document.getElementById('mosfetPower').style.width = '70%';
                document.getElementById('mosfetSpeed').style.width = '95%';
                document.getElementById('mosfetEfficiency').style.width = '90%';
                
                document.getElementById('igbtPower').style.width = '95%';
                document.getElementById('igbtSpeed').style.width = '60%';
                document.getElementById('igbtEfficiency').style.width = '85%';
                
                result.innerHTML = `
                     ‍♀️ &lt;strong&gt;MOSFET 걸 선택!&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
                    ⚡ &lt;strong&gt;특별 능력:&lt;/strong&gt;&lt;br&gt;
                    • 나노초 단위 초고속 스위칭!&lt;br&gt;
                    • 전력 손실 최소화의 달인&lt;br&gt;
                    • 스마트폰부터 서버까지 활약&lt;br&gt;&lt;br&gt;
                      &lt;strong&gt;활약 무대:&lt;/strong&gt; 스마트폰 충전기, PC 전원부, 고효율 컨버터
                `;
            }
            
            // 배틀 애니메이션
            document.getElementById('igbtHero').classList.add('battle-animation');
            document.getElementById('mosfetHero').classList.add('battle-animation');
            
            setTimeout(() =&gt; {
                document.getElementById('igbtHero').classList.remove('battle-animation');
                document.getElementById('mosfetHero').classList.remove('battle-animation');
            }, 500);
        }

        // 전력 시뮬레이션
        function simulatePowerFlow(mode) {
            const result = document.getElementById('simulatorResult');
            const stages = ['acInput', 'powerConverter', 'dcOutput'];
            
            result.innerHTML = '&lt;div class=&quot;loading&quot;&gt;&lt;/div&gt; 시뮬레이션 실행 중...';
            
            // 스테이지별 애니메이션
            stages.forEach((stage, index) =&gt; {
                setTimeout(() =&gt; {
                    document.getElementById(stage).style.background = 'rgba(255, 203, 110, 0.3)';
                    setTimeout(() =&gt; {
                        document.getElementById(stage).style.background = 'rgba(255,255,255,0.1)';
                    }, 500);
                }, index * 300);
            });
            
            setTimeout(() =&gt; {
                let response;
                switch(mode) {
                    case 'normal':
                        response = `
                              &lt;strong&gt;정상 가동 모드:&lt;/strong&gt;&lt;br&gt;
                            • AC 220V → DC 12V 변환 완료&lt;br&gt;
                            • 효율: 92%&lt;br&gt;
                            • 전력 손실: 8%&lt;br&gt;
                            • 상태: 안정적 운영 ✅
                        `;
                        break;
                    case 'overload':
                        response = `
                            ⚡ &lt;strong&gt;과부하 테스트:&lt;/strong&gt;&lt;br&gt;
                            • 부하 150% 증가 감지&lt;br&gt;
                            • IGBT가 긴급 전류 제한 가동&lt;br&gt;
                            • 보호 회로 활성화&lt;br&gt;
                            • 상태: 안전하게 보호됨  ️
                        `;
                        break;
                    case 'efficiency':
                        response = `
                              &lt;strong&gt;고효율 모드:&lt;/strong&gt;&lt;br&gt;
                            • SiC MOSFET 활성화&lt;br&gt;
                            • 효율: 98% 달성&lt;br&gt;
                            • 전력 절약: 15%&lt;br&gt;
                            • 발열: 50% 감소  ️
                        `;
                        break;
                    case 'emergency':
                        response = `
                              &lt;strong&gt;비상 상황:&lt;/strong&gt;&lt;br&gt;
                            • 정전 발생!&lt;br&gt;
                            • UPS 백업 전원 자동 전환&lt;br&gt;
                            • 전력반도체가 즉시 대응&lt;br&gt;
                            • 상태: 무중단 서비스 유지  
                        `;
                        break;
                }
                result.innerHTML = response;
            }, 2000);
        }

        // 소재 정보 표시
        function showMaterialInfo(material) {
            const result = document.getElementById('materialResult');
            
            if (material === 'silicon') {
                result.innerHTML = `
                      &lt;strong&gt;기존 실리콘 (Si):&lt;/strong&gt;&lt;br&gt;
                    • 1950년대부터 사용된 전통 소재&lt;br&gt;
                    • 저렴하고 안정적&lt;br&gt;
                    • 하지만 효율과 내열성에 한계&lt;br&gt;
                    • 150°C 이상에서 성능 저하
                `;
            } else {
                result.innerHTML = `
                      &lt;strong&gt;실리콘카바이드 (SiC):&lt;/strong&gt;&lt;br&gt;
                    • 21세기 혁신 소재&lt;br&gt;
                    • 다이아몬드 다음으로 단단함&lt;br&gt;
                    • 200°C 고온에서도 끄떡없음&lt;br&gt;
                    • 전력 손실 절반으로 감소!
                `;
            }
        }

        // 소재 비교
        function compareMaterials() {
            const result = document.getElementById('materialResult');
            result.innerHTML = '&lt;div class=&quot;loading&quot;&gt;&lt;/div&gt; 소재 분석 중...';
            
            // 효율 바 애니메이션
            setTimeout(() =&gt; {
                document.getElementById('siliconEfficiency').style.width = '85%';
                document.getElementById('sicEfficiency').style.width = '98%';
                
                result.innerHTML = `
                    ⚔️ &lt;strong&gt;소재 대결 결과:&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
                      실리콘: 85% 효율&lt;br&gt;
                      SiC: 98% 효율&lt;br&gt;&lt;br&gt;
                      &lt;strong&gt;SiC 승리!&lt;/strong&gt;&lt;br&gt;
                    • 13% 더 효율적&lt;br&gt;
                    • 50% 더 적은 발열&lt;br&gt;
                    • 지구 환경 보호에 기여
                `;
            }, 2000);
        }

        // 환경 영향 계산
        function calculateEnvironmentalImpact() {
            animateNumber('co2Save', 12000, 2000);
            animateNumber('treeEquiv', 60000, 2500);
            animateNumber('powerSave', 1800, 1800);
            animateNumber('moneySave', 95, 2200);
        }

        // 퀴즈 시스템
        function answerQuiz(answer, isCorrect) {
            const result = document.getElementById('quizResult');
            const progress = document.getElementById('quizProgress');
            
            if (isCorrect) {
                result.innerHTML = '  정답! ' + answer + '이 맞아요!';
                quizScore++;
            } else {
                result.innerHTML = '❌ 틀렸어요! 정답은 ' + quizData[currentQuiz].correct + '입니다.';
            }
            
            currentQuiz++;
            progress.style.width = (currentQuiz / quizData.length) * 100 + '%';
            
            if (currentQuiz &lt; quizData.length) {
                setTimeout(showNextQuiz, 2000);
            } else {
                setTimeout(() =&gt; {
                    result.innerHTML = `  퀴즈 완료! 전력반도체 마스터 인증! 점수: ${quizScore}/${quizData.length}`;
                }, 2000);
            }
        }

        function showNextQuiz() {
            const question = document.getElementById('quizQuestion');
            const container = document.getElementById('quizContainer');
            
            question.textContent = quizData[currentQuiz].question;
            
            const buttonContainer = container.querySelector('.control-panel');
            buttonContainer.innerHTML = '';
            
            quizData[currentQuiz].answers.forEach((answer, index) =&gt; {
                const button = document.createElement('button');
                button.className = 'control-btn';
                button.textContent = answer;
                button.onclick = () =&gt; answerQuiz(answer, answer === quizData[currentQuiz].correct);
                buttonContainer.appendChild(button);
            });
            
            document.getElementById('quizResult').textContent = '정답을 선택해보세요!';
        }

        // 숫자 애니메이션
        function animateNumber(elementId, target, duration) {
            const element = document.getElementById(elementId);
            const start = Date.now();
            
            function update() {
                const progress = Math.min((Date.now() - start) / duration, 1);
                const current = Math.floor(target * progress);
                element.textContent = current.toLocaleString();
                
                if (progress &lt; 1) {
                    requestAnimationFrame(update);
                }
            }
            
            update();
        }

        // 페이지 로드 시 초기화
        document.addEventListener('DOMContentLoaded', function() {
            // 자동 히어로 소개
            setTimeout(() =&gt; {
                selectHero('igbt');
            }, 2000);
            
            // 환경 영향 자동 실행
            setTimeout(() =&gt; {
                calculateEnvironmentalImpact();
            }, 3000);
        });
    &lt;/script&gt;</description>
      <category>AI반도체</category>
      <category>AI #AI반도체 #반도체 #시스템반도체 #HBM3 #초거대AI #LLM #데이터센터 #전력효율 #전력반도체 #디시오</category>
      <author>디시오</author>
      <guid isPermaLink="true">https://dicio.tistory.com/30</guid>
      <comments>https://dicio.tistory.com/30#entry30comment</comments>
      <pubDate>Mon, 27 Oct 2025 15:18:52 +0900</pubDate>
    </item>
    <item>
      <title>⚡ 전기 먹는 하마, 데이터센터와 전력 - AI반도체 9편</title>
      <link>https://dicio.tistory.com/29</link>
      <description>&lt;p data-ke-size=&quot;size16&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;div&gt;
&lt;style&gt;
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
            line-height: 1.8;
            color: #333;
            background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
            min-height: 100vh;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            min-height: 100vh;
        }

        .header {
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
            color: white;
            padding: 60px 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '⚡';
            position: absolute;
            font-size: 25em;
            top: -80px;
            right: -100px;
            opacity: 0.1;
            animation: electric-pulse 3s ease-in-out infinite;
        }

        @keyframes electric-pulse {
            0%, 100% { opacity: 0.1; transform: scale(1); }
            50% { opacity: 0.3; transform: scale(1.1); }
        }

        .header h1 {
            font-size: 3em;
            margin-bottom: 20px;
            z-index: 1;
            position: relative;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
        }

        .header .subtitle {
            font-size: 1.4em;
            opacity: 0.9;
            z-index: 1;
            position: relative;
        }

        .series-nav {
            background: #f8f9fa;
            padding: 20px 30px;
            border-bottom: 3px solid #dee2e6;
            text-align: center;
        }

        .series-nav span {
            color: #6c757d;
            font-size: 1em;
            font-weight: 500;
        }

        .content {
            padding: 50px 30px;
        }

        .shock-alert {
            background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
            padding: 45px;
            border-radius: 25px;
            margin-bottom: 50px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .shock-alert::before {
            content: ' ';
            position: absolute;
            font-size: 12em;
            top: -30px;
            left: -50px;
            opacity: 0.2;
            animation: money-fly 4s ease-in-out infinite;
        }

        @keyframes money-fly {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(10deg); }
        }

        .shock-alert h2 {
            font-size: 2.5em;
            margin-bottom: 20px;
            z-index: 1;
            position: relative;
        }

        .power-monster {
            background: #2d3436;
            padding: 40px;
            border-radius: 25px;
            margin: 40px 0;
            color: white;
            text-align: center;
            position: relative;
        }

        .monster-visual {
            width: 200px;
            height: 200px;
            margin: 20px auto;
            position: relative;
            background: linear-gradient(145deg, #636e72, #2d3436);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4em;
            animation: monster-breathing 2s ease-in-out infinite;
        }

        @keyframes monster-breathing {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .energy-meter {
            width: 100%;
            max-width: 400px;
            height: 30px;
            background: #e9ecef;
            border-radius: 15px;
            margin: 20px auto;
            overflow: hidden;
            position: relative;
        }

        .energy-fill {
            height: 100%;
            background: linear-gradient(90deg, #00b894 0%, #fdcb6e 50%, #ff6b6b 100%);
            border-radius: 15px;
            animation: energy-consume 3s ease-in-out infinite;
        }

        @keyframes energy-consume {
            0% { width: 20%; }
            50% { width: 95%; }
            100% { width: 20%; }
        }

        .interactive-calculator {
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
            padding: 45px;
            border-radius: 25px;
            margin: 40px 0;
        }

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

        .calc-input {
            background: white;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .calc-input input {
            width: 100%;
            padding: 10px;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 1.1em;
            text-align: center;
        }

        .calc-input input:focus {
            border-color: #667eea;
            outline: none;
        }

        .power-btn {
            padding: 15px 30px;
            border: none;
            border-radius: 25px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1em;
            font-weight: bold;
            margin: 10px;
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
        }

        .power-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
        }

        .calc-result {
            background: rgba(255,255,255,0.9);
            padding: 30px;
            border-radius: 20px;
            margin-top: 25px;
            min-height: 100px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-size: 1.2em;
            text-align: center;
            border: 3px solid #667eea;
        }

        .superhero-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 45px;
            border-radius: 25px;
            margin: 40px 0;
            color: white;
        }

        .superhero-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }

        .superhero-card {
            background: rgba(255,255,255,0.1);
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .superhero-card:hover {
            transform: translateY(-10px) scale(1.05);
            background: rgba(255,255,255,0.2);
        }

        .superhero-icon {
            font-size: 4em;
            margin-bottom: 15px;
            display: block;
            animation: superhero-float 3s ease-in-out infinite;
        }

        @keyframes superhero-float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .efficiency-simulator {
            background: #f8f9fa;
            padding: 45px;
            border-radius: 25px;
            margin: 40px 0;
            text-align: center;
        }

        .efficiency-comparison {
            display: flex;
            justify-content: space-around;
            margin: 30px 0;
            flex-wrap: wrap;
            gap: 20px;
        }

        .efficiency-bar {
            flex: 1;
            min-width: 150px;
            max-width: 200px;
        }

        .efficiency-visual {
            background: #e9ecef;
            height: 250px;
            border-radius: 15px;
            position: relative;
            overflow: hidden;
            margin-bottom: 15px;
        }

        .efficiency-fill {
            position: absolute;
            bottom: 0;
            width: 100%;
            transition: height 2s ease;
            border-radius: 0 0 15px 15px;
        }

        .old-tech { background: linear-gradient(180deg, #ff6b6b 0%, #ee5a52 100%); }
        .new-tech { background: linear-gradient(180deg, #00b894 0%, #00a085 100%); }

        .waste-heat-demo {
            background: linear-gradient(135deg, #ff7675 0%, #d63031 100%);
            padding: 45px;
            border-radius: 25px;
            margin: 40px 0;
            color: white;
            text-align: center;
        }

        .heat-visualization {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 30px 0;
            gap: 30px;
            flex-wrap: wrap;
        }

        .heat-source {
            width: 100px;
            height: 100px;
            background: linear-gradient(145deg, #fdcb6e, #e17055);
            border-radius: 15px;
            position: relative;
            animation: heat-emission 2s ease-in-out infinite;
        }

        @keyframes heat-emission {
            0%, 100% { box-shadow: 0 0 20px rgba(253, 203, 110, 0.5); }
            50% { box-shadow: 0 0 40px rgba(253, 203, 110, 0.8); }
        }

        .heat-wave {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            background: radial-gradient(circle, rgba(255,107,107,0.6), transparent);
            border-radius: 50%;
            animation: heat-rise 1.5s ease-in-out infinite;
        }

        @keyframes heat-rise {
            0% { transform: translateX(-50%) translateY(0) scale(1); opacity: 1; }
            100% { transform: translateX(-50%) translateY(-50px) scale(1.5); opacity: 0; }
        }

        .conversion-demo {
            background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
            padding: 45px;
            border-radius: 25px;
            margin: 40px 0;
            color: white;
        }

        .ac-dc-visual {
            display: flex;
            justify-content: space-around;
            align-items: center;
            margin: 30px 0;
            flex-wrap: wrap;
            gap: 20px;
        }

        .current-type {
            text-align: center;
            padding: 20px;
            background: rgba(255,255,255,0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            min-width: 200px;
        }

        .wave-animation {
            width: 150px;
            height: 80px;
            margin: 15px auto;
            position: relative;
            overflow: hidden;
        }

        .ac-wave {
            width: 100%;
            height: 4px;
            background: #fff;
            position: absolute;
            top: 50%;
            animation: ac-oscillate 2s ease-in-out infinite;
        }

        @keyframes ac-oscillate {
            0%, 100% { transform: translateY(-50%) scaleY(1); }
            25% { transform: translateY(-50%) scaleY(2); }
            50% { transform: translateY(-50%) scaleY(1); }
            75% { transform: translateY(-50%) scaleY(0.5); }
        }

        .dc-line {
            width: 100%;
            height: 4px;
            background: #fff;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
        }

        .conversion-arrow {
            font-size: 3em;
            animation: arrow-pulse 1.5s ease-in-out infinite;
        }

        @keyframes arrow-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        .environmental-impact {
            background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
            padding: 45px;
            border-radius: 25px;
            margin: 40px 0;
            color: white;
            text-align: center;
        }

        .impact-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }

        .impact-stat {
            background: rgba(255,255,255,0.1);
            padding: 25px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
        }

        .stat-icon {
            font-size: 3em;
            margin-bottom: 15px;
            display: block;
        }

        .stat-number {
            font-size: 2.5em;
            font-weight: bold;
            display: block;
            margin-bottom: 10px;
        }

        .solution-showcase {
            background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
            padding: 45px;
            border-radius: 25px;
            margin: 40px 0;
            color: white;
            text-align: center;
        }

        .next-episode {
            background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
            color: white;
            padding: 45px;
            border-radius: 25px;
            text-align: center;
            margin-top: 50px;
        }

        .loading {
            display: inline-block;
            width: 30px;
            height: 30px;
            border: 4px solid rgba(255,255,255,.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: loading-spin 1s ease-in-out infinite;
        }

        @keyframes loading-spin {
            to { transform: rotate(360deg); }
        }

        .highlight-warning {
            background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
            padding: 30px;
            border-radius: 20px;
            margin: 30px 0;
            border-left: 6px solid #e17055;
            color: #2d3436;
        }

        .highlight-warning h3 {
            color: #2d3436;
            margin-bottom: 15px;
        }

        @media (max-width: 768px) {
            .container {
                margin: 0;
                border-radius: 0;
            }
            
            .content {
                padding: 30px 20px;
            }
            
            .efficiency-comparison {
                flex-direction: column;
                align-items: center;
            }
            
            .ac-dc-visual {
                flex-direction: column;
            }
            
            .calc-controls {
                grid-template-columns: 1fr;
            }
        }

        .quiz-section {
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
            padding: 40px;
            border-radius: 25px;
            margin: 40px 0;
        }

        .quiz-progress {
            background: rgba(255,255,255,0.3);
            height: 12px;
            border-radius: 6px;
            margin: 25px 0;
            overflow: hidden;
        }

        .quiz-progress-fill {
            background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
            height: 100%;
            transition: width 0.5s ease;
        }
    &lt;/style&gt;
&lt;/div&gt;
&lt;div class=&quot;container&quot;&gt;&lt;header class=&quot;header&quot;&gt;
&lt;h1&gt;⚡ 전기 먹는 하마, 데이터센터와 전력&lt;/h1&gt;
&lt;p class=&quot;subtitle&quot; data-ke-size=&quot;size16&quot;&gt;AI 시대의 숨겨진 전력 전쟁!&lt;/p&gt;
&lt;/header&gt;&lt;nav class=&quot;series-nav&quot;&gt;&lt;span&gt;  AI 반도체 시리즈 #9 | 이전: 축구장만 한 컴퓨터 창고 | 다음: 전력반도체 슈퍼히어로들&lt;/span&gt;&lt;/nav&gt;&lt;main class=&quot;content&quot;&gt;
&lt;section class=&quot;shock-alert&quot;&gt;
&lt;h2 data-ke-size=&quot;size26&quot;&gt;  충격! ChatGPT 한 번 쓸 때마다 스마트폰 10번 충전할 전기 소모!&lt;/h2&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;여러분이 AI에게 &quot;숙제 도와줘&quot;라고 한 번 물어볼 때마다, 뒤에서는 &lt;b&gt;스마트폰을 10번 충전할 수 있는 전기&lt;/b&gt;가 사용되고 있어요! 전 세계 데이터센터들이 1년 동안 쓰는 전기는 &lt;b&gt;아르헨티나 한 나라 전체&lt;/b&gt;가 쓰는 전기와 맞먹어요!  &lt;/p&gt;
&lt;/section&gt;
&lt;div class=&quot;power-monster&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  전기 먹는 괴물의 정체&lt;/h3&gt;
&lt;div class=&quot;monster-visual&quot;&gt; &lt;/div&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;데이터센터는 마치 전기를 먹고 사는 거대한 괴물 같아요!&lt;/p&gt;
&lt;div class=&quot;energy-meter&quot;&gt;
&lt;div class=&quot;energy-fill&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&lt;b&gt;1초마다 수백만 원&lt;/b&gt;의 전기요금이 나가고 있어요!&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;interactive-calculator&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  우리집 전기요금 VS 데이터센터 전기요금&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;여러분 집의 전기요금과 데이터센터를 비교해보세요!&lt;/p&gt;
&lt;div class=&quot;calc-controls&quot;&gt;
&lt;div class=&quot;calc-input&quot;&gt;&lt;label&gt;  우리집 월 전기요금&lt;/label&gt; &lt;input id=&quot;homeElectric&quot; type=&quot;number&quot; value=&quot;80000&quot; placeholder=&quot;예: 80000&quot; /&gt; &lt;small&gt;원&lt;/small&gt;&lt;/div&gt;
&lt;div class=&quot;calc-input&quot;&gt;&lt;label&gt;  하루 인터넷 사용 시간&lt;/label&gt; &lt;input id=&quot;internetHours&quot; type=&quot;number&quot; value=&quot;5&quot; placeholder=&quot;예: 5&quot; /&gt; &lt;small&gt;시간&lt;/small&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;button class=&quot;power-btn&quot;&gt;⚡ 전력 비교하기&lt;/button&gt;
&lt;div id=&quot;powerResult&quot; class=&quot;calc-result&quot;&gt;버튼을 클릭해서 놀라운 비교 결과를 확인하세요!&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;waste-heat-demo&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  전기의 50%가 열로 날아간다!&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;데이터센터에서 사용하는 전기의 절반은 실제 계산이 아닌 &lt;b&gt;쓸모없는 열&lt;/b&gt;로 버려져요!&lt;/p&gt;
&lt;div class=&quot;heat-visualization&quot;&gt;
&lt;div class=&quot;heat-source&quot;&gt;
&lt;div class=&quot;heat-wave&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;heat-wave&quot; style=&quot;animation-delay: 0.5s;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;heat-wave&quot; style=&quot;animation-delay: 1s;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;div style=&quot;font-size: 2em;&quot;&gt;&amp;rarr;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;div style=&quot;font-size: 3em;&quot;&gt; ️&lt;/div&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;50&amp;deg;C 이상!&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;power-btn&quot; style=&quot;background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);&quot;&gt;  열 발생 시뮬레이션&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;conversion-demo&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  AC vs DC: 전기의 변신&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;데이터센터에서는 벽에서 나오는 &lt;b&gt;교류(AC)&lt;/b&gt;를 컴퓨터가 쓰는 &lt;b&gt;직류(DC)&lt;/b&gt;로 바꿔야 해요!&lt;/p&gt;
&lt;div class=&quot;ac-dc-visual&quot;&gt;
&lt;div class=&quot;current-type&quot;&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;⚡ AC (교류)&lt;/h4&gt;
&lt;div class=&quot;wave-animation&quot;&gt;
&lt;div class=&quot;ac-wave&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;벽의 전기 콘센트&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;conversion-arrow&quot;&gt; &lt;/div&gt;
&lt;div class=&quot;current-type&quot;&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;  DC (직류)&lt;/h4&gt;
&lt;div class=&quot;wave-animation&quot;&gt;
&lt;div class=&quot;dc-line&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;컴퓨터가 쓰는 전기&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;button class=&quot;power-btn&quot;&gt;⚡ 변환 과정 체험하기&lt;/button&gt;
&lt;div id=&quot;conversionResult&quot; class=&quot;calc-result&quot; style=&quot;margin-top: 20px; display: none;&quot;&gt;변환 과정에서 10-15%의 전기가 열로 손실됩니다!&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;superhero-section&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt; &amp;zwj;♂️ 전력반도체 슈퍼히어로 등장!&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;전기 낭비와 싸우는 슈퍼히어로들을 만나보세요!&lt;/p&gt;
&lt;div class=&quot;superhero-grid&quot;&gt;
&lt;div class=&quot;superhero-card&quot;&gt;&lt;span class=&quot;superhero-icon&quot;&gt;⚡&lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;IGBT맨&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;대용량 전력을 다루는 힘센 영웅&lt;/p&gt;
&lt;small&gt;고전압 전투의 전문가&lt;/small&gt;&lt;/div&gt;
&lt;div class=&quot;superhero-card&quot;&gt;&lt;span class=&quot;superhero-icon&quot;&gt; &lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;MOSFET 걸&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;초고속 스위칭의 스피드 히어로&lt;/p&gt;
&lt;small&gt;번개보다 빠른 전환&lt;/small&gt;&lt;/div&gt;
&lt;div class=&quot;superhero-card&quot;&gt;&lt;span class=&quot;superhero-icon&quot;&gt; &lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;SiC 워리어&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;차세대 소재의 궁극 전사&lt;/p&gt;
&lt;small&gt;효율 40% 업그레이드&lt;/small&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&quot;superheroResult&quot; class=&quot;calc-result&quot; style=&quot;margin-top: 25px;&quot;&gt;슈퍼히어로를 클릭해서 특별한 능력을 확인해보세요!&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;efficiency-simulator&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  구형 vs 신형: 효율성 대결!&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;구형 전력반도체와 신형 전력반도체의 차이를 체험해보세요!&lt;/p&gt;
&lt;div class=&quot;efficiency-comparison&quot;&gt;
&lt;div class=&quot;efficiency-bar&quot;&gt;
&lt;div class=&quot;efficiency-visual&quot;&gt;
&lt;div id=&quot;oldEfficiency&quot; class=&quot;efficiency-fill old-tech&quot; style=&quot;height: 0%;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;구형 실리콘&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;효율: 85%&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;발열: 많음&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;efficiency-bar&quot;&gt;
&lt;div class=&quot;efficiency-visual&quot;&gt;
&lt;div id=&quot;newEfficiency&quot; class=&quot;efficiency-fill new-tech&quot; style=&quot;height: 0%;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;신형 SiC&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;효율: 98%&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;발열: 적음&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;button class=&quot;power-btn&quot;&gt;⚡ 효율성 비교 시작&lt;/button&gt;
&lt;div id=&quot;efficiencyResult&quot; class=&quot;calc-result&quot;&gt;버튼을 클릭해서 놀라운 차이를 확인하세요!&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;environmental-impact&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  지구를 구하는 전력반도체&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;효율적인 전력반도체가 환경에 미치는 놀라운 영향!&lt;/p&gt;
&lt;div class=&quot;impact-stats&quot;&gt;
&lt;div class=&quot;impact-stat&quot;&gt;&lt;span class=&quot;stat-icon&quot;&gt; &lt;/span&gt; &lt;span class=&quot;stat-number&quot;&gt;0&lt;/span&gt; &lt;span&gt;톤 CO₂ 절감/년&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;impact-stat&quot;&gt;&lt;span class=&quot;stat-icon&quot;&gt; &lt;/span&gt; &lt;span class=&quot;stat-number&quot;&gt;0&lt;/span&gt; &lt;span&gt;그루 나무 심기 효과&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;impact-stat&quot;&gt;&lt;span class=&quot;stat-icon&quot;&gt; &lt;/span&gt; &lt;span class=&quot;stat-number&quot;&gt;0&lt;/span&gt; &lt;span&gt;억 원 전기요금 절약&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;impact-stat&quot;&gt;&lt;span class=&quot;stat-icon&quot;&gt;⚡&lt;/span&gt; &lt;span class=&quot;stat-number&quot;&gt;0&lt;/span&gt; &lt;span&gt;GWh 전력 절약&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;button class=&quot;power-btn&quot;&gt;  환경 영향 계산하기&lt;/button&gt;&lt;/div&gt;
&lt;div class=&quot;highlight-warning&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;⚠️ 경고: 전력 위기가 온다!&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;AI 기술이 발전할수록 데이터센터의 전력 소비는 &lt;b&gt;기하급수적으로 증가&lt;/b&gt;하고 있어요. 2030년이 되면 전 세계 전력의 &lt;b&gt;10% 이상&lt;/b&gt;을 데이터센터가 사용할 것으로 예상됩니다. 이를 해결하지 못하면 AI 발전이 멈출 수도 있어요! 그래서 효율적인 전력반도체 기술이 &lt;b&gt;인류의 미래&lt;/b&gt;를 결정할 중요한 열쇠가 되었습니다.&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;solution-showcase&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  dicio: 전력 효율의 챔피언&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&lt;b&gt;dicio(디시오)&lt;/b&gt;는 &quot;힘&quot;이라는 뜻의 라틴어로, 데이터센터의 전력 효율을 혁신하는 전력반도체 전문 브랜드예요!&lt;/p&gt;
&lt;br /&gt;
&lt;div style=&quot;display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin: 20px 0;&quot;&gt;
&lt;div style=&quot;background: rgba(255,255,255,0.1); padding: 20px; border-radius: 15px;&quot;&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;⚡ IGBT 시리즈&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;고전압 대용량 전력 제어의 달인&lt;/p&gt;
&lt;/div&gt;
&lt;div style=&quot;background: rgba(255,255,255,0.1); padding: 20px; border-radius: 15px;&quot;&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;  SiC MOSFET&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;차세대 소재로 40% 효율 향상&lt;/p&gt;
&lt;/div&gt;
&lt;div style=&quot;background: rgba(255,255,255,0.1); padding: 20px; border-radius: 15px;&quot;&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;  친환경 솔루션&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;탄소 발자국 최소화&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;quiz-section&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  전력 전문가 되기 퀴즈!&lt;/h3&gt;
&lt;div class=&quot;quiz-progress&quot;&gt;
&lt;div id=&quot;quizProgress&quot; class=&quot;quiz-progress-fill&quot; style=&quot;width: 0%;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&quot;quizContainer&quot;&gt;
&lt;p id=&quot;quizQuestion&quot; data-ke-size=&quot;size16&quot;&gt;데이터센터에서 전기의 몇 %가 열로 낭비될까요?&lt;/p&gt;
&lt;div style=&quot;display: flex; justify-content: center; gap: 15px; margin: 20px 0; flex-wrap: wrap;&quot;&gt;&lt;button class=&quot;power-btn&quot;&gt;50%&lt;/button&gt; &lt;button class=&quot;power-btn&quot;&gt;20%&lt;/button&gt; &lt;button class=&quot;power-btn&quot;&gt;80%&lt;/button&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&quot;quizResult&quot; class=&quot;calc-result&quot;&gt;정답을 선택해보세요!&lt;/div&gt;
&lt;/div&gt;
&lt;section class=&quot;next-episode&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt; &amp;zwj;♂️ 다음 편 예고&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&lt;b&gt;&quot;전력반도체 두 형제: IGBT와 MOSFET&quot;&lt;/b&gt;&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;전기의 슈퍼히어로들이 어떻게 전력을 조절하고, 왜 이들이 AI 시대의 숨은 영웅인지 재미있는 캐릭터와 함께 알아보겠습니다! 이름은 어렵지만 원리는 생각보다 간단해요! ⚡ &amp;zwj;♂️&lt;/p&gt;
&lt;/section&gt;
&lt;/main&gt;&lt;/div&gt;
&lt;script&gt;
        let currentQuiz = 0;
        let quizScore = 0;
        
        const quizData = [
            {
                question: &quot;데이터센터에서 전기의 몇 %가 열로 낭비될까요?&quot;,
                answers: [&quot;50%&quot;, &quot;20%&quot;, &quot;80%&quot;],
                correct: &quot;50%&quot;
            },
            {
                question: &quot;ChatGPT 한 번 사용하는 것은 스마트폰 몇 번 충전과 같을까요?&quot;,
                answers: [&quot;10번&quot;, &quot;3번&quot;, &quot;20번&quot;],
                correct: &quot;10번&quot;
            },
            {
                question: &quot;SiC 전력반도체가 기존 대비 몇 % 효율을 개선할까요?&quot;,
                answers: [&quot;40%&quot;, &quot;10%&quot;, &quot;100%&quot;],
                correct: &quot;40%&quot;
            }
        ];

        // 전력 비용 계산
        function calculatePowerCost() {
            const homeElectric = document.getElementById('homeElectric').value || 80000;
            const internetHours = document.getElementById('internetHours').value || 5;
            const result = document.getElementById('powerResult');
            
            result.innerHTML = '&lt;div class=&quot;loading&quot;&gt;&lt;/div&gt; 계산 중...';
            
            setTimeout(() =&gt; {
                const dailyHomeElectric = homeElectric / 30;
                const datacenterCostPerDay = 8200000000; // 82억원
                const myDataUsage = (internetHours * dailyHomeElectric) / 1000000;
                const comparison = Math.round(datacenterCostPerDay / dailyHomeElectric);
                
                result.innerHTML = `
                      &lt;strong&gt;놀라운 비교 결과:&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
                      우리집 하루 전기요금: &lt;strong&gt;${Math.round(dailyHomeElectric).toLocaleString()}원&lt;/strong&gt;&lt;br&gt;
                      전 세계 데이터센터 하루 전기요금: &lt;strong&gt;82억원&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
                      우리집 &lt;strong&gt;${comparison.toLocaleString()}일치&lt;/strong&gt; 전기를 데이터센터가 하루에 사용해요!&lt;br&gt;
                      여러분이 하루 ${internetHours}시간 인터넷을 쓰면 약 &lt;strong&gt;${Math.round(myDataUsage * 1000)}원&lt;/strong&gt;어치 데이터센터 전기를 사용합니다!
                `;
            }, 2000);
        }

        // 발열 데모
        function startHeatDemo() {
            const heatSources = document.querySelectorAll('.heat-source');
            const result = document.querySelector('.waste-heat-demo .calc-result') || createResultDiv();
            
            // 추가 열원 생성
            heatSources.forEach((source, index) =&gt; {
                setTimeout(() =&gt; {
                    source.style.animation = 'heat-emission 0.5s ease-in-out infinite';
                    source.style.transform = `scale(${1 + index * 0.1})`;
                }, index * 500);
            });
            
            setTimeout(() =&gt; {
                result.innerHTML = `
                      &lt;strong&gt;열 발생 시뮬레이션 결과:&lt;/strong&gt;&lt;br&gt;
                    • 서버 1대당 시간당 200W 열 발생&lt;br&gt;
                    • 데이터센터 전체: 계란 프라이 100만 개를 구울 수 있는 열량!&lt;br&gt;
                    • 이 열을 식히려면 시베리아만큼 추운 에어컨이 필요해요!
                `;
            }, 2000);
        }

        // AC/DC 변환 데모
        function demonstrateConversion() {
            const result = document.getElementById('conversionResult');
            result.style.display = 'block';
            result.innerHTML = '&lt;div class=&quot;loading&quot;&gt;&lt;/div&gt; 변환 과정 분석 중...';
            
            setTimeout(() =&gt; {
                result.innerHTML = `
                      &lt;strong&gt;AC → DC 변환 과정:&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
                    ⚡ AC 220V →   변압기 →   DC 12V&lt;br&gt;
                      변환 손실: &lt;strong&gt;10-15%&lt;/strong&gt;&lt;br&gt;
                      손실된 전기는 모두 &lt;strong&gt;열&lt;/strong&gt;로 변환!&lt;br&gt;&lt;br&gt;
                      좋은 전력반도체를 쓰면 손실을 &lt;strong&gt;5% 이하&lt;/strong&gt;로 줄일 수 있어요!
                `;
            }, 2000);
        }

        // 슈퍼히어로 소개
        function showSuperhero(hero) {
            const result = document.getElementById('superheroResult');
            let info;
            
            switch(hero) {
                case 'igbt':
                    info = `⚡ &lt;strong&gt;IGBT맨의 특별 능력:&lt;/strong&gt;&lt;br&gt;
                    • 1000V 이상 고전압도 거뜬!&lt;br&gt;
                    • 큰 전류를 안전하게 제어&lt;br&gt;
                    • 데이터센터 메인 전원 담당&lt;br&gt;
                    • &quot;전압이 높을수록 나는 강해진다!&quot;`;
                    break;
                case 'mosfet':
                    info = `  &lt;strong&gt;MOSFET 걸의 특별 능력:&lt;/strong&gt;&lt;br&gt;
                    • 나노초 단위 초고속 스위칭!&lt;br&gt;
                    • 전력 손실 최소화의 달인&lt;br&gt;
                    • 스마트폰부터 서버까지 활약&lt;br&gt;
                    • &quot;빠름이 곧 효율이다!&quot;`;
                    break;
                case 'sic':
                    info = `  &lt;strong&gt;SiC 워리어의 특별 능력:&lt;/strong&gt;&lt;br&gt;
                    • 200°C 고온에서도 끄떡없음!&lt;br&gt;
                    • 기존 대비 40% 효율 향상&lt;br&gt;
                    • 지구 환경을 지키는 에코 히어로&lt;br&gt;
                    • &quot;미래의 소재로 현재를 구한다!&quot;`;
                    break;
            }
            
            result.innerHTML = info;
        }

        // 효율성 비교
        function compareEfficiency() {
            const oldBar = document.getElementById('oldEfficiency');
            const newBar = document.getElementById('newEfficiency');
            const result = document.getElementById('efficiencyResult');
            
            result.innerHTML = '&lt;div class=&quot;loading&quot;&gt;&lt;/div&gt; 효율성 분석 중...';
            
            setTimeout(() =&gt; {
                oldBar.style.height = '85%';
                newBar.style.height = '98%';
                
                result.innerHTML = `
                      &lt;strong&gt;효율성 비교 결과:&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
                      구형 실리콘: 85% 효율 (15% 손실)&lt;br&gt;
                      신형 SiC: 98% 효율 (2% 손실)&lt;br&gt;&lt;br&gt;
                      &lt;strong&gt;신형 사용 시 절약:&lt;/strong&gt;&lt;br&gt;
                    • 전기요금 13% 절약&lt;br&gt;
                    • 냉각비용 50% 절약&lt;br&gt;
                    • CO₂ 배출 30% 감소
                `;
            }, 2000);
        }

        // 환경 영향 계산
        function calculateEnvironmentalImpact() {
            animateNumber('co2Reduction', 15000, 2000);
            animateNumber('treesEquivalent', 75000, 2500);
            animateNumber('moneySaved', 120, 1800);
            animateNumber('powerSaved', 2400, 2200);
        }

        // 퀴즈 시스템
        function answerQuiz(answer, isCorrect) {
            const result = document.getElementById('quizResult');
            const progress = document.getElementById('quizProgress');
            
            if (isCorrect) {
                result.innerHTML = '  정답! ' + answer + '가 맞아요!';
                quizScore++;
            } else {
                result.innerHTML = '❌ 틀렸어요! 정답은 ' + quizData[currentQuiz].correct + '입니다.';
            }
            
            currentQuiz++;
            progress.style.width = (currentQuiz / quizData.length) * 100 + '%';
            
            if (currentQuiz &lt; quizData.length) {
                setTimeout(showNextQuiz, 2000);
            } else {
                setTimeout(() =&gt; {
                    result.innerHTML = `  퀴즈 완료! 전력 전문가 인증! 점수: ${quizScore}/${quizData.length}`;
                }, 2000);
            }
        }

        function showNextQuiz() {
            const question = document.getElementById('quizQuestion');
            const container = document.getElementById('quizContainer');
            
            question.textContent = quizData[currentQuiz].question;
            
            const buttonContainer = container.querySelector('div');
            buttonContainer.innerHTML = '';
            
            quizData[currentQuiz].answers.forEach((answer, index) =&gt; {
                const button = document.createElement('button');
                button.className = 'power-btn';
                button.textContent = answer;
                button.onclick = () =&gt; answerQuiz(answer, answer === quizData[currentQuiz].correct);
                buttonContainer.appendChild(button);
            });
            
            document.getElementById('quizResult').textContent = '정답을 선택해보세요!';
        }

        // 숫자 애니메이션
        function animateNumber(elementId, target, duration) {
            const element = document.getElementById(elementId);
            const start = Date.now();
            
            function update() {
                const progress = Math.min((Date.now() - start) / duration, 1);
                const current = Math.floor(target * progress);
                element.textContent = current.toLocaleString();
                
                if (progress &lt; 1) {
                    requestAnimationFrame(update);
                }
            }
            
            update();
        }

        // 결과 div 생성 유틸리티
        function createResultDiv() {
            const div = document.createElement('div');
            div.className = 'calc-result';
            div.style.marginTop = '20px';
            return div;
        }

        // 페이지 로드 시 초기화
        document.addEventListener('DOMContentLoaded', function() {
            // 환경 영향 통계 자동 애니메이션
            setTimeout(() =&gt; {
                const observer = new IntersectionObserver((entries) =&gt; {
                    entries.forEach(entry =&gt; {
                        if (entry.isIntersecting &amp;&amp; entry.target.classList.contains('environmental-impact')) {
                            calculateEnvironmentalImpact();
                        }
                    });
                });
                
                document.querySelectorAll('.environmental-impact').forEach(el =&gt; {
                    observer.observe(el);
                });
            }, 1000);
        });
    &lt;/script&gt;</description>
      <category>AI반도체</category>
      <category>AI #AI반도체 #반도체 #시스템반도체 #HBM3 #초거대AI #LLM #데이터센터 #전력효율 #전력반도체 #디시오</category>
      <author>디시오</author>
      <guid isPermaLink="true">https://dicio.tistory.com/29</guid>
      <comments>https://dicio.tistory.com/29#entry29comment</comments>
      <pubDate>Sun, 26 Oct 2025 21:40:31 +0900</pubDate>
    </item>
    <item>
      <title>  축구장만 한 컴퓨터 창고, 데이터센터 - AI반도체 8편</title>
      <link>https://dicio.tistory.com/28</link>
      <description>&lt;p data-ke-size=&quot;size16&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;div&gt;
&lt;style&gt;
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
            line-height: 1.8;
            color: #333;
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            min-height: 100vh;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            min-height: 100vh;
        }

        .header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 60px 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: ' ';
            position: absolute;
            font-size: 20em;
            top: -50px;
            right: -80px;
            opacity: 0.1;
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .header h1 {
            font-size: 2.8em;
            margin-bottom: 20px;
            z-index: 1;
            position: relative;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .header .subtitle {
            font-size: 1.3em;
            opacity: 0.9;
            z-index: 1;
            position: relative;
        }

        .series-nav {
            background: #f8f9fa;
            padding: 18px 30px;
            border-bottom: 3px solid #dee2e6;
            text-align: center;
        }

        .series-nav span {
            color: #6c757d;
            font-size: 1em;
            font-weight: 500;
        }

        .content {
            padding: 50px 30px;
        }

        .shock-intro {
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
            padding: 40px;
            border-radius: 25px;
            margin-bottom: 50px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .shock-intro::before {
            content: '⚡';
            position: absolute;
            font-size: 10em;
            top: -20px;
            left: -30px;
            opacity: 0.2;
            animation: flash 2s ease-in-out infinite;
        }

        @keyframes flash {
            0%, 100% { opacity: 0.2; }
            50% { opacity: 0.5; }
        }

        .shock-intro h2 {
            font-size: 2.2em;
            margin-bottom: 20px;
            z-index: 1;
            position: relative;
        }

        .datacenter-visual {
            background: #f8f9fa;
            padding: 40px;
            border-radius: 25px;
            margin: 40px 0;
            text-align: center;
        }

        .datacenter-building {
            width: 100%;
            max-width: 600px;
            height: 300px;
            background: linear-gradient(145deg, #2d3436, #636e72);
            border-radius: 15px;
            margin: 20px auto;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .datacenter-building:hover {
            transform: scale(1.05);
        }

        .server-rack {
            position: absolute;
            width: 15px;
            height: 80%;
            background: linear-gradient(180deg, #00b894 0%, #00a085 100%);
            border-radius: 3px;
            animation: server-blink 3s ease-in-out infinite;
        }

        .server-rack:nth-child(1) { left: 10%; animation-delay: 0s; }
        .server-rack:nth-child(2) { left: 20%; animation-delay: 0.5s; }
        .server-rack:nth-child(3) { left: 30%; animation-delay: 1s; }
        .server-rack:nth-child(4) { left: 40%; animation-delay: 1.5s; }
        .server-rack:nth-child(5) { left: 50%; animation-delay: 2s; }
        .server-rack:nth-child(6) { left: 60%; animation-delay: 2.5s; }
        .server-rack:nth-child(7) { left: 70%; animation-delay: 3s; }
        .server-rack:nth-child(8) { left: 80%; animation-delay: 3.5s; }

        @keyframes server-blink {
            0%, 100% { opacity: 0.7; background: linear-gradient(180deg, #00b894 0%, #00a085 100%); }
            50% { opacity: 1; background: linear-gradient(180deg, #00cec9 0%, #55efc4 100%); }
        }

        .cooling-system {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 40px;
            height: 40px;
            background: #74b9ff;
            border-radius: 50%;
            animation: spin 2s linear infinite;
        }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .power-indicator {
            position: absolute;
            bottom: 10px;
            left: 10px;
            width: 30px;
            height: 30px;
            background: #fdcb6e;
            border-radius: 50%;
            animation: pulse 1.5s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.2); opacity: 0.7; }
        }

        .interactive-tour {
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
            padding: 40px;
            border-radius: 25px;
            margin: 40px 0;
        }

        .tour-controls {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 30px 0;
            flex-wrap: wrap;
        }

        .tour-btn {
            padding: 15px 30px;
            border: none;
            border-radius: 30px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1em;
            font-weight: bold;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        }

        .tour-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
        }

        .tour-result {
            background: rgba(255,255,255,0.9);
            padding: 30px;
            border-radius: 20px;
            margin-top: 25px;
            min-height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1em;
            text-align: center;
            border-left: 5px solid #667eea;
        }

        .power-consumption {
            background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
            padding: 40px;
            border-radius: 25px;
            margin: 40px 0;
            color: white;
            text-align: center;
        }

        .consumption-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }

        .stat-card {
            background: rgba(255,255,255,0.1);
            padding: 25px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .stat-number {
            font-size: 3em;
            font-weight: bold;
            display: block;
            margin-bottom: 10px;
            color: #fff;
        }

        .energy-simulator {
            background: #f8f9fa;
            padding: 40px;
            border-radius: 25px;
            margin: 40px 0;
            text-align: center;
        }

        .energy-bars {
            display: flex;
            justify-content: space-around;
            margin: 30px 0;
        }

        .energy-bar {
            flex: 1;
            margin: 0 15px;
            max-width: 150px;
        }

        .energy-visual {
            background: #e9ecef;
            height: 250px;
            border-radius: 15px;
            position: relative;
            overflow: hidden;
            margin-bottom: 15px;
        }

        .energy-fill {
            background: linear-gradient(180deg, #ff6b6b 0%, #feca57 100%);
            position: absolute;
            bottom: 0;
            width: 100%;
            transition: height 2s ease;
            border-radius: 0 0 15px 15px;
        }

        .service-connection {
            background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
            padding: 40px;
            border-radius: 25px;
            margin: 40px 0;
            color: white;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }

        .service-card {
            background: rgba(255,255,255,0.1);
            padding: 25px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            backdrop-filter: blur(10px);
        }

        .service-card:hover {
            transform: translateY(-8px);
            background: rgba(255,255,255,0.2);
        }

        .service-icon {
            font-size: 3.5em;
            margin-bottom: 15px;
            display: block;
        }

        .cooling-section {
            background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
            padding: 40px;
            border-radius: 25px;
            margin: 40px 0;
            color: white;
            text-align: center;
        }

        .temperature-gauge {
            width: 200px;
            height: 200px;
            margin: 30px auto;
            position: relative;
            background: conic-gradient(from 0deg, #00b894 0%, #fdcb6e 50%, #ff6b6b 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .temperature-display {
            width: 160px;
            height: 160px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #333;
            font-size: 2em;
            font-weight: bold;
        }

        .quiz-section {
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
            padding: 40px;
            border-radius: 25px;
            margin: 40px 0;
        }

        .quiz-progress {
            background: rgba(255,255,255,0.3);
            height: 12px;
            border-radius: 6px;
            margin: 25px 0;
            overflow: hidden;
        }

        .quiz-progress-fill {
            background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
            height: 100%;
            transition: width 0.5s ease;
        }

        .future-datacenter {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 40px;
            border-radius: 25px;
            margin: 40px 0;
            text-align: center;
        }

        .next-episode {
            background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
            color: white;
            padding: 40px;
            border-radius: 25px;
            text-align: center;
            margin-top: 50px;
        }

        .loading {
            display: inline-block;
            width: 30px;
            height: 30px;
            border: 4px solid rgba(255,255,255,.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: loading-spin 1s ease-in-out infinite;
        }

        @keyframes loading-spin {
            to { transform: rotate(360deg); }
        }

        .highlight-box {
            background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
            padding: 30px;
            border-radius: 20px;
            margin: 30px 0;
            border-left: 6px solid #e17055;
            color: #2d3436;
        }

        .highlight-box h3 {
            margin-bottom: 15px;
            color: #2d3436;
        }

        @media (max-width: 768px) {
            .container {
                margin: 0;
                border-radius: 0;
            }
            
            .content {
                padding: 30px 20px;
            }
            
            .tour-controls {
                flex-direction: column;
                align-items: center;
            }
            
            .energy-bars {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }
            
            .datacenter-building {
                height: 200px;
            }
        }

        .floating-particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(102, 126, 234, 0.3);
            border-radius: 50%;
            animation: float-up 10s linear infinite;
        }

        @keyframes float-up {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }
    &lt;/style&gt;
&lt;/div&gt;
&lt;div id=&quot;particles&quot; class=&quot;floating-particles&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;container&quot;&gt;&lt;header class=&quot;header&quot;&gt;
&lt;h1&gt;  축구장만 한 컴퓨터 창고, 데이터센터&lt;/h1&gt;
&lt;p class=&quot;subtitle&quot; data-ke-size=&quot;size16&quot;&gt;인터넷 뒤에 숨어있는 거대한 비밀 기지!&lt;/p&gt;
&lt;/header&gt;&lt;nav class=&quot;series-nav&quot;&gt;&lt;span&gt;  AI 반도체 시리즈 #8 | 이전: 스마트폰 속 AI 비서 | 다음: 전기 먹는 하마의 비밀&lt;/span&gt;&lt;/nav&gt;&lt;main class=&quot;content&quot;&gt;
&lt;section class=&quot;shock-intro&quot;&gt;
&lt;h2 data-ke-size=&quot;size26&quot;&gt;  충격! 유튜브 한 번 볼 때마다 원자력 발전소가 돌아간다고?&lt;/h2&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;여러분이 유튜브로 좋아하는 유튜버 영상을 볼 때, 인스타그램에 사진을 올릴 때, 카카오톡으로 친구와 채팅할 때... 그 모든 순간마다 지구 어딘가의 &lt;b&gt;거대한 컴퓨터 빌딩&lt;/b&gt;이 여러분을 위해 열심히 일하고 있어요! 그 이름은 &lt;b&gt;데이터센터&lt;/b&gt;!  ️&lt;/p&gt;
&lt;/section&gt;
&lt;div class=&quot;datacenter-visual&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt; ️ 데이터센터는 얼마나 클까?&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;실제 데이터센터를 클릭해서 내부를 들여다보세요!&lt;/p&gt;
&lt;div class=&quot;datacenter-building&quot;&gt;
&lt;div class=&quot;server-rack&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;server-rack&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;server-rack&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;server-rack&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;server-rack&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;server-rack&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;server-rack&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;server-rack&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;cooling-system&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;power-indicator&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&lt;b&gt;축구장 2개 크기&lt;/b&gt;의 건물 안에 &lt;b&gt;수만 대의 서버&lt;/b&gt;가 24시간 돌아가고 있어요!&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;interactive-tour&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  가상 데이터센터 투어&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;데이터센터의 각 구역을 탐험해보세요!&lt;/p&gt;
&lt;div class=&quot;tour-controls&quot;&gt;&lt;button class=&quot;tour-btn&quot;&gt; ️ 서버룸 구경&lt;/button&gt; &lt;button class=&quot;tour-btn&quot;&gt;❄️ 냉각시설 체험&lt;/button&gt; &lt;button class=&quot;tour-btn&quot;&gt;⚡ 전력공급실 탐방&lt;/button&gt; &lt;button class=&quot;tour-btn&quot;&gt;  보안센터 견학&lt;/button&gt;&lt;/div&gt;
&lt;div id=&quot;tourResult&quot; class=&quot;tour-result&quot;&gt;버튼을 클릭해서 데이터센터를 탐험해보세요!&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;service-connection&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  내가 쓰는 서비스들, 모두 데이터센터에서!&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;여러분이 매일 사용하는 앱과 서비스들이 어떻게 데이터센터와 연결되는지 확인해보세요!&lt;/p&gt;
&lt;div class=&quot;service-grid&quot;&gt;
&lt;div class=&quot;service-card&quot;&gt;&lt;span class=&quot;service-icon&quot;&gt; &lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;유튜브&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;전 세계 동영상 저장 &amp;amp; 스트리밍&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;service-card&quot;&gt;&lt;span class=&quot;service-icon&quot;&gt; &lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;인스타그램&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;수십억 장의 사진 보관&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;service-card&quot;&gt;&lt;span class=&quot;service-icon&quot;&gt; &lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;카카오톡&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;실시간 메시지 전송&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;service-card&quot;&gt;&lt;span class=&quot;service-icon&quot;&gt; &lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;넷플릭스&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;초고화질 영화 스트리밍&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;service-card&quot;&gt;&lt;span class=&quot;service-icon&quot;&gt; &lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;ChatGPT&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;AI 대화 &amp;amp; 질문 답변&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;service-card&quot;&gt;&lt;span class=&quot;service-icon&quot;&gt; &lt;/span&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;온라인 게임&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;실시간 멀티플레이&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;power-consumption&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;⚡ 전기 먹는 하마의 실체!&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;데이터센터가 얼마나 많은 전기를 사용하는지 놀라운 숫자로 확인해보세요!&lt;/p&gt;
&lt;div class=&quot;consumption-stats&quot;&gt;
&lt;div class=&quot;stat-card&quot;&gt;&lt;span class=&quot;stat-number&quot;&gt;0&lt;/span&gt; &lt;span&gt;TWh/년&lt;br /&gt;전 세계 데이터센터 전력&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;stat-card&quot;&gt;&lt;span class=&quot;stat-number&quot;&gt;0&lt;/span&gt; &lt;span&gt;%&lt;br /&gt;한국 전체 전력 대비&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;stat-card&quot;&gt;&lt;span class=&quot;stat-number&quot;&gt;0&lt;/span&gt; &lt;span&gt;만 가구&lt;br /&gt;일반 가정 전력량 환산&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;stat-card&quot;&gt;&lt;span class=&quot;stat-number&quot;&gt;0&lt;/span&gt; &lt;span&gt;억 원/일&lt;br /&gt;전 세계 전기요금&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;energy-simulator&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  실시간 전력 소비 시뮬레이터&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;여러분이 인터넷을 사용할 때마다 전력 소비가 어떻게 변하는지 체험해보세요!&lt;/p&gt;
&lt;div class=&quot;energy-bars&quot;&gt;
&lt;div class=&quot;energy-bar&quot;&gt;
&lt;div class=&quot;energy-visual&quot;&gt;
&lt;div id=&quot;baseLoad&quot; class=&quot;energy-fill&quot; style=&quot;height: 60%;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;기본 부하&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;항상 돌아가는 기본 서버들&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;energy-bar&quot;&gt;
&lt;div class=&quot;energy-visual&quot;&gt;
&lt;div id=&quot;webLoad&quot; class=&quot;energy-fill&quot; style=&quot;height: 0%;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;웹 서비스&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;검색, 쇼핑, SNS&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;energy-bar&quot;&gt;
&lt;div class=&quot;energy-visual&quot;&gt;
&lt;div id=&quot;videoLoad&quot; class=&quot;energy-fill&quot; style=&quot;height: 0%;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;동영상 스트리밍&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;유튜브, 넷플릭스&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;energy-bar&quot;&gt;
&lt;div class=&quot;energy-visual&quot;&gt;
&lt;div id=&quot;aiLoad&quot; class=&quot;energy-fill&quot; style=&quot;height: 0%;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;AI 서비스&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;ChatGPT, 번역, 음성인식&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;tour-controls&quot;&gt;&lt;button class=&quot;tour-btn&quot;&gt;  웹 서핑&lt;/button&gt; &lt;button class=&quot;tour-btn&quot;&gt;  동영상 시청&lt;/button&gt; &lt;button class=&quot;tour-btn&quot;&gt;  AI 사용&lt;/button&gt; &lt;button class=&quot;tour-btn&quot;&gt;  리셋&lt;/button&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;cooling-section&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;❄️ 데이터센터의 냉각 전쟁&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;수만 대의 컴퓨터가 동시에 돌아가면 얼마나 뜨거워질까요?&lt;/p&gt;
&lt;div id=&quot;tempGauge&quot; class=&quot;temperature-gauge&quot;&gt;
&lt;div id=&quot;tempDisplay&quot; class=&quot;temperature-display&quot;&gt;25&amp;deg;C&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;tour-controls&quot;&gt;&lt;button class=&quot;tour-btn&quot;&gt;❌ 냉각 OFF&lt;/button&gt; &lt;button class=&quot;tour-btn&quot;&gt; ️ 약간 냉각&lt;/button&gt; &lt;button class=&quot;tour-btn&quot;&gt;❄️ 강력 냉각&lt;/button&gt;&lt;/div&gt;
&lt;div id=&quot;coolingResult&quot; class=&quot;tour-result&quot;&gt;냉각 버튼을 눌러서 온도 변화를 관찰해보세요!&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;highlight-box&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  세계에서 가장 큰 데이터센터들&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&lt;b&gt;1위:&lt;/b&gt; 중국 랑팡 데이터센터 - 축구장 100개 크기! (585,000㎡)&lt;br /&gt;&lt;b&gt;2위:&lt;/b&gt; 미국 타히티 데이터센터 - 축구장 82개 크기!&lt;br /&gt;&lt;b&gt;3위:&lt;/b&gt; 노르웨이 발린 데이터센터 - 추운 곳에 지어서 냉각비 절약!&lt;br /&gt;&lt;br /&gt;우리나라 최대는 네이버 각 데이터센터로 축구장 4개 크기예요!&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;quiz-section&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  데이터센터 박사 되기 퀴즈!&lt;/h3&gt;
&lt;div class=&quot;quiz-progress&quot;&gt;
&lt;div id=&quot;quizProgress&quot; class=&quot;quiz-progress-fill&quot; style=&quot;width: 0%;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&quot;quizContainer&quot;&gt;
&lt;p id=&quot;quizQuestion&quot; data-ke-size=&quot;size16&quot;&gt;전 세계 데이터센터가 1년간 사용하는 전력량은?&lt;/p&gt;
&lt;div class=&quot;tour-controls&quot;&gt;&lt;button class=&quot;tour-btn&quot;&gt;240-340 TWh&lt;/button&gt; &lt;button class=&quot;tour-btn&quot;&gt;50-100 TWh&lt;/button&gt; &lt;button class=&quot;tour-btn&quot;&gt;500-1000 TWh&lt;/button&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&quot;quizResult&quot; class=&quot;tour-result&quot;&gt;정답을 선택해보세요!&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;future-datacenter&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  2030년 미래 데이터센터는?&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&lt;b&gt;  바다 속 데이터센터:&lt;/b&gt; 마이크로소프트가 실험 중인 해저 데이터센터&lt;br /&gt;&lt;b&gt;  달 기지 데이터센터:&lt;/b&gt; 중력이 약해서 냉각이 쉬워요&lt;br /&gt;&lt;b&gt;  AI 자가 관리:&lt;/b&gt; AI가 스스로 전력과 냉각을 최적화&lt;br /&gt;&lt;b&gt;☀️ 100% 태양광:&lt;/b&gt; 친환경 에너지로만 운영&lt;br /&gt;&lt;b&gt;⚡ 무선 전력 전송:&lt;/b&gt; 전선 없이도 전력 공급&lt;/p&gt;
&lt;/div&gt;
&lt;section class=&quot;next-episode&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;⚡ 다음 편 예고&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&lt;b&gt;&quot;전기 먹는 하마, 데이터센터와 전력&quot;&lt;/b&gt;&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;데이터센터가 이렇게 많은 전기를 사용하는 이유와 그 전기를 효율적으로 관리하는 숨은 영웅 &lt;b&gt;전력반도체&lt;/b&gt;의 비밀을 파헤쳐보겠습니다! 전기요금 폭탄을 막는 기술들을 만나보세요! ⚡ &lt;/p&gt;
&lt;/section&gt;
&lt;/main&gt;&lt;/div&gt;
&lt;script&gt;
        let currentQuiz = 0;
        let quizScore = 0;
        
        const quizData = [
            {
                question: &quot;전 세계 데이터센터가 1년간 사용하는 전력량은?&quot;,
                answers: [&quot;240-340 TWh&quot;, &quot;50-100 TWh&quot;, &quot;500-1000 TWh&quot;],
                correct: &quot;240-340 TWh&quot;
            },
            {
                question: &quot;데이터센터에서 가장 많은 전력을 사용하는 부분은?&quot;,
                answers: [&quot;서버 컴퓨팅&quot;, &quot;냉각 시스템&quot;, &quot;조명&quot;],
                correct: &quot;서버 컴퓨팅&quot;
            },
            {
                question: &quot;세계 최대 데이터센터는 어느 나라에 있을까요?&quot;,
                answers: [&quot;중국&quot;, &quot;미국&quot;, &quot;한국&quot;],
                correct: &quot;중국&quot;
            }
        ];

        // 데이터센터 탐험
        function exploreDatacenter() {
            const building = document.querySelector('.datacenter-building');
            building.style.background = 'linear-gradient(145deg, #667eea, #764ba2)';
            
            setTimeout(() =&gt; {
                alert('  데이터센터 내부에는 수만 대의 서버가 빼곡히 들어있어요!\n• 서버 랙: 수천 개\n• 24시간 가동\n• 냉각 시스템 필수\n• 백업 전원 시스템');
                building.style.background = 'linear-gradient(145deg, #2d3436, #636e72)';
            }, 500);
        }

        // 가상 투어
        function visitSection(section) {
            const result = document.getElementById('tourResult');
            result.innerHTML = '&lt;div class=&quot;loading&quot;&gt;&lt;/div&gt; 해당 구역으로 이동 중...';
            
            setTimeout(() =&gt; {
                let content;
                switch(section) {
                    case 'server':
                        content = ' ️ &lt;strong&gt;서버룸:&lt;/strong&gt;&lt;br&gt;천장까지 닿는 거대한 서버 랙들! 깜빡이는 LED가 마치 크리스마스트리 같아요. 여기서 여러분의 모든 데이터가 처리됩니다. 온도는 항상 18-20도로 유지돼요!';
                        break;
                    case 'cooling':
                        content = '❄️ &lt;strong&gt;냉각시설:&lt;/strong&gt;&lt;br&gt;거대한 에어컨이 24시간 돌아가고 있어요! 시베리아보다 추운 찬바람이 나와서 서버들을 식혀줍니다. 이게 없으면 서버들이 계란 프라이가 될 수도!';
                        break;
                    case 'power':
                        content = '⚡ &lt;strong&gt;전력공급실:&lt;/strong&gt;&lt;br&gt;도시 전체를 밝힐 수 있는 전기가 흘러가는 곳! 거대한 변압기와 UPS(무정전 전원장치)가 있어서 정전이 나도 끄떡없어요. 전력반도체가 이곳의 숨은 영웅!';
                        break;
                    case 'security':
                        content = '  &lt;strong&gt;보안센터:&lt;/strong&gt;&lt;br&gt;007 영화 같은 보안 시설! 지문 인식, 홍채 스캔, 중량 감지까지... 데이터를 지키기 위해 최첨단 보안 장치들이 가득해요. 침입하려면 미션 임파서블급 실력이 필요!';
                        break;
                }
                result.innerHTML = content;
            }, 2000);
        }

        // 서비스 설명
        function explainService(service) {
            let explanation;
            switch(service) {
                case 'youtube':
                    explanation = '  &lt;strong&gt;유튜브:&lt;/strong&gt;&lt;br&gt;매분마다 500시간의 동영상이 업로드! 전 세계에 흩어진 데이터센터에서 가장 가까운 곳의 영상을 스트리밍해줘요.';
                    break;
                case 'instagram':
                    explanation = '  &lt;strong&gt;인스타그램:&lt;/strong&gt;&lt;br&gt;매일 1억 장의 사진이 업로드! 모든 사진을 여러 곳에 백업해서 절대 잃어버리지 않아요.';
                    break;
                case 'kakao':
                    explanation = '  &lt;strong&gt;카카오톡:&lt;/strong&gt;&lt;br&gt;초당 수만 개의 메시지를 실시간 전송! 한국의 판교 데이터센터에서 전 국민의 톡을 처리해요.';
                    break;
                case 'netflix':
                    explanation = '  &lt;strong&gt;넷플릭스:&lt;/strong&gt;&lt;br&gt;4K 초고화질 영화를 끊김 없이 스트리밍! 전 세계 15,000개 서버에서 동시에 서비스해요.';
                    break;
                case 'chatgpt':
                    explanation = '  &lt;strong&gt;ChatGPT:&lt;/strong&gt;&lt;br&gt;수천 개의 AI 전용 GPU가 여러분의 질문에 대답! 한 번 답변할 때마다 엄청난 연산이 필요해요.';
                    break;
                case 'games':
                    explanation = '  &lt;strong&gt;온라인 게임:&lt;/strong&gt;&lt;br&gt;전 세계 게이머들이 동시에 접속해서 플레이! 0.001초의 지연도 허용하지 않는 초고속 서버들이 가동돼요.';
                    break;
            }
            
            setTimeout(() =&gt; alert(explanation), 100);
        }

        // 전력 시뮬레이션
        function simulateLoad(type) {
            const webLoad = document.getElementById('webLoad');
            const videoLoad = document.getElementById('videoLoad');
            const aiLoad = document.getElementById('aiLoad');
            
            if (type === 'reset') {
                webLoad.style.height = '0%';
                videoLoad.style.height = '0%';
                aiLoad.style.height = '0%';
                return;
            }
            
            // 기존 부하 유지하면서 추가
            const currentWeb = parseInt(webLoad.style.height) || 0;
            const currentVideo = parseInt(videoLoad.style.height) || 0;
            const currentAI = parseInt(aiLoad.style.height) || 0;
            
            switch(type) {
                case 'web':
                    webLoad.style.height = Math.min(currentWeb + 30, 80) + '%';
                    break;
                case 'video':
                    videoLoad.style.height = Math.min(currentVideo + 50, 95) + '%';
                    break;
                case 'ai':
                    aiLoad.style.height = Math.min(currentAI + 70, 100) + '%';
                    break;
            }
        }

        // 냉각 시스템
        function adjustCooling(level) {
            const tempDisplay = document.getElementById('tempDisplay');
            const tempGauge = document.getElementById('tempGauge');
            const result = document.getElementById('coolingResult');
            
            let temp, message, color;
            
            switch(level) {
                case 'off':
                    temp = 85;
                    message = '  위험! 서버 과열로 시스템 다운! 계란 프라이가 구워질 온도예요!';
                    color = 'conic-gradient(from 0deg, #ff6b6b 0%, #ff6b6b 100%)';
                    break;
                case 'low':
                    temp = 35;
                    message = ' ️ 조금 덥네요... 서버 성능이 떨어지기 시작해요.';
                    color = 'conic-gradient(from 0deg, #fdcb6e 0%, #ff6b6b 80%, #ff6b6b 100%)';
                    break;
                case 'high':
                    temp = 18;
                    message = '❄️ 완벽! 시베리아처럼 춥지만 서버들이 최고 성능을 발휘해요!';
                    color = 'conic-gradient(from 0deg, #00b894 0%, #74b9ff 50%, #fdcb6e 100%)';
                    break;
            }
            
            tempDisplay.textContent = temp + '°C';
            tempGauge.style.background = color;
            result.innerHTML = message;
        }

        // 퀴즈 시스템
        function answerQuiz(answer, isCorrect) {
            const result = document.getElementById('quizResult');
            const progress = document.getElementById('quizProgress');
            
            if (isCorrect) {
                result.innerHTML = '  정답! ' + answer + '이 맞아요!';
                quizScore++;
            } else {
                result.innerHTML = '❌ 틀렸어요! 정답은 ' + quizData[currentQuiz].correct + '입니다.';
            }
            
            currentQuiz++;
            progress.style.width = (currentQuiz / quizData.length) * 100 + '%';
            
            if (currentQuiz &lt; quizData.length) {
                setTimeout(showNextQuiz, 2000);
            } else {
                setTimeout(() =&gt; {
                    result.innerHTML = `  퀴즈 완료! 데이터센터 박사 인증! 점수: ${quizScore}/${quizData.length}`;
                }, 2000);
            }
        }

        function showNextQuiz() {
            const question = document.getElementById('quizQuestion');
            const container = document.getElementById('quizContainer');
            
            question.textContent = quizData[currentQuiz].question;
            
            const buttonContainer = container.querySelector('.tour-controls');
            buttonContainer.innerHTML = '';
            
            quizData[currentQuiz].answers.forEach((answer, index) =&gt; {
                const button = document.createElement('button');
                button.className = 'tour-btn';
                button.textContent = answer;
                button.onclick = () =&gt; answerQuiz(answer, answer === quizData[currentQuiz].correct);
                buttonContainer.appendChild(button);
            });
            
            document.getElementById('quizResult').textContent = '정답을 선택해보세요!';
        }

        // 통계 애니메이션
        function animateStats() {
            animateNumber('globalPower', 300, 2000);
            animateNumber('koreanPower', 3, 1500);
            animateNumber('houseHolds', 1200, 2500);
            animateNumber('dailyCost', 82, 2000);
        }

        function animateNumber(elementId, target, duration) {
            const element = document.getElementById(elementId);
            const start = Date.now();
            
            function update() {
                const progress = Math.min((Date.now() - start) / duration, 1);
                const current = Math.floor(target * progress);
                element.textContent = current;
                
                if (progress &lt; 1) {
                    requestAnimationFrame(update);
                }
            }
            
            update();
        }

        // 파티클 애니메이션
        function createParticles() {
            const container = document.getElementById('particles');
            
            for (let i = 0; i &lt; 50; i++) {
                const particle = document.createElement('div');
                particle.className = 'particle';
                particle.style.left = Math.random() * 100 + '%';
                particle.style.animationDelay = Math.random() * 10 + 's';
                particle.style.animationDuration = (Math.random() * 10 + 10) + 's';
                container.appendChild(particle);
            }
        }

        // 페이지 로드 시 실행
        document.addEventListener('DOMContentLoaded', function() {
            setTimeout(animateStats, 1000);
            createParticles();
        });
    &lt;/script&gt;</description>
      <category>AI반도체</category>
      <category>AI #AI반도체 #반도체 #시스템반도체 #HBM3 #초거대AI #LLM #데이터센터 #전력효율 #전력반도체 #디시오</category>
      <author>디시오</author>
      <guid isPermaLink="true">https://dicio.tistory.com/28</guid>
      <comments>https://dicio.tistory.com/28#entry28comment</comments>
      <pubDate>Mon, 20 Oct 2025 14:46:49 +0900</pubDate>
    </item>
    <item>
      <title>  내 스마트폰 속 작은 AI 비서 - AI반도체 7편</title>
      <link>https://dicio.tistory.com/27</link>
      <description>&lt;p data-ke-size=&quot;size16&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;div&gt;
&lt;style&gt;
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
            line-height: 1.8;
            color: #333;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
        }

        .container {
            max-width: 950px;
            margin: 0 auto;
            background: white;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            min-height: 100vh;
        }

        .header {
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
            color: white;
            padding: 50px 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: ' ';
            position: absolute;
            font-size: 15em;
            top: -20px;
            right: -50px;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        .header h1 {
            font-size: 2.5em;
            margin-bottom: 15px;
            z-index: 1;
            position: relative;
        }

        .header .subtitle {
            font-size: 1.2em;
            opacity: 0.9;
            z-index: 1;
            position: relative;
        }

        .series-nav {
            background: #f8f9fa;
            padding: 15px 30px;
            border-bottom: 2px solid #dee2e6;
            text-align: center;
        }

        .series-nav span {
            color: #6c757d;
            font-size: 0.95em;
        }

        .content {
            padding: 40px 30px;
        }

        .intro-card {
            background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
            padding: 35px;
            border-radius: 20px;
            margin-bottom: 40px;
            text-align: center;
            color: #2d3436;
            position: relative;
            overflow: hidden;
        }

        .intro-card::before {
            content: ' ';
            position: absolute;
            font-size: 8em;
            top: -20px;
            left: -30px;
            opacity: 0.15;
        }

        .intro-card h2 {
            font-size: 2em;
            margin-bottom: 15px;
            z-index: 1;
            position: relative;
        }

        .phone-anatomy {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 20px;
            margin: 30px 0;
            text-align: center;
        }

        .phone-container {
            position: relative;
            display: inline-block;
            margin: 20px 0;
        }

        .phone-outline {
            width: 200px;
            height: 400px;
            background: linear-gradient(145deg, #2d3436, #636e72);
            border-radius: 25px;
            position: relative;
            margin: 0 auto;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .phone-screen {
            width: 170px;
            height: 330px;
            background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
            border-radius: 20px;
            position: absolute;
            top: 35px;
            left: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2em;
            text-align: center;
        }

        .chip-indicator {
            position: absolute;
            width: 15px;
            height: 15px;
            background: #ff6b6b;
            border-radius: 50%;
            animation: pulse 2s infinite;
            cursor: pointer;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.3); opacity: 0.7; }
        }

        .chip-indicator.cpu { top: 50px; left: 50px; }
        .chip-indicator.gpu { top: 80px; left: 80px; }
        .chip-indicator.npu { top: 110px; left: 60px; }
        .chip-indicator.modem { top: 140px; left: 90px; }

        .chip-tooltip {
            position: absolute;
            background: #2d3436;
            color: white;
            padding: 8px 12px;
            border-radius: 8px;
            font-size: 0.8em;
            white-space: nowrap;
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
            z-index: 100;
        }

        .interactive-demo {
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
            padding: 35px;
            border-radius: 20px;
            margin: 30px 0;
            text-align: center;
        }

        .demo-controls {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 25px 0;
            flex-wrap: wrap;
        }

        .demo-btn {
            padding: 12px 24px;
            border: none;
            border-radius: 25px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9em;
            font-weight: bold;
        }

        .demo-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
        }

        .demo-btn:active {
            transform: translateY(0);
        }

        .demo-result {
            background: rgba(255,255,255,0.8);
            padding: 25px;
            border-radius: 15px;
            margin-top: 20px;
            min-height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1em;
            text-align: center;
        }

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

        .feature-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .feature-card:hover::before {
            left: 100%;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
        }

        .feature-icon {
            font-size: 3em;
            margin-bottom: 15px;
            display: block;
        }

        .comparison-section {
            background: #f8f9fa;
            padding: 35px;
            border-radius: 20px;
            margin: 40px 0;
        }

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

        .comparison-card {
            background: white;
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .comparison-card:hover {
            transform: scale(1.05);
        }

        .performance-bar {
            background: #e9ecef;
            height: 20px;
            border-radius: 10px;
            margin: 10px 0;
            overflow: hidden;
        }

        .performance-fill {
            height: 100%;
            background: linear-gradient(90deg, #ff6b6b 0%, #feca57 100%);
            border-radius: 10px;
            transition: width 2s ease;
        }

        .stats-showcase {
            background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
            padding: 35px;
            border-radius: 20px;
            margin: 30px 0;
            color: white;
            text-align: center;
        }

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

        .stat-item {
            background: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        .stat-number {
            font-size: 2.5em;
            font-weight: bold;
            display: block;
            margin-bottom: 5px;
        }

        .timeline-section {
            margin: 40px 0;
        }

        .timeline {
            position: relative;
            padding: 20px 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
        }

        .timeline-item {
            margin: 40px 0;
            position: relative;
        }

        .timeline-content {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            width: 45%;
            position: relative;
        }

        .timeline-item:nth-child(odd) .timeline-content {
            margin-left: 55%;
        }

        .timeline-item:nth-child(even) .timeline-content {
            margin-right: 55%;
        }

        .timeline-dot {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 20px;
            background: #667eea;
            border-radius: 50%;
            top: 25px;
            border: 4px solid white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        .quiz-section {
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
            padding: 35px;
            border-radius: 20px;
            margin: 40px 0;
        }

        .quiz-progress {
            background: rgba(255,255,255,0.3);
            height: 10px;
            border-radius: 5px;
            margin: 20px 0;
            overflow: hidden;
        }

        .quiz-progress-fill {
            background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
            height: 100%;
            transition: width 0.5s ease;
        }

        .future-preview {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            margin: 40px 0;
        }

        .next-episode {
            background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
            color: white;
            padding: 35px;
            border-radius: 20px;
            text-align: center;
            margin-top: 50px;
        }

        .loading-animation {
            display: inline-block;
            width: 25px;
            height: 25px;
            border: 3px solid rgba(255,255,255,.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .hidden {
            display: none;
        }

        @media (max-width: 768px) {
            .container {
                margin: 0;
                border-radius: 0;
            }
            
            .content {
                padding: 20px 15px;
            }
            
            .demo-controls {
                flex-direction: column;
                align-items: center;
            }
            
            .timeline::before {
                left: 30px;
            }
            
            .timeline-content {
                width: auto !important;
                margin-left: 60px !important;
                margin-right: 0 !important;
            }
            
            .timeline-dot {
                left: 30px;
            }
            
            .phone-outline {
                width: 150px;
                height: 300px;
            }
            
            .phone-screen {
                width: 130px;
                height: 250px;
            }
        }

        .voice-animation {
            display: inline-block;
            width: 20px;
            height: 20px;
            background: #ff6b6b;
            border-radius: 50%;
            animation: voice-pulse 1.5s ease-in-out infinite;
        }

        @keyframes voice-pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.5); opacity: 0.5; }
        }
    &lt;/style&gt;
&lt;/div&gt;
&lt;div class=&quot;container&quot;&gt;&lt;header class=&quot;header&quot;&gt;
&lt;h1&gt;  내 스마트폰 속 작은 AI 비서&lt;/h1&gt;
&lt;p class=&quot;subtitle&quot; data-ke-size=&quot;size16&quot;&gt;여러분 주머니 속 슈퍼컴퓨터의 놀라운 비밀!&lt;/p&gt;
&lt;/header&gt;&lt;nav class=&quot;series-nav&quot;&gt;&lt;span&gt;  AI 반도체 시리즈 #7 | 이전: AI 반도체의 탄생 | 다음: 데이터센터의 비밀&lt;/span&gt;&lt;/nav&gt;&lt;main class=&quot;content&quot;&gt;
&lt;section class=&quot;intro-card&quot;&gt;
&lt;h2 data-ke-size=&quot;size26&quot;&gt;  충격! 내 폰이 슈퍼컴퓨터였다고?&lt;/h2&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;여러분이 매일 들고 다니는 스마트폰! 겉보기엔 그냥 얇은 판처럼 보이지만, 실제로는 &lt;b&gt;수십억 개의 트랜지스터&lt;/b&gt;가 들어있는 초소형 슈퍼컴퓨터예요! 그 안에는 AI 전용 칩 &lt;b&gt;NPU&lt;/b&gt;가 있어서 여러분을 위해 24시간 일하고 있답니다.  &lt;/p&gt;
&lt;/section&gt;
&lt;div class=&quot;phone-anatomy&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  스마트폰 해부학 - 칩들의 숨은 세계&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;스마트폰을 열어보면 이런 칩들이 숨어있어요! (마우스를 올려보세요)&lt;/p&gt;
&lt;div class=&quot;phone-container&quot;&gt;
&lt;div class=&quot;phone-outline&quot;&gt;
&lt;div class=&quot;phone-screen&quot;&gt;
&lt;div&gt;AI가 살고 있는&lt;br /&gt;마법의 세계&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;chip-indicator cpu&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;chip-indicator gpu&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;chip-indicator npu&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;chip-indicator modem&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&quot;tooltip&quot; class=&quot;chip-tooltip&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;interactive-demo&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  AI 음성 비서 체험하기&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;여러분의 목소리를 AI가 어떻게 알아듣는지 체험해보세요!&lt;/p&gt;
&lt;div class=&quot;demo-controls&quot;&gt;&lt;button class=&quot;demo-btn&quot;&gt;  Siri 테스트&lt;/button&gt; &lt;button class=&quot;demo-btn&quot;&gt;  구글 어시스턴트&lt;/button&gt; &lt;button class=&quot;demo-btn&quot;&gt;  빅스비 테스트&lt;/button&gt;&lt;/div&gt;
&lt;div id=&quot;voiceResult&quot; class=&quot;demo-result&quot;&gt;버튼을 클릭해서 AI 비서와 대화해보세요!&lt;/div&gt;
&lt;/div&gt;
&lt;section class=&quot;ai-features-grid&quot;&gt;
&lt;div class=&quot;feature-card&quot;&gt;&lt;span class=&quot;feature-icon&quot;&gt; &lt;/span&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;스마트 카메라&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;0.1초 만에 최적의 사진을 찍어주는 AI 포토그래퍼&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;feature-card&quot;&gt;&lt;span class=&quot;feature-icon&quot;&gt; &lt;/span&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;얼굴 인식&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;수백분의 1초만에 주인을 알아보는 디지털 보안관&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;feature-card&quot;&gt;&lt;span class=&quot;feature-icon&quot;&gt; &lt;/span&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;실시간 번역&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;전 세계 언어를 즉석에서 통역해주는 AI 번역사&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;feature-card&quot;&gt;&lt;span class=&quot;feature-icon&quot;&gt; &lt;/span&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;배터리 최적화&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;여러분의 사용 패턴을 학습해서 배터리를 아껴주는 똑똑한 매니저&lt;/p&gt;
&lt;/div&gt;
&lt;/section&gt;
&lt;div class=&quot;comparison-section&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;⚡ AI ON vs OFF: 극명한 차이!&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;스마트폰에서 AI 기능을 켰을 때와 껐을 때 성능을 비교해보세요!&lt;/p&gt;
&lt;div class=&quot;comparison-cards&quot;&gt;
&lt;div class=&quot;comparison-card&quot;&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;  사진 촬영&lt;/h4&gt;
&lt;div class=&quot;performance-bar&quot;&gt;
&lt;div id=&quot;photoAI&quot; class=&quot;performance-fill&quot; style=&quot;width: 0%;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;p id=&quot;photoText&quot; data-ke-size=&quot;size16&quot;&gt;AI OFF: 그냥 사진&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;comparison-card&quot;&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;  음성 인식&lt;/h4&gt;
&lt;div class=&quot;performance-bar&quot;&gt;
&lt;div id=&quot;voiceAI&quot; class=&quot;performance-fill&quot; style=&quot;width: 0%;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;p id=&quot;voiceText&quot; data-ke-size=&quot;size16&quot;&gt;AI OFF: 인식 불가&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;comparison-card&quot;&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;  배터리 수명&lt;/h4&gt;
&lt;div class=&quot;performance-bar&quot;&gt;
&lt;div id=&quot;batteryAI&quot; class=&quot;performance-fill&quot; style=&quot;width: 0%;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;p id=&quot;batteryText&quot; data-ke-size=&quot;size16&quot;&gt;AI OFF: 빨리 소모&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;demo-controls&quot;&gt;&lt;button class=&quot;demo-btn&quot;&gt;AI 끄기&lt;/button&gt; &lt;button class=&quot;demo-btn&quot;&gt;AI 켜기&lt;/button&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;stats-showcase&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  스마트폰 속 놀라운 숫자들&lt;/h3&gt;
&lt;div class=&quot;stats-grid&quot;&gt;
&lt;div class=&quot;stat-item&quot;&gt;&lt;span class=&quot;stat-number&quot;&gt;0&lt;/span&gt; &lt;span&gt;억 개 트랜지스터&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;stat-item&quot;&gt;&lt;span class=&quot;stat-number&quot;&gt;0&lt;/span&gt; &lt;span&gt;초당 AI 연산&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;stat-item&quot;&gt;&lt;span class=&quot;stat-number&quot;&gt;0&lt;/span&gt; &lt;span&gt;밀리초 얼굴 인식&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;stat-item&quot;&gt;&lt;span class=&quot;stat-number&quot;&gt;0&lt;/span&gt; &lt;span&gt;와트 전력 소비&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;p style=&quot;margin-top: 20px;&quot; data-ke-size=&quot;size16&quot;&gt;아이폰 15 Pro 기준 - 여러분 주머니 속에 이런 괴물이 들어있어요!  &lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;timeline-section&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  스마트폰 AI의 진화 역사&lt;/h3&gt;
&lt;div class=&quot;timeline&quot;&gt;
&lt;div class=&quot;timeline-item&quot;&gt;
&lt;div class=&quot;timeline-dot&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;timeline-content&quot;&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;  2007년 - 아이폰 1세대&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;AI? 그게 뭐죠? 단순한 터치폰으로 시작&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;timeline-item&quot;&gt;
&lt;div class=&quot;timeline-dot&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;timeline-content&quot;&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt; ️ 2011년 - Siri 등장&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&quot;헤이 시리!&quot; 음성 AI 비서의 첫 등장&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;timeline-item&quot;&gt;
&lt;div class=&quot;timeline-dot&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;timeline-content&quot;&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;  2017년 - NPU 내장&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;아이폰 X와 함께 AI 전용 칩이 스마트폰에 들어감&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;timeline-item&quot;&gt;
&lt;div class=&quot;timeline-dot&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;timeline-content&quot;&gt;
&lt;h4 data-ke-size=&quot;size20&quot;&gt;  2024년 - AI 폰 시대&lt;/h4&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;모든 스마트폰이 AI 비서를 내장하는 시대 도래&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;quiz-section&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  스마트폰 AI 지식왕 도전!&lt;/h3&gt;
&lt;div class=&quot;quiz-progress&quot;&gt;
&lt;div id=&quot;quizProgress&quot; class=&quot;quiz-progress-fill&quot; style=&quot;width: 0%;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&quot;quizContainer&quot;&gt;
&lt;p id=&quot;quizQuestion&quot; data-ke-size=&quot;size16&quot;&gt;스마트폰에 들어가는 AI 전용 칩의 이름은?&lt;/p&gt;
&lt;div class=&quot;demo-controls&quot;&gt;&lt;button class=&quot;demo-btn&quot;&gt;NPU&lt;/button&gt; &lt;button class=&quot;demo-btn&quot;&gt;GPU&lt;/button&gt; &lt;button class=&quot;demo-btn&quot;&gt;CPU&lt;/button&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&quot;quizResult&quot; class=&quot;demo-result&quot;&gt;정답을 선택해보세요!&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;interactive-demo&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  내 스마트폰 AI 점수 측정하기&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;여러분의 스마트폰이 얼마나 똑똑한지 측정해보세요!&lt;/p&gt;
&lt;div class=&quot;demo-controls&quot;&gt;&lt;button class=&quot;demo-btn&quot;&gt;  아이폰&lt;/button&gt; &lt;button class=&quot;demo-btn&quot;&gt;  갤럭시&lt;/button&gt; &lt;button class=&quot;demo-btn&quot;&gt;  픽셀&lt;/button&gt; &lt;button class=&quot;demo-btn&quot;&gt;  기타&lt;/button&gt;&lt;/div&gt;
&lt;div id=&quot;phoneScore&quot; class=&quot;demo-result&quot;&gt;여러분의 폰을 선택해주세요!&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;future-preview&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  미래의 스마트폰은?&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&lt;b&gt;2030년 스마트폰 예상 스펙:&lt;/b&gt;&lt;/p&gt;
&lt;br /&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;  &lt;b&gt;뇌파 인식:&lt;/b&gt; 생각만으로 폰을 조작&lt;br /&gt;  &lt;b&gt;홀로그램 디스플레이:&lt;/b&gt; 공중에 떠다니는 화면&lt;br /&gt;  &lt;b&gt;무선 충전:&lt;/b&gt; 공기 중의 전기로 충전&lt;br /&gt;  &lt;b&gt;AI 아바타:&lt;/b&gt; 개인 맞춤형 3D AI 비서&lt;br /&gt;  &lt;b&gt;실시간 뇌 번역:&lt;/b&gt; 생각을 바로 다른 언어로&lt;/p&gt;
&lt;/div&gt;
&lt;section class=&quot;next-episode&quot;&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;  다음 편 예고&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&lt;b&gt;&quot;축구장만 한 컴퓨터 창고, 데이터센터&quot;&lt;/b&gt;&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;여러분이 유튜브를 보고 검색을 할 때마다 돌아가는 거대한 컴퓨터 빌딩! 축구장 크기의 데이터센터에서 일어나는 놀라운 일들을 공개합니다!  ️ &lt;/p&gt;
&lt;/section&gt;
&lt;/main&gt;&lt;/div&gt;
&lt;script&gt;
        let currentQuiz = 0;
        let quizScore = 0;
        
        const quizData = [
            {
                question: &quot;스마트폰에 들어가는 AI 전용 칩의 이름은?&quot;,
                answers: [&quot;NPU&quot;, &quot;GPU&quot;, &quot;CPU&quot;],
                correct: &quot;NPU&quot;
            },
            {
                question: &quot;아이폰 15 Pro에 들어있는 트랜지스터는 몇 개?&quot;,
                answers: [&quot;190억 개&quot;, &quot;19억 개&quot;, &quot;1.9억 개&quot;],
                correct: &quot;190억 개&quot;
            },
            {
                question: &quot;Siri가 처음 등장한 해는?&quot;,
                answers: [&quot;2011년&quot;, &quot;2007년&quot;, &quot;2015년&quot;],
                correct: &quot;2011년&quot;
            }
        ];

        // 음성 AI 테스트
        function testVoiceAI(assistant) {
            const result = document.getElementById('voiceResult');
            result.innerHTML = '&lt;div class=&quot;loading-animation&quot;&gt;&lt;/div&gt; AI가 듣고 있어요...';
            
            setTimeout(() =&gt; {
                let response;
                switch(assistant) {
                    case 'siri':
                        response = '  &lt;strong&gt;Siri:&lt;/strong&gt; &quot;안녕하세요! 무엇을 도와드릴까요?&quot; &lt;div class=&quot;voice-animation&quot;&gt;&lt;/div&gt;';
                        break;
                    case 'google':
                        response = '  &lt;strong&gt;구글:&lt;/strong&gt; &quot;안녕하세요! 구글 어시스턴트입니다!&quot; &lt;div class=&quot;voice-animation&quot;&gt;&lt;/div&gt;';
                        break;
                    case 'bixby':
                        response = '  &lt;strong&gt;빅스비:&lt;/strong&gt; &quot;안녕하세요! 빅스비예요!&quot; &lt;div class=&quot;voice-animation&quot;&gt;&lt;/div&gt;';
                        break;
                }
                result.innerHTML = response;
            }, 2000);
        }

        // AI 기능 설명
        function explainFeature(feature) {
            let explanation;
            switch(feature) {
                case 'camera':
                    explanation = '  &lt;strong&gt;스마트 카메라:&lt;/strong&gt;&lt;br&gt;NPU가 0.1초 만에 장면을 분석해서 최적의 설정을 자동으로 맞춰줘요! 야간 모드에서는 여러 장을 합성해서 낮처럼 밝은 사진을 만들어냅니다.';
                    break;
                case 'face':
                    explanation = '  &lt;strong&gt;얼굴 인식:&lt;/strong&gt;&lt;br&gt;3D 센서와 NPU가 협력해서 3만 개의 점으로 얼굴을 분석해요! 쌍둥이도 구분할 수 있을 정도로 정확합니다.';
                    break;
                case 'translate':
                    explanation = '  &lt;strong&gt;실시간 번역:&lt;/strong&gt;&lt;br&gt;카메라로 글자를 비추기만 하면 즉석에서 번역! 100여 개 언어를 지원하며, 오프라인에서도 작동해요.';
                    break;
                case 'battery':
                    explanation = '  &lt;strong&gt;배터리 최적화:&lt;/strong&gt;&lt;br&gt;AI가 여러분의 사용 패턴을 학습해서 자주 쓰지 않는 앱은 절전 모드로! 덕분에 배터리가 더 오래갑니다.';
                    break;
            }
            
            const result = document.createElement('div');
            result.className = 'demo-result';
            result.innerHTML = explanation;
            
            event.target.appendChild(result);
            setTimeout(() =&gt; result.remove(), 5000);
        }

        // AI ON/OFF 토글
        function toggleAI(isOn) {
            const photoFill = document.getElementById('photoAI');
            const voiceFill = document.getElementById('voiceAI');
            const batteryFill = document.getElementById('batteryAI');
            
            const photoText = document.getElementById('photoText');
            const voiceText = document.getElementById('voiceText');
            const batteryText = document.getElementById('batteryText');
            
            if (isOn) {
                photoFill.style.width = '95%';
                voiceFill.style.width = '98%';
                batteryFill.style.width = '85%';
                
                photoText.textContent = 'AI ON: 프로급 사진!';
                voiceText.textContent = 'AI ON: 완벽 인식!';
                batteryText.textContent = 'AI ON: 최적화됨!';
            } else {
                photoFill.style.width = '30%';
                voiceFill.style.width = '10%';
                batteryFill.style.width = '40%';
                
                photoText.textContent = 'AI OFF: 그냥 사진';
                voiceText.textContent = 'AI OFF: 인식 불가';
                batteryText.textContent = 'AI OFF: 빨리 소모';
            }
        }

        // 퀴즈 답안 체크
        function answerQuiz(answer, isCorrect) {
            const result = document.getElementById('quizResult');
            const progress = document.getElementById('quizProgress');
            
            if (isCorrect) {
                result.innerHTML = '  정답! ' + answer + '가 맞아요!';
                quizScore++;
            } else {
                result.innerHTML = '❌ 틀렸어요! 정답은 ' + quizData[currentQuiz].correct + '입니다.';
            }
            
            currentQuiz++;
            progress.style.width = (currentQuiz / quizData.length) * 100 + '%';
            
            if (currentQuiz &lt; quizData.length) {
                setTimeout(showNextQuiz, 2000);
            } else {
                setTimeout(() =&gt; {
                    result.innerHTML = `  퀴즈 완료! ${quizScore}/${quizData.length}점 획득!`;
                }, 2000);
            }
        }

        function showNextQuiz() {
            const question = document.getElementById('quizQuestion');
            const container = document.getElementById('quizContainer');
            
            question.textContent = quizData[currentQuiz].question;
            
            const buttonContainer = container.querySelector('.demo-controls');
            buttonContainer.innerHTML = '';
            
            quizData[currentQuiz].answers.forEach((answer, index) =&gt; {
                const button = document.createElement('button');
                button.className = 'demo-btn';
                button.textContent = answer;
                button.onclick = () =&gt; answerQuiz(answer, answer === quizData[currentQuiz].correct);
                buttonContainer.appendChild(button);
            });
            
            document.getElementById('quizResult').textContent = '정답을 선택해보세요!';
        }

        // 스마트폰 점수 측정
        function measurePhone(phoneType) {
            const result = document.getElementById('phoneScore');
            result.innerHTML = '&lt;div class=&quot;loading-animation&quot;&gt;&lt;/div&gt; AI 성능 측정 중...';
            
            setTimeout(() =&gt; {
                let score, description;
                switch(phoneType) {
                    case 'iphone':
                        score = 95;
                        description = '  &lt;strong&gt;아이폰:&lt;/strong&gt; 세계 최고 수준의 NPU! Neural Engine 16코어로 초당 35.8조 연산 가능!';
                        break;
                    case 'galaxy':
                        score = 92;
                        description = '  &lt;strong&gt;갤럭시:&lt;/strong&gt; 삼성 엑시노스 NPU! 초당 26조 연산으로 막강한 AI 성능!';
                        break;
                    case 'pixel':
                        score = 90;
                        description = '  &lt;strong&gt;픽셀:&lt;/strong&gt; 구글 텐서 칩! AI 사진과 번역에 특화된 구글의 기술력!';
                        break;
                    case 'other':
                        score = 75;
                        description = '  &lt;strong&gt;기타 스마트폰:&lt;/strong&gt; 준수한 AI 성능! 기본적인 AI 기능은 모두 지원!';
                        break;
                }
                result.innerHTML = `${description}&lt;br&gt;&lt;br&gt;  AI 점수: &lt;strong&gt;${score}/100점&lt;/strong&gt;`;
            }, 3000);
        }

        // 툴팁 표시
        function showTooltip(event, text) {
            const tooltip = document.getElementById('tooltip');
            tooltip.textContent = text;
            tooltip.style.opacity = '1';
            tooltip.style.left = event.pageX + 10 + 'px';
            tooltip.style.top = event.pageY - 30 + 'px';
        }

        function hideTooltip() {
            const tooltip = document.getElementById('tooltip');
            tooltip.style.opacity = '0';
        }

        // 페이지 로드 시 애니메이션
        document.addEventListener('DOMContentLoaded', function() {
            // 통계 숫자 애니메이션
            animateNumber('transistorCount', 190, 2000);
            animateNumber('aiOperations', 35800, 2500);
            animateNumber('faceRecognition', 30, 1500);
            animateNumber('powerConsumption', 8, 1000);
        });

        function animateNumber(elementId, targetNumber, duration) {
            const element = document.getElementById(elementId);
            const startTime = Date.now();
            const startNumber = 0;

            function updateNumber() {
                const currentTime = Date.now();
                const progress = Math.min((currentTime - startTime) / duration, 1);
                const currentNumber = Math.floor(startNumber + (targetNumber - startNumber) * progress);
                
                element.textContent = currentNumber.toLocaleString();
                
                if (progress &lt; 1) {
                    requestAnimationFrame(updateNumber);
                }
            }
            
            setTimeout(() =&gt; updateNumber(), 1000);
        }
    &lt;/script&gt;</description>
      <category>AI반도체</category>
      <category>AI #AI반도체 #반도체 #시스템반도체 #HBM3 #초거대AI #LLM #데이터센터 #전력효율 #전력반도체 #디시오</category>
      <author>디시오</author>
      <guid isPermaLink="true">https://dicio.tistory.com/27</guid>
      <comments>https://dicio.tistory.com/27#entry27comment</comments>
      <pubDate>Fri, 17 Oct 2025 15:26:36 +0900</pubDate>
    </item>
  </channel>
</rss>