* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

:root {
   --glow-color: #d42d4a;
   --border-color: #f5ca47;
   --primary-glow: rgba(212, 45, 74, 0.25);
   --secondary-glow: rgba(245, 202, 71, 0.2);
   --red-subtle: #d42d4a;
   --gold-subtle: #f5ca47;
   --background-dark: rgba(15, 15, 20, 0.98);
}

body {
   background: #000000;
   color: #ffffff;
   min-height: 100vh;
   display: flex;
   justify-content: center;
   align-items: center;
   overflow: hidden;
}

main {
   text-align: center;
   position: relative;
   z-index: 2;
   padding-bottom: 20px;
}

.content {
   padding: 20px;
   position: relative;
   z-index: 2;
   display: flex;
   flex-direction: column;
   align-items: center;
   background: transparent;
}

.logo {
   max-width: 500px;
   width: 100%;
   height: auto;
   margin-bottom: 20px;
   animation: subtle-thunder 3.5s infinite;
   z-index: 2;
   position: relative;
}

.social-icons {
   display: flex;
   justify-content: center;
   gap: 3rem;
   margin-top: 1rem;
   position: relative;
   z-index: 2;
}

.social-icons a {
   z-index: 2;
   position: relative;
}

.social-icons img {
   width: 100px;
   height: 100px;
   transition: transform 0.3s ease;
   position: relative;
   z-index: 2;
}

.social-icons img[alt="Instagram"] {
   width: 100px;
   height: 100px;
   margin-top: 15px;
}

.social-icons img[alt="Telegram"] {
   width: 95px;
   height: 95px;
   margin-top: 18px
}

.social-icons img[alt="Email"] {
   width: 110px;
   height: 110px;
   display: inline-block;
   margin-top: 12px;
}

.social-icons img:hover {
   transform: scale(1.1);
}

@keyframes subtle-thunder {
   0% { 
       filter: brightness(1);
       transform: scale(1);
   }
   2% { 
       filter: brightness(1.4);
       transform: scale(1.01);
   }
   4% { 
       filter: brightness(1);
       transform: scale(1);
   }
   15% {
       filter: brightness(1.3);
       transform: scale(1.008);
   }
   17% {
       filter: brightness(1);
       transform: scale(1);
   }
   35% {
       filter: brightness(1.35);
       transform: scale(1.01);
   }
   37% {
       filter: brightness(1);
       transform: scale(1);
   }
   52% {
       filter: brightness(1.25);
       transform: scale(1.005);
   }
   54% {
       filter: brightness(1);
       transform: scale(1);
   }
   100% { 
       filter: brightness(1);
       transform: scale(1);
   }
}

/* Removed custom cursor and drawing canvas */

.social-icons img, 
.logo {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

@media (max-width: 768px) {
   .logo {
       max-width: 350px;
   }
   
   .social-icons {
       gap: 1.5rem;
       margin-top: 1rem;
   }
   
   .social-icons img[alt="Instagram"] {
       width: 75px;
       height: 75px;
       margin-top: 7px;
   }
   
   .social-icons img[alt="Telegram"] {
      width: 75px;
      height: 75px;
      margin-top: 9px;
	  margin-left: 4px;
   }
   
   .social-icons img[alt="Email"] {
       width: 85px;
       height: 85px;
       display: inline-block;
       margin-top: 6px;
   }
}

/* Verify Button - Minimal Icon Only */
.verify-btn {
   font-family: 'Montserrat', sans-serif;
   margin-top: 2rem;
   padding: 10px;
   font-size: 1.2rem;
   color: rgba(255, 255, 255, 0.4);
   background: transparent;
   border: 1px solid rgba(245, 202, 71, 0.2);
   border-radius: 8px;
   cursor: pointer;
   transition: all 0.3s ease;
   box-shadow: none;
   position: relative;
   z-index: 2;
   display: flex;
   align-items: center;
   justify-content: center;
   width: 45px;
   height: 45px;
}

.verify-btn:hover {
   color: rgba(255, 255, 255, 0.7);
   background: rgba(212, 45, 74, 0.1);
   border-color: rgba(245, 202, 71, 0.4);
}

.verify-btn .btn-icon {
   font-size: 1.2rem;
}

.verify-btn .btn-text {
   display: none;
}

/* Modal with 3D Effect */
.modal {
   display: none;
   position: fixed;
   z-index: 10000;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.9);
   backdrop-filter: blur(10px);
   overflow-y: auto;
   padding: 20px 0;
}

/* Card Wrapper - NO 3D */
.modal-content {
   margin: 20px auto;
   width: 90%;
   max-width: 700px;
   position: relative;
   display: flex;
   align-items: center;
   min-height: calc(100vh - 40px);
}

/* Subtle Card - Rot & Gelb */
.verify-card {
   position: relative;
   background: linear-gradient(145deg,
       rgba(20, 20, 25, 0.95),
       rgba(15, 15, 20, 0.95)
   );
   padding: 45px;
   border: 2px solid var(--border-color);
   border-radius: 32px;
   box-shadow:
       0 0 30px rgba(245, 202, 71, 0.15),
       0 0 60px rgba(212, 45, 74, 0.1),
       0 20px 60px rgba(0, 0, 0, 0.7),
       inset 0 1px 0 rgba(255, 255, 255, 0.05);
   cursor: auto;
   overflow: visible;
   backdrop-filter: blur(20px);
   width: 100%;
   margin: auto;
}

/* Subtle Outer Glow */
.verify-card::before {
   content: '';
   position: absolute;
   inset: -3px;
   background: linear-gradient(145deg, var(--border-color), var(--glow-color));
   border-radius: 32px;
   z-index: -1;
   filter: blur(20px);
   opacity: 0.3;
   animation: pulse-glow 4s ease-in-out infinite;
}

/* Very Subtle Accent */
.verify-card::after {
   content: '';
   position: absolute;
   inset: -6px;
   background: radial-gradient(
       circle at 100% 100%,
       rgba(212, 45, 74, 0.15),
       transparent 60%
   );
   border-radius: 36px;
   z-index: -2;
   filter: blur(30px);
   opacity: 0.4;
}

@keyframes pulse-glow {
   0%, 100% {
       opacity: 0.25;
       filter: blur(20px);
   }
   50% {
       opacity: 0.35;
       filter: blur(22px);
   }
}

/* Content Layer above effects */
.verify-card > * {
   position: relative;
   z-index: 2;
}

/* Dynamic Card States - Green for Valid, Red for Invalid */
.verify-card.card-success {
   border-color: #4caf50;
   box-shadow:
       0 0 30px rgba(76, 175, 80, 0.3),
       0 0 60px rgba(76, 175, 80, 0.15),
       0 20px 60px rgba(0, 0, 0, 0.7),
       inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.verify-card.card-success::before {
   background: linear-gradient(145deg, #4caf50, #66bb6a);
   opacity: 0.35;
}

.verify-card.card-success::after {
   background: radial-gradient(
       circle at 100% 100%,
       rgba(76, 175, 80, 0.2),
       transparent 60%
   );
}

.verify-card.card-error {
   border-color: #f44336;
   box-shadow:
       0 0 30px rgba(244, 67, 54, 0.3),
       0 0 60px rgba(244, 67, 54, 0.15),
       0 20px 60px rgba(0, 0, 0, 0.7),
       inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.verify-card.card-error::before {
   background: linear-gradient(145deg, #f44336, #e57373);
   opacity: 0.35;
}

.verify-card.card-error::after {
   background: radial-gradient(
       circle at 100% 100%,
       rgba(244, 67, 54, 0.2),
       transparent 60%
   );
}

.verify-card h2 {
   font-family: 'Montserrat', sans-serif;
   color: #ffffff;
   margin-bottom: 15px;
   font-size: 2.2rem;
   text-align: center;
   font-weight: 900;
   letter-spacing: 2px;
   text-transform: uppercase;
   filter: drop-shadow(0 0 10px rgba(245, 202, 71, 0.3))
           drop-shadow(0 0 20px rgba(212, 45, 74, 0.2));
}

/* Shiny Lock Icon */
.lock-icon {
   display: inline-block;
   font-size: 2.5rem;
   filter: drop-shadow(0 0 8px rgba(245, 202, 71, 0.4))
           drop-shadow(0 0 15px rgba(212, 45, 74, 0.3));
   animation: icon-pulse 2.5s ease-in-out infinite;
}

@keyframes icon-pulse {
   0%, 100% {
       transform: scale(1);
       filter: drop-shadow(0 0 8px rgba(245, 202, 71, 0.4))
               drop-shadow(0 0 15px rgba(212, 45, 74, 0.3));
   }
   50% {
       transform: scale(1.03);
       filter: drop-shadow(0 0 12px rgba(245, 202, 71, 0.5))
               drop-shadow(0 0 20px rgba(212, 45, 74, 0.4));
   }
}

/* Floating Particles Container */
.particle-container {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   pointer-events: none;
   overflow: hidden;
   z-index: 0;
}

/* Individual Particles */
.particle {
   position: absolute;
   font-size: 4rem;
   font-weight: bold;
   opacity: 0.08;
   filter: blur(1.5px) drop-shadow(0 0 10px currentColor);
   animation: particle-float 15s ease-in-out infinite;
}

.particle-1 {
   top: 10%;
   left: 5%;
   color: rgba(245, 202, 71, 0.5);
   animation-delay: 0s;
   animation-duration: 18s;
}

.particle-2 {
   top: 70%;
   left: 10%;
   color: rgba(245, 202, 71, 0.4);
   animation-delay: 2s;
   animation-duration: 16s;
}

.particle-3 {
   top: 15%;
   right: 15%;
   color: rgba(212, 45, 74, 0.4);
   animation-delay: 1s;
   animation-duration: 20s;
}

.particle-4 {
   top: 60%;
   right: 8%;
   color: rgba(212, 45, 74, 0.3);
   animation-delay: 3s;
   animation-duration: 17s;
}

.particle-5 {
   top: 35%;
   left: 15%;
   color: rgba(245, 202, 71, 0.35);
   font-size: 3.5rem;
   animation-delay: 4s;
   animation-duration: 19s;
}

.particle-6 {
   top: 45%;
   right: 20%;
   color: rgba(212, 45, 74, 0.35);
   font-size: 3rem;
   animation-delay: 2.5s;
   animation-duration: 15s;
}

@keyframes particle-float {
   0%, 100% {
       transform: translateY(0px) translateX(0px) rotate(0deg);
       opacity: 0.06;
   }
   25% {
       transform: translateY(-15px) translateX(10px) rotate(5deg);
       opacity: 0.1;
   }
   50% {
       transform: translateY(-5px) translateX(-10px) rotate(-3deg);
       opacity: 0.08;
   }
   75% {
       transform: translateY(-20px) translateX(5px) rotate(3deg);
       opacity: 0.09;
   }
}

.modal-subtitle {
   font-family: 'Roboto', sans-serif;
   text-align: center;
   color: #ddd;
   margin-bottom: 35px;
   font-size: 1.05rem;
   font-weight: 400;
   letter-spacing: 0.5px;
}

.close {
   color: #aaa;
   position: absolute;
   top: 15px;
   right: 20px;
   font-size: 35px;
   font-weight: bold;
   cursor: pointer;
   line-height: 1;
   transition: all 0.3s;
   z-index: 10;
}

.close:hover {
   color: var(--glow-color);
   transform: scale(1.2);
}

/* Input Container */
.input-container {
   display: flex;
   gap: 10px;
   margin-bottom: 30px;
}

#verifyCode {
   font-family: 'Roboto', monospace;
   flex: 1;
   padding: 18px 24px;
   font-size: 1.1rem;
   font-weight: 500;
   background: rgba(0, 0, 0, 0.7);
   border: 2px solid rgba(245, 202, 71, 0.3);
   border-radius: 14px;
   color: #fff;
   outline: none;
   transition: all 0.3s ease;
   text-transform: uppercase;
   letter-spacing: 2px;
   backdrop-filter: blur(15px);
   box-shadow:
       0 4px 25px rgba(0, 0, 0, 0.4),
       0 0 10px rgba(245, 202, 71, 0.1),
       inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

#verifyCode:focus {
   border-color: var(--border-color);
   box-shadow:
       0 0 15px rgba(245, 202, 71, 0.3),
       0 0 30px rgba(212, 45, 74, 0.15),
       0 4px 30px rgba(0, 0, 0, 0.5),
       inset 0 2px 0 rgba(255, 255, 255, 0.1);
   background: rgba(0, 0, 0, 0.85);
}

.check-btn {
   font-family: 'Montserrat', sans-serif;
   padding: 18px 45px;
   font-size: 1.1rem;
   font-weight: 800;
   background: rgba(245, 202, 71, 0.1);
   color: #ffffff;
   border: 2px solid var(--border-color);
   border-radius: 14px;
   cursor: pointer;
   transition: all 0.3s ease;
   min-width: 150px;
   box-shadow:
       0 0 15px rgba(245, 202, 71, 0.2),
       0 6px 25px rgba(0, 0, 0, 0.4),
       inset 0 2px 0 rgba(255, 255, 255, 0.1);
   position: relative;
   overflow: hidden;
   text-transform: uppercase;
   letter-spacing: 2px;
}

.check-btn::before {
   content: '';
   position: absolute;
   top: 0;
   left: -100%;
   width: 100%;
   height: 100%;
   background: linear-gradient(90deg,
       transparent,
       rgba(245, 202, 71, 0.3),
       transparent
   );
   transition: left 0.6s;
}

.check-btn:hover:not(:disabled)::before {
   left: 100%;
}

.check-btn:hover:not(:disabled) {
   background: rgba(245, 202, 71, 0.15);
   transform: translateY(-2px);
   box-shadow:
       0 0 25px rgba(245, 202, 71, 0.3),
       0 0 50px rgba(212, 45, 74, 0.2),
       0 8px 35px rgba(0, 0, 0, 0.5),
       inset 0 2px 0 rgba(255, 255, 255, 0.2);
   text-shadow: 0 0 8px rgba(245, 202, 71, 0.4);
}

.check-btn:disabled {
   opacity: 0.6;
   cursor: not-allowed;
}

/* Result Display */
.result {
   padding: 25px;
   border-radius: 15px;
   margin-bottom: 25px;
   animation: slideIn 0.3s ease;
}

.result.hidden {
   display: none;
}

.result.success {
   background: rgba(76, 175, 80, 0.1);
   border: 2px solid #4caf50;
}

.result.warning {
   background: rgba(255, 152, 0, 0.1);
   border: 2px solid #ff9800;
}

.result.error {
   background: rgba(244, 67, 54, 0.1);
   border: 2px solid #f44336;
}

.result-title {
   font-family: 'Montserrat', sans-serif;
   font-size: 1.5rem;
   margin-bottom: 10px;
   font-weight: 700;
}

.result.success .result-title {
   color: #4caf50;
}

.result.warning .result-title {
   color: #ff9800;
}

.result.error .result-title {
   color: #f44336;
}

.result-message {
   font-family: 'Roboto', sans-serif;
   color: #ddd;
   margin-bottom: 15px;
   font-size: 1.1rem;
}

.result-details {
   margin-top: 15px;
   padding-top: 15px;
   border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Two-column grid for product details */
.details-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 12px 20px;
   margin-bottom: 15px;
}

.details-grid.verification-info {
   margin-top: 15px;
   padding-top: 15px;
   border-top: 1px solid rgba(255, 255, 255, 0.1);
   margin-bottom: 0;
}

.detail-item {
   font-family: 'Roboto', sans-serif;
   display: flex;
   flex-direction: column;
   gap: 4px;
}

.detail-label {
   font-size: 0.8rem;
   color: #888;
   text-transform: uppercase;
   letter-spacing: 0.5px;
}

.detail-value {
   font-size: 1rem;
   color: #fff;
   font-weight: 500;
}

.badge-first {
   font-family: 'Roboto', sans-serif;
   margin-top: 15px;
   padding: 12px;
   background: rgba(76, 175, 80, 0.2);
   border-radius: 10px;
   text-align: center;
   font-weight: 600;
   color: #4caf50;
}

.warning-text, .error-text {
   font-family: 'Roboto', sans-serif;
   margin-top: 15px;
   padding: 12px;
   border-radius: 10px;
   text-align: center;
   font-weight: 600;
}

.warning-text {
   background: rgba(255, 152, 0, 0.2);
   color: #ff9800;
}

.error-text {
   background: rgba(244, 67, 54, 0.2);
   color: #f44336;
}

/* Info Box */
.info-box {
   background: rgba(255, 255, 255, 0.05);
   padding: 20px;
   border-radius: 10px;
}

.info-box p {
   font-family: 'Roboto', sans-serif;
   margin-bottom: 10px;
   color: #ddd;
}

.info-box ul {
   list-style: none;
   padding-left: 0;
}

.info-box li {
   font-family: 'Roboto', sans-serif;
   padding: 5px 0;
   color: #aaa;
   font-size: 0.9rem;
   position: relative;
   padding-left: 20px;
}

.info-box li:before {
   content: "→";
   position: absolute;
   left: 0;
   color: var(--glow-color);
}

@keyframes slideIn {
   from {
       opacity: 0;
       transform: translateY(-10px);
   }
   to {
       opacity: 1;
       transform: translateY(0);
   }
}

/* Product Tags */
.product-tags {
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
   margin-top: 10px;
   padding-top: 10px;
}

.product-tag {
   font-family: 'Roboto', sans-serif;
   display: inline-block;
   padding: 6px 12px;
   background: rgba(245, 202, 71, 0.15);
   border: 1px solid rgba(245, 202, 71, 0.4);
   border-radius: 20px;
   font-size: 0.85rem;
   color: #f5ca47;
   font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
   .modal {
       padding: 10px 0;
   }

   .modal-content {
       margin: 10px auto;
       width: 95%;
       min-height: calc(100vh - 20px);
   }

   .verify-card {
       padding: 25px;
       /* Disable 3D effect on mobile for better usability */
       transform: none !important;
   }

   .verify-card h2 {
       font-size: 1.5rem;
   }

   .input-container {
       flex-direction: column;
   }

   .check-btn {
       width: 100%;
   }

   .verify-btn {
       font-size: 1rem;
       padding: 12px 30px;
   }

   /* Single column grid on mobile */
   .details-grid {
       grid-template-columns: 1fr;
       gap: 10px;
   }

   /* Reduce holographic effects on mobile to save performance */
   .verify-card::after {
       animation: none;
       opacity: 0.3;
   }
}