/* Visual Elements Styles - Mobile First Approach */

/* Base Styles (Mobile First - 320px and up) */
:root {
  --card-padding-sm: 8px;
  --card-padding-md: 12px;
  --card-padding-lg: 15px;
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.125rem;
  --spacing-xs: 5px;
  --spacing-sm: 8px;
  --spacing-md: 12px;
  --spacing-lg: 16px;
}

/* Growing Graph Animation */
.growing-line {
  height: 2px;
  background: linear-gradient(90deg, #22c55e, #4ade80);
  width: 0;
  position: absolute;
  bottom: 30%;
  left: 0;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
  animation: growLine 3s ease-in-out infinite;
}

@keyframes growLine {
  0% {
    width: 10%;
    opacity: 0.7;
  }
  70% {
    width: 90%;
    opacity: 1;
  }
  100% {
    width: 95%;
    opacity: 0.9;
  }
}

/* Follower Graph Container Styling */
.follower-graph-container {
  display: none;
}

.follower-graph {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Telegram Conversation Styling - Mobile First */
/* Original Telegram Conversation Styling - Commented for future use
.telegram-conversation {
  width: 100%;
  max-width: 280px;
  background-color: #17212b;
  border-radius: var(--border-radius-md);
  padding: var(--card-padding-md);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  margin: 0 auto var(--spacing-lg);
  display: block;
  position: relative;
  z-index: 3;
*/

/* Telegram Conversation Hidden as requested */
.telegram-conversation {
  display: none; /* Hide the telegram conversation */
  /* Original properties preserved below for reference */
  width: 100%;
  max-width: 280px;
  background-color: #17212b;
  border-radius: var(--border-radius-md);
  padding: var(--card-padding-md);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  margin: 0 auto var(--spacing-lg);
  position: relative;
  z-index: 3;
  transform: translateY(20px);
}

.telegram-header {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-sm);
}

.telegram-header img {
  width: 20px;
  height: 20px;
  margin-right: var(--spacing-xs);
}

.telegram-header span {
  color: white;
  font-weight: 600;
  font-size: var(--font-size-sm);
}

.telegram-message {
  background-color: #2b5278;
  border-radius: var(--border-radius-sm);
  padding: var(--card-padding-sm);
  color: white;
  font-size: var(--font-size-sm);
  margin-bottom: var(--spacing-sm);
  max-width: 100%;
  align-self: flex-start;
  word-break: break-word;
  white-space: normal;
  overflow: visible;
}

/* Fratello Logo and Brotherhood Icon */
.fratello-logo {
  position: relative;
  margin: var(--spacing-lg) auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.7);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  width: fit-content;
}

.logo-text {
  color: white;
  font-weight: 700;
  font-size: var(--font-size-md);
  margin-right: var(--spacing-sm);
}

.brotherhood-icon {
  display: none;
  width: 24px;
  height: 24px;
  background-color: var(--color-primary);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brotherhood-icon:before, .brotherhood-icon:after {
  content: '';
  position: absolute;
  background-color: white;
  border-radius: 2px;
}

.brotherhood-icon:before {
  width: 12px;
  height: 2px;
  transform: rotate(45deg);
}

.brotherhood-icon:after {
  width: 12px;
  height: 2px;
  transform: rotate(-45deg);
}

/* Twitter Glow Effect */
.twitter-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(29, 161, 242, 0.2) 0%, rgba(29, 161, 242, 0) 70%);
  top: 0;
  left: 0;
  z-index: 1;
  animation: pulse 4s ease-in-out infinite;
}

/* Verify Team Section Styles */
.verify-team-section {
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  margin: var(--spacing-lg) 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.verify-team-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle at center, rgba(0, 123, 255, 0.1) 0%, rgba(0, 123, 255, 0) 70%);
  z-index: 0;
  border-radius: 50%;
}

.verify-team-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
  max-width: 500px;
  margin: 0 auto;
}

.verify-input-container {
  display: flex;
  width: 100%;
  gap: var(--spacing-sm);
}

.verify-input {
  flex: 1;
  padding: var(--spacing-md);
  border: 2px solid var(--color-border);
  border-radius: var(--border-radius-md);
  font-size: var(--font-size-md);
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

.verify-button {
  padding: var(--spacing-md) var(--spacing-lg);
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.verify-button:hover {
  background-color: var(--color-primary-dark);
}

.verify-result {
  margin-top: var(--spacing-md);
  padding: var(--spacing-md);
  border-radius: var(--border-radius-md);
  width: 100%;
  text-align: center;
  font-weight: 600;
  display: none;
}

.verified {
  background-color: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border: 1px solid #22c55e;
}

.not-verified {
  background-color: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 1px solid #ef4444;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Tablet (576px and up) */
@media (min-width: 576px) {
  .telegram-conversation {
    max-width: 320px;
    padding: var(--card-padding-md);
  }
  
  .telegram-header img {
    width: 22px;
    height: 22px;
  }
  
  .telegram-header span {
    font-size: var(--font-size-md);
  }
  
  .telegram-message {
    font-size: var(--font-size-sm);
    padding: var(--card-padding-md);
  }
  
  .follower-graph-container {
    height: 70px;
  }
  
  .fratello-logo {
    padding: var(--spacing-md) var(--spacing-lg);
  }
  
  .logo-text {
    font-size: var(--font-size-lg);
  }
  
  .brotherhood-icon {
    width: 28px;
    height: 28px;
  }
  
  .brotherhood-icon:before, .brotherhood-icon:after {
    width: 14px;
    height: 2px;
  }
}

/* Medium devices (768px and up) */
@media (min-width: 768px) {
  .telegram-conversation {
    position: absolute;
    top: 50px;
    right: -80px;
    width: 280px;
    transform: rotate(5deg);
    animation: float 4s ease-in-out infinite;
    margin: 0;
  }
  
  .telegram-header img {
    width: 24px;
    height: 24px;
    margin-right: var(--spacing-sm);
  }
  
  .telegram-message {
    max-width: 90%;
  }
  
  .follower-graph-container {
    height: 80px;
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
  }
  
  .fratello-logo {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }
}

/* Large devices (992px and up) */
@media (min-width: 992px) {
  .telegram-conversation {
    width: 450px;
    top: 20px;
    right: -80px;
  }
  
  .telegram-message {
    font-size: 0.9rem;
    max-width: 420px;
    word-break: break-word;
    white-space: normal;
    overflow: visible;
    padding: var(--card-padding-md);
  }
  
  .fratello-logo {
    padding: 10px 20px;
  }
  
  .logo-text {
    font-size: 1.1rem;
  }
  
  .brotherhood-icon {
    width: 30px;
    height: 30px;
  }
  
  .brotherhood-icon:before, .brotherhood-icon:after {
    width: 14px;
    height: 3px;
  }
}