/* 실제 스크린샷 스타일링 */

.mobile-screenshot {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  width: 100%;
  height: 100%;
}

.phone-frame {
  width: 375px;
  height: 667px;
  background: #000;
  border-radius: 36px;
  padding: 10px;
  box-shadow: 
    0 0 0 3px #1a1a1a,
    0 0 0 5px #2a2a2a,
    0 30px 60px rgba(0,0,0,0.4);
  position: relative;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
}

/* Google 앱 스타일 */
.google-app-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f9fa;
  border-bottom: 1px solid #e0e0e0;
}

.profile-icon-area {
  position: relative;
}

.profile-icon {
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.google-search-box {
  margin: 20px;
}

.google-search-box input {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #dfe1e5;
  border-radius: 24px;
  font-size: 16px;
  background: #fff;
  box-shadow: 0 2px 5px 1px rgba(64,60,67,.16);
}

/* 계정 관리 화면 */
.account-management-screen {
  height: 100%;
  background: #fff;
}

.tabs-container {
  display: flex;
  background: #fff;
  border-bottom: 1px solid #dadce0;
  padding: 0;
  position: relative;
}

.tab {
  flex: 1;
  padding: 16px 12px;
  text-align: center;
  color: #5f6368;
  font-weight: 500;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
  position: relative;
}

.tab.active-tab {
  color: #1a73e8;
  border-bottom-color: #1a73e8;
}

.security-content {
  padding: 24px;
}

.security-content h3 {
  font-size: 20px;
  color: #202124;
  margin-bottom: 24px;
}

.security-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border: 1px solid #dadce0;
  border-radius: 8px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: background 0.2s;
}

.security-item:hover {
  background: #f8f9fa;
}

.security-item .status {
  color: #5f6368;
  font-size: 14px;
}

/* 2단계 인증 화면 */
.two-factor-screen {
  padding: 24px;
}

.two-factor-screen h2 {
  font-size: 24px;
  color: #202124;
  margin-bottom: 24px;
}

.toggle-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  position: relative;
  margin-bottom: 20px;
}

/* Toggle Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.description {
  color: #5f6368;
  line-height: 1.6;
}

/* Google Photos 스타일 */
.google-photos {
  background: #fff;
}

.photos-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
}

.photos-header h3 {
  font-size: 20px;
  color: #202124;
}

.profile-menu {
  position: relative;
}

.profile-menu .profile-icon {
  width: 36px;
  height: 36px;
  background: #4285f4;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: bold;
}

.dropdown-menu {
  position: absolute;
  top: 45px;
  right: 0;
  background: white;
  border: 1px solid #dadce0;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  min-width: 200px;
}

.menu-item {
  padding: 12px 20px;
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
}

.menu-item:hover {
  background: #f8f9fa;
}

.photos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  padding: 4px;
}

.photo-thumb {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 4px;
}

/* 클릭 인디케이터 애니메이션 */
.click-indicator {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 3px solid #FF4757;
  border-radius: 50%;
  animation: pulse-ring 2s infinite;
  pointer-events: none;
  z-index: 1000;
}

.click-indicator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: #FF4757;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulse-dot {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
  }
}