/* 워프 자동플 CSS 시작 */
.click-me-button{
display:inline-block;
width:90%;
padding:16px 20px;
margin:10px 0;
font-size:18px;
font-weight:700;
color:#ffffff;
text-decoration:none;
background:linear-gradient(180deg,#ff4d4d,#d80000);
border-radius:10px;
box-shadow:0 6px 0 #a30000,0 10px 20px rgba(0,0,0,0.15);
transition:all 0.15s ease;
letter-spacing:0.5px;
}

.click-me-button:hover{
background:linear-gradient(180deg,#ff6666,#e00000);
transform:translateY(-2px);
box-shadow:0 8px 0 #a30000,0 12px 25px rgba(0,0,0,0.2);
}

.click-me-button:active{
transform:translateY(4px);
box-shadow:0 2px 0 #a30000;
}

.click-me-button::after{
content:" →";
font-weight:900;
}

.link1 {
display:flex;
flex-direction:row;
align-items:center;
justify-content:center;
column-gap:0.5em;
width:100%;
font-size:20px;
text-align:center;
padding:20px 10px !important;
margin:30px auto;
border-radius:20px;
border:2px solid #ffffff;
background-color:#1E88E5;
color:#ffffff !important;
text-decoration:none;
font-weight:bold;
transition:transform 0.3s ease, color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
animation:sparkle-blue 1.5s infinite;
}

.link1:hover{
background-color:#ffffff;
color:#1E88E5 !important;
transform:scale(1.1);
}

@keyframes sparkle-blue{
0%,100%{box-shadow:0 0 2px #64B5F6,0 0 4px #64B5F6,0 0 8px #64B5F6;}
50%{box-shadow:0 0 4px #64B5F6,0 0 8px #64B5F6,0 0 16px #64B5F6;}
}

.link2 {
display:flex;
flex-direction:row;
align-items:center;
justify-content:center;
column-gap:0.5em;
width:100%;
font-size:20px;
text-align:center;
padding:20px 10px !important;
margin:30px auto;
border-radius:20px;
border:2px solid #ffffff;
background-color:#7B1FA2;
color:#ffffff !important;
text-decoration:none;
font-weight:bold;
transition:transform 0.3s ease, color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
animation:sparkle-purple 1.5s infinite;
}

.link2:hover{
background-color:#ffffff;
color:#7B1FA2 !important;
transform:scale(1.1);
}

@keyframes sparkle-purple{
0%,100%{box-shadow:0 0 2px #BA68C8,0 0 4px #BA68C8,0 0 8px #BA68C8;}
50%{box-shadow:0 0 4px #BA68C8,0 0 8px #BA68C8,0 0 16px #BA68C8;}
}

.link3 {
display:flex;
flex-direction:row;
align-items:center;
justify-content:center;
column-gap:0.5em;
width:100%;
font-size:20px;
text-align:center;
padding:20px 10px !important;
margin:30px auto;
border-radius:20px;
border:2px solid #ffffff;
background-color:#FB8C00;
color:#ffffff !important;
text-decoration:none;
font-weight:bold;
transition:transform 0.3s ease, color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
animation:sparkle-orange 1.5s infinite;
}

.link3:hover{
background-color:#ffffff;
color:#FB8C00 !important;
transform:scale(1.1);
}

@keyframes sparkle-orange{
0%,100%{box-shadow:0 0 2px #FFB74D,0 0 4px #FFB74D,0 0 8px #FFB74D;}
50%{box-shadow:0 0 4px #FFB74D,0 0 8px #FFB74D,0 0 16px #FFB74D;}
}

@media (max-width:768px){
.link1,.link2,.link3{
font-size:16px;
padding:14px 7px !important;
}
}

.rss-container{
display:flex;
flex-direction:column;
align-items:center;
background:#f6fff8;
border:2px solid #8ed7a8;
border-radius:20px;
padding:12px 25px 15px 25px;
max-width:520px;
margin:auto;
}

.rss-title{
font-weight:700;
font-size:18px;
margin:0 0 10px 0;
color:#1c6b3a;
text-align:center;
}

#rss-list{
list-style:none;
padding:0;
margin:0;
width:100%;
display:flex;
flex-direction:column;
align-items:center;
gap:14px;
}

#rss-list li{
list-style:none;
width:100%;
max-width:380px;
}

#rss-list li a{
display:flex;
align-items:center;
justify-content:center;
height:54px;
padding:0 20px;
background:linear-gradient(180deg,#6edc98,#39b36d);
border-radius:14px;
color:#ffffff;
font-weight:600;
text-decoration:none;
box-shadow:0 6px 0 #2a9153,0 10px 16px rgba(0,0,0,0.12);
transition:.15s;
}

#rss-list li a:hover{
transform:translateY(-2px);
box-shadow:0 8px 0 #2a9153,0 14px 20px rgba(0,0,0,0.16);
}

#rss-list li a:active{
transform:translateY(3px);
box-shadow:0 2px 0 #2a9153,0 6px 10px rgba(0,0,0,0.1);
}

.custom-table,
.custom-faq{
width:100%;
box-sizing:border-box;
}

.custom-table{
overflow-x:auto;
margin:28px 0;
}

.custom-table__table{
width:100%;
border-collapse:collapse;
font-size:15px;
background:#ffffff;
border-radius:10px;
overflow:hidden;
}

.custom-table__caption{
caption-side:top;
font-size:17px;
font-weight:700;
margin-bottom:10px;
text-align:left;
color:#222;
}

.custom-table__head{
background:#f6f8fb;
}

.custom-table__th,
.custom-table__td{
padding:14px 12px;
border-bottom:1px solid #eee;
text-align:center;
color:#333;
}

.custom-table__body .custom-table__th{
text-align:left;
font-weight:600;
background:#fafafa;
}

.custom-table__row:hover{
background:#f9fbff;
}

.custom-badge{
display:inline-block;
padding:4px 10px;
border-radius:999px;
font-size:12px;
font-weight:600;
}

.spec-low{
background:#e8f1fd;
color:#2a6fd6;
}

.spec-mid{
background:#fff4e5;
color:#d68910;
}

.spec-high{
background:#fdecea;
color:#c0392b;
}

.custom-faq{
margin:48px 0;
}

.custom-faq__title{
font-size:22px;
font-weight:700;
margin-bottom:22px;
color:#222;
}

.custom-faq__question{
font-size:16px;
font-weight:600;
margin-top:18px;
margin-bottom:6px;
padding:12px 14px;
background:#f6f8fb;
border-radius:8px;
color:#222;
}

.custom-faq__answer{
font-size:15px;
line-height:1.7;
padding:14px;
margin:0;
background:#ffffff;
border-left:4px solid #2a6fd6;
border-radius:6px;
color:#333;
}

.custom-faq__link{
color:#2a6fd6;
text-decoration:underline;
font-weight:500;
}

.custom-faq__link:hover{
color:#1d4fb3;
}

@media (max-width:768px){
.custom-table__th,
.custom-table__td{
padding:10px 8px;
font-size:13px;
}
.custom-table__caption{
font-size:15px;
}
.custom-faq__title{
font-size:20px;
}
.custom-faq__question{
font-size:14px;
padding:10px;
}
.custom-faq__answer{
font-size:14px;
padding:12px;
}
}

.button-container{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:12px;
max-width:600px;
margin:20px auto;
justify-content:center;
}

.button-container p{
display:flex;
justify-content:center;
margin:0;
}

@media (max-width:600px){
.button-container{
grid-template-columns:1fr;
}
}

.custom-download-btn{
display:flex;
align-items:center;
gap:12px;
padding:14px 28px 14px 16px;
border-radius:14px;
text-decoration:none;
font-weight:600;
font-size:15px;
color:#fff;
box-shadow:0 6px 14px rgba(0,0,0,0.1);
transition:all 0.25s ease;
}

.btn-logo{
width:28px;
height:28px;
object-fit:contain;
}

.custom-download-btn:hover{
transform:translateY(-3px);
box-shadow:0 10px 20px rgba(0,0,0,0.15);
}

.custom-download-btn:active{
transform:scale(0.97);
}

.appstore-button{
background:linear-gradient(135deg,#0a84ff,#0066ff);
}

.playstore-button{
background:linear-gradient(135deg,#34a853,#0f9d58);
}

.window-button{
background:linear-gradient(135deg,#00a4ef,#0078d4);
}

.macbook-button{
background:linear-gradient(135deg,#333,#000);
}

.custom-download-btn span{
white-space:nowrap;
}

.custom-download-btn{
color:#ffffff !important;
}

.custom-download-btn span{
color:#ffffff !important;
text-shadow:0 1px 2px rgba(0,0,0,0.3);
}
/* 워프 자동플 CSS 끝 */

