/* MODERN GREEN THEME */
:root {
    --primary: #27ae60;
    --primary-light: #2ecc71;
    --primary-dark: #219653;
    --background: #f8f9fa;
    --surface: #ffffff;
    --text: #2d3436;
    --text-secondary: #636e72;
    --border: #dfe6e9;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 15px rgba(0, 0, 0, 0.1);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background);
    color: var(--text);
    min-height: 100vh;
    padding: 2rem;
    line-height: 1.6;
    background-image: 
      radial-gradient(circle at 10% 20%, rgba(46, 204, 113, 0.03) 0%, transparent 20%),
      radial-gradient(circle at 90% 80%, rgba(46, 204, 113, 0.03) 0%, transparent 20%);
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    position: relative;
  }
  
  header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
  }
  
  h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
  }
  
  h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50%;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
  }
  
  .header-controls {
    display: flex;
    gap: 1rem;
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    background-color: var(--surface);
    color: var(--primary-dark);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
    border-radius: 8px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
  }
  
  .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 204, 113, 0.1), transparent);
    transition: 0.5s;
  }
  
  .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: var(--primary);
  }
  
  .btn:hover::before {
    left: 100%;
  }
  
  .crypto-btn {
    background: var(--primary);
    color: white;
  }
  
  .crypto-btn:hover {
    background: var(--primary-dark);
    color: white;
  }
  
  .social-btn {
    padding: 0.8rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .social-btn svg {
    fill: var(--primary);
    transition: all 0.3s;
  }
  
  .social-btn:hover svg {
    transform: scale(1.1);
  }
  
  .note-form {
    background: var(--surface);
    padding: 2rem;
    margin-bottom: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
  }
  
  .note-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--primary-light));
  }
  
  textarea {
    width: 100%;
    min-height: 160px;
    padding: 1.2rem;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 1rem;
    resize: none;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    border-radius: 8px;
    transition: all 0.3s;
  }
  
  textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.2);
  }
  
  button {
    width: 100%;
    padding: 1rem;
    font-size: 1.05rem;
    font-weight: 500;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 6px rgba(39, 174, 96, 0.2);
  }
  
  button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(39, 174, 96, 0.3);
  }
  
  button::after {
    content: '→';
    transition: all 0.3s;
    opacity: 0;
    transform: translateX(-10px);
  }
  
  button:hover::after {
    opacity: 1;
    transform: translateX(0);
  }
  
  .notes-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .note {
    background: var(--surface);
    padding: 1.8rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
  }
  
  .note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--primary);
    transition: all 0.3s;
  }
  
  .note:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
  }
  
  .note:hover::before {
    width: 6px;
  }
  
  .note p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: var(--text);
    position: relative;
  }
  
  .note small {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: block;
    border-top: 1px dashed var(--border);
    padding-top: 0.8rem;
  }
  
  @media (max-width: 768px) {
    body {
      padding: 1.5rem;
    }
    
    h1 {
      font-size: 2rem;
    }
    
    .notes-container {
      grid-template-columns: 1fr;
    }
    
    .header-controls {
      gap: 0.8rem;
    }
  }

  .imggg {
    width: 25px;
    height: 25px;
    filter: invert(1);
  }

/* ORGANIC WAVES BACKGROUND */

:root {
    --primary: #2ecc71;
    --primary-light: #4cda81;
    --primary-dark: #27ae60;
    --bg-dark: #1a1e23;
    --bg-medium: #23272e;
    --bg-light: #2d3239;
    --text: #e0e3e7;
    --text-secondary: #a1a7ad;
    --border: #3a4048;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    --shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.35);
  }
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    min-height: 100vh;
    padding: 2rem;
    line-height: 1.6;
    background: 
      linear-gradient(135deg, #1a1e23 0%,  #23272e 100%),
      url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path fill="%232ecc71" fill-opacity="0.03" d="M0 0h100v100H0z"/></svg>');
    background-attachment: fixed;
    position: relative;
  }
  
  body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 20% 30%, rgba(46, 204, 113, 0.05) 0%, transparent 25%),
      radial-gradient(circle at 80% 70%, rgba(46, 204, 113, 0.05) 0%, transparent 25%);
    pointer-events: none;
  }
  
  body::after {
    bottom: -50%;
    right: -50%;
    animation-delay: -12.5s;
  }
  
  @keyframes float {
    0% {
      transform: translate(0, 0) rotate(0deg);
    }
    25% {
      transform: translate(-5%, -5%) rotate(5deg);
    }
    50% {
      transform: translate(-10%, 0) rotate(0deg);
    }
    75% {
      transform: translate(-5%, 5%) rotate(-5deg);
    }
    100% {
      transform: translate(0, 0) rotate(0deg);
    }
  }


  body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M20,20 Q30,10 40,20 T60,20 T80,20" fill="none" stroke="%232ecc71" stroke-width="0.3" stroke-opacity="0.05"/><path d="M10,40 Q20,30 30,40 T50,40 T70,40" fill="none" stroke="%2327ae60" stroke-width="0.3" stroke-opacity="0.05"/><path d="M30,70 Q40,60 50,70 T70,70 T90,70" fill="none" stroke="%2327ae60" stroke-width="0.3" stroke-opacity="0.05"/></svg>');
    background-size: 200px 200px;
    z-index: -1;
    pointer-events: none;
    opacity: 0.6;
  }

  .ca {
    width: 400px;
    border-radius: 15px;
    border: 1px solid var(--primary);
    display: flex;
    align-items: center;

    padding: 15px;
  }

  .header-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 20% 30%, rgba(46, 204, 113, 0.05) 0%, transparent 25%),
      radial-gradient(circle at 80% 70%, rgba(46, 204, 113, 0.05) 0%, transparent 25%);
    pointer-events: none;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: rgba(35, 39, 46, 0.8);
    backdrop-filter: blur(6px);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    margin-bottom: 40px;
  }
  
  /* Остальные элементы (кнопки, формы, заметки) */
  .note-form, .note {
    background-color: var(--bg-light);
    border-color: var(--border);
  }
  
  .btn {
    background-color: var(--bg-medium);
    color: var(--text);
    border: 1px solid var(--border);
  }
  
  .crypto-btn {
    background-color: var(--primary);
    color: #fff;
  }
  
  button {
    background-color: var(--primary);
    color: #fff;
  }
  
  button:hover {
    background-color: var(--primary-light);
  }
  
  /* Текстовые элементы */
  h1 {
    color: var(--text);
  }
  
  .note p {
    color: var(--text);
  }
  
  .note small {
    color: var(--text-secondary);
    border-top-color: var(--border);
  }